Print this page
4471 DTrace count() with histogram
4472 DTrace full width distribution histograms
4473 DTrace frequency trails

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/sys/dtrace.h
          +++ new/usr/src/uts/common/sys/dtrace.h
↓ open down ↓ 1015 lines elided ↑ open up ↑
1016 1016  #define DTRACEOPT_DESTRUCTIVE   18      /* destructive actions allowed */
1017 1017  #define DTRACEOPT_STACKINDENT   19      /* output indent for stack traces */
1018 1018  #define DTRACEOPT_RAWBYTES      20      /* always print bytes in raw form */
1019 1019  #define DTRACEOPT_JSTACKFRAMES  21      /* number of jstack() frames */
1020 1020  #define DTRACEOPT_JSTACKSTRSIZE 22      /* size of jstack() string table */
1021 1021  #define DTRACEOPT_AGGSORTKEY    23      /* sort aggregations by key */
1022 1022  #define DTRACEOPT_AGGSORTREV    24      /* reverse-sort aggregations */
1023 1023  #define DTRACEOPT_AGGSORTPOS    25      /* agg. position to sort on */
1024 1024  #define DTRACEOPT_AGGSORTKEYPOS 26      /* agg. key position to sort on */
1025 1025  #define DTRACEOPT_TEMPORAL      27      /* temporally ordered output */
1026      -#define DTRACEOPT_MAX           28      /* number of options */
     1026 +#define DTRACEOPT_AGGHIST       28      /* histogram aggregation output */
     1027 +#define DTRACEOPT_AGGPACK       29      /* packed aggregation output */
     1028 +#define DTRACEOPT_AGGZOOM       30      /* zoomed aggregation scaling */
     1029 +#define DTRACEOPT_ZONE          31      /* zone in which to enable probes */
     1030 +#define DTRACEOPT_MAX           32      /* number of options */
1027 1031  
1028 1032  #define DTRACEOPT_UNSET         (dtrace_optval_t)-2     /* unset option */
1029 1033  
1030 1034  #define DTRACEOPT_BUFPOLICY_RING        0       /* ring buffer */
1031 1035  #define DTRACEOPT_BUFPOLICY_FILL        1       /* fill buffer, then stop */
1032 1036  #define DTRACEOPT_BUFPOLICY_SWITCH      2       /* switch buffers */
1033 1037  
1034 1038  #define DTRACEOPT_BUFRESIZE_AUTO        0       /* automatic resizing */
1035 1039  #define DTRACEOPT_BUFRESIZE_MANUAL      1       /* manual resizing */
1036 1040  
↓ open down ↓ 1305 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX