下面这个DTrace
脚本可以记录哪些程序kill
掉了其它进程:
#!/usr/sbin/dtrace -qs
proc:::signal-send
/ (args[2] == SIGKILL) /
{
printf("[%s - %d - %d] sent SIGKILL[......]
下面这个DTrace
脚本可以记录哪些程序kill
掉了其它进程:
#!/usr/sbin/dtrace -qs
proc:::signal-send
/ (args[2] == SIGKILL) /
{
printf("[%s - %d - %d] sent SIGKILL[......]