From: adilger Date: Fri, 22 Mar 2002 23:45:55 +0000 (+0000) Subject: Simple script to run vmstat and prepend the time, so we can see when vmstat X-Git-Tag: v1_7_100~5872 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=7871725db54f50429e5b2eaaf6018b46e0e49af8;hp=536702b743d903ee39f1a95b7405f56c3a8a10aa;p=fs%2Flustre-release.git Simple script to run vmstat and prepend the time, so we can see when vmstat is not being scheduled instead of thinking that something is strange. --- diff --git a/lustre/tests/runvmstat b/lustre/tests/runvmstat new file mode 100755 index 0000000..6bff5ce --- /dev/null +++ b/lustre/tests/runvmstat @@ -0,0 +1,2 @@ +#!/bin/sh +vmstat 1 | while read LINE ; do echo "`date +%H:%M:%S`: $LINE" ; done