12 lines
288 B
Plaintext
12 lines
288 B
Plaintext
|
/*
|
||
|
* Probe all probes listed in the /usr/share/systemtap/tapset/dhcpd.stp tapset
|
||
|
* and print out data each time a probe fires.
|
||
|
*
|
||
|
* This could be run with a specific instance of dhcpd like:
|
||
|
* $ stap tap_all.stp -c 'dhcpd -d eth0'
|
||
|
*/
|
||
|
|
||
|
probe dhcpd* {
|
||
|
printf("%s\n", probestr);
|
||
|
}
|