c29d517558
unmodified. For others we'll need to add the missing probes and adjust. This is not attached to the build.
11 lines
280 B
D
Executable File
11 lines
280 B
D
Executable File
#!/usr/sbin/dtrace -s
|
|
/*
|
|
* writedist.d - write distribution by process name. DTrace OneLiner.
|
|
*
|
|
* This is a DTrace OneLiner from the DTraceToolkit.
|
|
*
|
|
* $Id: writedist.d,v 1.1.1.1 2015/09/30 22:01:09 christos Exp $
|
|
*/
|
|
|
|
sysinfo:::writech { @dist[execname] = quantize(arg0); }
|