summaryrefslogtreecommitdiffstats
path: root/top-nfsdcalls.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
committerSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
commit85014ffa32c9c07487fa729d81a0795c4c3ea8c4 (patch)
tree037847509fe8f4253f8801a473a99c9292f79893 /top-nfsdcalls.stp
parent3fc0e545a2aa1a2a3717cb3fc652f8876a03c073 (diff)
downloadsystemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.gz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.xz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.zip
Cleaned up the top-* scripts
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'top-nfsdcalls.stp')
-rwxr-xr-xtop-nfsdcalls.stp5
1 files changed, 3 insertions, 2 deletions
diff --git a/top-nfsdcalls.stp b/top-nfsdcalls.stp
index a167d4c..7bfdf03 100755
--- a/top-nfsdcalls.stp
+++ b/top-nfsdcalls.stp
@@ -13,7 +13,8 @@ probe kernel.function("*@fs/nfsd") ?,
}
probe end {
- foreach (name in nfsdcalls- limit 200)
- printf("%10d %s\n", nfsdcalls[name], name)
+ printf("Collating data...\n");
+ foreach (name in nfsdcalls- limit 200)
+ printf("%10d %s\n", nfsdcalls[name], name)
}