[BACK]Return to kprofile.bt CVS log [TXT][DIR] Up to [local] / src / share / btrace

Annotation of src/share/btrace/kprofile.bt, Revision 1.2

1.2     ! bluhm       1: /*     $OpenBSD$       */
        !             2:
1.1       mpi         3: /*
                      4:  * kprofile.bt Kernel profiling (stack sampling) at 100Hz.
                      5:  *
                      6:  * To produce a FlameGraph process the output with stackcollapse-bpftrace.pl
                      7:  * and flamegraph.pl found in:
                      8:  *     https://github.com/brendangregg/FlameGraph
                      9:  */
                     10: profile:hz:100 {
                     11:        @[kstack] = count();
                     12: }