mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-29 11:05:43 +00:00
21 lines
196 B
D
21 lines
196 B
D
#!/usr/bin/dtrace -s
|
|
// lokinet dtrace profiler
|
|
|
|
dtrace::BEGIN
|
|
{
|
|
|
|
}
|
|
|
|
syscall:::entry
|
|
/pid == $1/
|
|
{
|
|
@syscalls[probefunc] = count();
|
|
}
|
|
|
|
profile:::tick-1sec
|
|
{
|
|
printa("%@8u %a\n", @syscalls);
|
|
}
|
|
|
|
|