From cab95ec8fbf819d61c27654a58fea8c240338364 Mon Sep 17 00:00:00 2001 From: Marc Mance Date: Wed, 29 May 2024 18:48:09 -0400 Subject: [PATCH] moved gstat to local folder --- collect.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collect.sh b/collect.sh index 68e17e6..8c1d4c3 100755 --- a/collect.sh +++ b/collect.sh @@ -11,13 +11,13 @@ echo "" iterations=$1 echo "Starting gstat Collection" -timeout "$minutes"m gstat -C -s -d -o -p -I 60s > /root/gstat.csv & +timeout "$minutes"m gstat -C -s -d -o -p -I 60s > gstat.csv & echo "Starting iostat Collection" for (( i=1; i<=$iterations; i++ )); do # Execute the command python3 ixiostat.py - +echo "minute: $i" # Wait for 60 seconds before the next iteration sleep 60 done