Hi

I wonder if I can use a printa statement with a format string to print a 
quantize aggregation (that is, a histogram), and if so, what flag should I be 
using in the format string for the histogram.

In particular, I'm interested in using a single printa statement to print 
multiple aggregations that have the same keys, one of which is a quantize 
aggregation.  E.g:

  @calls[this->func] = count();
  @avTime[this->func] = avg(this->time);
  @timeDist[this->func] = quantize(this->time);
  ...

END
{
  printa("%s...@d\t???\n", @calls, @avTime, @timeDist);
}

I'm not sure what to put instead of the "???" above for the histogram.

Thanks,
Yossi
-- 
This message posted from opensolaris.org
_______________________________________________
dtrace-discuss mailing list
dtrace-discuss@opensolaris.org

Reply via email to