From 80e31df40d530632041536caa3a9109cd515aef7 Mon Sep 17 00:00:00 2001 From: depristo Date: Sat, 7 Aug 2010 12:36:28 +0000 Subject: [PATCH] Useful script to see the status of gsa computing resources. Crontab'd and will be arriving as email at 8 am git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3965 348d0f76-0448-11de-a6fe-93d51630548a --- shell/queueStatus.csh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 shell/queueStatus.csh diff --git a/shell/queueStatus.csh b/shell/queueStatus.csh new file mode 100755 index 000000000..5fe54ff94 --- /dev/null +++ b/shell/queueStatus.csh @@ -0,0 +1,18 @@ +#!/bin/tcsh + +# what's the status of all of the gsa hosts +echo "GSA host status" +bhosts gsahosts + +echo "\nGSA queue usage" +bjobs -u all -q gsa | awk '$2 !~ "USER" {print $2}' | sort | uniq -c + +echo "\nGeneral computing resources" +bqueues gsa week short broad + +echo "\nFH jobs" +bjobs -u gsa-adm + +echo "\nFile system status" +df -h /humgen/* /broad/1KG /broad/shptmp +