Whamcloud - gitweb
Simple script to run vmstat and prepend the time, so we can see when vmstat
authoradilger <adilger>
Fri, 22 Mar 2002 23:45:55 +0000 (23:45 +0000)
committeradilger <adilger>
Fri, 22 Mar 2002 23:45:55 +0000 (23:45 +0000)
is not being scheduled instead of thinking that something is strange.

lustre/tests/runvmstat [new file with mode: 0755]

diff --git a/lustre/tests/runvmstat b/lustre/tests/runvmstat
new file mode 100755 (executable)
index 0000000..6bff5ce
--- /dev/null
@@ -0,0 +1,2 @@
+#!/bin/sh
+vmstat 1 | while read LINE ; do echo "`date +%H:%M:%S`: $LINE" ; done