summaryrefslogtreecommitdiffstats
path: root/top-nfscalls.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2009-08-13 10:41:07 -0400
committerSteve Dickson <steved@redhat.com>2009-08-13 10:41:07 -0400
commit0f38db8abb84c7a315762c9831dfcca101e50258 (patch)
tree86e7a5ea4975079af335cf2f0dd54d6bac704d5e /top-nfscalls.stp
parentacc153b757eb0988c9cdae8ab4cb41d53425bd75 (diff)
downloadsystemtap-0f38db8abb84c7a315762c9831dfcca101e50258.tar.gz
systemtap-0f38db8abb84c7a315762c9831dfcca101e50258.tar.xz
systemtap-0f38db8abb84c7a315762c9831dfcca101e50258.zip
Added top-nfsclient.stp
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'top-nfscalls.stp')
-rwxr-xr-xtop-nfscalls.stp6
1 files changed, 3 insertions, 3 deletions
diff --git a/top-nfscalls.stp b/top-nfscalls.stp
index 62fe9d0..90586e0 100755
--- a/top-nfscalls.stp
+++ b/top-nfscalls.stp
@@ -3,11 +3,11 @@
global nfscalls
probe begin {
- printf("Collecting data...\n")
+ printf("Collecting top NFS procs...\n")
}
-probe kernel.function("*@fs/nfs") ?,
- module("nfs").function("*@fs/nfs/*") ?
+probe kernel.function("*@fs/nfs/*proc.c") ?,
+ module("nfs").function("*@fs/nfs/*proc.c") ?
{
nfscalls[probefunc()]++
}