* 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:
19
turing/admin/wgo
Executable file
19
turing/admin/wgo
Executable 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
|
||||
Reference in New Issue
Block a user