13 lines
194 B
Plaintext
13 lines
194 B
Plaintext
|
#!/usr/bin/stap
|
||
|
|
||
|
# http://sourceware.org/systemtap/examples/network/nfsdtop.stp
|
||
|
|
||
|
probe nfsd.proc.lookup {
|
||
|
printf("%s %s\n", client_ip, filename);
|
||
|
}
|
||
|
|
||
|
probe timer.ms(100000) {
|
||
|
exit ();
|
||
|
}
|
||
|
|