From 6d79ebcae10dddb804856e7838aa391749266ebb Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Thu, 2 Feb 2017 10:52:53 -0500 Subject: [PATCH] Add top memory consuming process to dstat output Right now we under pressure because of increasing memory consumption in dsvm jobs. So it'll be good to see which process is eating the most ram at a given time. It may not end up being useful, but it doesn't hurt to at least display just in case. Change-Id: I096bf4b425db51358240335e41f6238d1ec1bb40 --- tools/dstat.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dstat.sh b/tools/dstat.sh index 3c0b3be089..1c80fb70f8 100755 --- a/tools/dstat.sh +++ b/tools/dstat.sh @@ -13,7 +13,7 @@ LOGDIR=$1 # Command line arguments for primary DStat process. -DSTAT_OPTS="-tcmndrylpg --top-cpu-adv --top-io-adv --swap" +DSTAT_OPTS="-tcmndrylpg --top-cpu-adv --top-io-adv --top-mem --swap" # Command-line arguments for secondary background DStat process. DSTAT_CSV_OPTS="-tcmndrylpg --output $LOGDIR/dstat-csv.log"