Wednesday 24 September 2014

Syscall count checking in solaris by process or by process id

# Syscall count by process name,
dtrace -n 'syscall:::entry { @num[execname] = count(); }'

# Syscall count by process ID,
dtrace -n 'syscall:::entry { @num[pid,execname] = count(); }'

No comments:

Post a Comment