* Added "wgo" (what's going on) to check the status of processes

on login node. Currently supposed to be used for Turing only.
This commit is contained in:
Wirawan Purwanto
2019-04-25 17:34:23 -04:00
parent 1387997010
commit a65338a8bf

19
turing/admin/wgo Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
DATETIME=$(date +"%Y%m%d-%H%M%S")
LOGDIR=$HOME/admin/login-patrol/turing
whats_going_on () {
date
echo
top -b -n 1 | head -n 60 | tee $LOGDIR/top-${DATETIME}
echo
ps fuxa > $LOGDIR/ps-fuxa-${DATETIME}
cat $LOGDIR/ps-fuxa-${DATETIME}
}
if test -t 1; then
whats_going_on | less
else
whats_going_on
fi