public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* traceio.stp diff #2
@ 2009-04-27 22:14 Kai Meyer
  0 siblings, 0 replies; only message in thread
From: Kai Meyer @ 2009-04-27 22:14 UTC (permalink / raw)
  To: systemtap

fche in the IRC channel suggested we index on both the pid and execname. 
If we do, we get the following:



--- traceio.stp.orig    2009-04-27 15:17:38.000000000 -0600
+++ traceio.stp    2009-04-27 16:12:15.000000000 -0600
@@ -10,22 +10,20 @@
 global reads, writes, total_io
 
 probe vfs.read.return {
-  reads[execname()] += $return
+  reads[pid(),execname()] += $return
+  total_io[pid(),execname()] += $return
 }
 
 probe vfs.write.return {
-  writes[execname()] += $return
+  writes[pid(),execname()] += $return
+  total_io[pid(),execname()] += $return
 }
 
 probe timer.s(1) {
-  foreach (p in reads)
-    total_io[p] += reads[p]
-  foreach (p in writes)
-    total_io[p] += writes[p]
-  foreach(p in total_io- limit 10)
-    printf("%15s r: %8d KiB w: %8d KiB\n",
-           p, reads[p]/1024,
-           writes[p]/1024)
+  foreach([p,e] in total_io- limit 10)
+    printf("%8d %15s r: %8d MiB w: %8d MiB\n",
+           p, e, reads[p,e]/1024/1024,
+           writes[p,e]/1024/1024)
   printf("\n")
   # Note we don't zero out reads, writes and total_io,
   # so the values are cumulative since the script started.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-27 22:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-27 22:14 traceio.stp diff #2 Kai Meyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).