From 7871725db54f50429e5b2eaaf6018b46e0e49af8 Mon Sep 17 00:00:00 2001 From: adilger Date: Fri, 22 Mar 2002 23:45:55 +0000 Subject: [PATCH] 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. --- lustre/tests/runvmstat | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 lustre/tests/runvmstat 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 -- 1.8.3.1