From martin.flemming@desy.de Wed Jun 24 08:17:48 2026 From: martin.flemming@desy.de To: xymon@xymon.com Subject: [hobbit] Sun Grid Engine monitoring Date: Wed, 12 Nov 2008 00:53:57 +0100 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1809540169075740329==" --===============1809540169075740329== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Nice, the update work's ... unfortunatley, i've to change the command qstat -s r to qhost -j -h because i've got no output for qstat ... don't know why .. .. for the mrtg- and graph-question i will be answer/ask again, if i've got time test it ... :-( martin On Thu, 16 Oct 2008, Martin Flemming wrote: > > Nice, that will be easier and quicker to test it, Thanks ! > > cheers, > martin > > On Wed, 15 Oct 2008, rdeal wrote: > >> I just put an upgrade to the test on deadcat yesterday to version 0.3e... >> Richard >>=20 >>=20 >> > From: Martin Flemming >> > Reply-To: >> > Date: Wed, 15 Oct 2008 22:58:46 +0200 (CEST) >> > To: >> > Subject: Re: [hobbit] Sun Grid Engine monitoring >> >=20 >> >=20 >> > Thanks, i will test it and give feedback .. :-) >> >=20 >> > .. unfortunatley, i'm short in time for testing very short :-( >> >=20 >> > cheers, >> > martin >> >=20 >> > On Fri, 10 Oct 2008, rdeal wrote: >> >=20 >> > > We have several queues, primary are default, fast, medium. >> > >=20 >> > > The config file is pretty simple: >> > > Unscaled[_]: y >> > >=20 >> > > Target[sge_1]: `/local/packages/IT/MRTG/bin/qgraph.sh both` >> > > MaxBytes[sge_1]: 625 >> > > AbsMax[sge_1]: 100000000 >> > > ShortLegend[sge_1]: Jobs >> > > YLegend[sge_1]: jobs >> > > Options[sge_1]: absolute, gauge, noinfo, nopercent, growright,=20 >> > > integer, >> > > unknaszero >> > > Title[sge_1]: Current Jobs on JCVI GRID >> > > Legend1[sge_1]: Running >> > > Legend2[sge_1]: Queued >> > > Legend3[sge_1]: Peak running >> > > Legend4[sge_1]: Peak queued >> > > LegendI[sge_1]: running >> > > LegendO[sge_1]: queued >> > > Colours[sge_1]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >> > > PageTop[sge_1]:

Current Jobs on JCVI GRID

>> > > >> > > >> > > >> > >
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs running on = >> > > the >> > > JCVI SGE GRID
>> > > routers.cgi*Options[sge_1]: noabsmax nodetail >> > >=20 >> > > Target[sge_7]: `/local/packages/IT/MRTG/bin/qgraph.sh medium` >> > > MaxBytes[sge_7]: 354 >> > > AbsMax[sge_7]: 100000000 >> > > ShortLegend[sge_7]: Jobs >> > > YLegend[sge_7]: jobs >> > > Options[sge_7]: absolute, gauge, noinfo, nopercent, growright,=20 >> > > integer, >> > > unknaszero >> > > Title[sge_7]: Current Jobs in medium.q and fast.q >> > > Legend1[sge_7]: Medium >> > > Legend2[sge_7]: Fast >> > > Legend3[sge_7]: Peak medium >> > > Legend4[sge_7]: Peak fast >> > > LegendI[sge_7]: medium >> > > LegendO[sge_7]: fast >> > > Colours[sge_7]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >> > > PageTop[sge_7]:

Current Jobs on JCVI GRID

>> > > >> > > >> > > >> > >
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs in the=20 >> > > fast.q and >> > > medium.q
>> > > routers.cgi*Options[sge_7]: noabsmax nodetail >> > >=20 >> > > The script is rather simple: >> > >=20 >> > > # !/bin/sh >> > > #=20 >> > >=20 >> > > case "$1" in >> > > test ) >> > > echo 50 >> > > echo 20 ;; >> > > total ) >> > > echo $T >> > > echo 0 ;; >> > > running ) >> > > echo $R >> > > echo 0 ;; >> > > msc ) >> > > T=3D`/usr/local/bin/qstat -q fast.msc.q -s r | /usr/bin/tail +3 | >> > > /usr/bin/wc -l` >> > > R=3D`/usr/local/bin/qstat -q msc.q -s r | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > echo $R >> > > echo $T ;; >> > > medium ) >> > > T=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > R=3D`/usr/local/bin/qstat -q medium.q -s r | /usr/bin/tail +3 | >> > > /usr/bin/wc -l` >> > > echo $R >> > > echo $T ;; >> > > fast ) >> > > T=3D`/usr/local/bin/qstat -q default.q -s r | /usr/bin/tail +3 | >> > > /usr/bin/wc -l` >> > > R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > echo $R >> > > echo $T ;; >> > > desktop ) >> > > T=3D`/usr/local/bin/qstat -q desktop.q -s r | /usr/bin/tail +3 | >> > > /usr/bin/wc -l` >> > > R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > echo $R >> > > echo $T ;; >> > > jtc ) >> > > T=3D`ssh wasp "use sgejcvi; qstat -g dt" | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > R=3D`ssh wasp "use sgejcvi; qstat -s r" | /usr/bin/tail +3 |=20 >> > > /usr/bin/wc >> > > -l` >> > > echo $R >> > > echo $T ;; >> > > * | both ) >> > > T=3D`/usr/local/bin/qstat -g dt | /usr/bin/tail +3 | /usr/bin/wc -= l` >> > > R=3D`/usr/local/bin/qstat -s r | /usr/bin/tail +3 | /usr/bin/wc -l` >> > > echo $R >> > > echo $T ;; >> > > esac >> > >=20 >> > > echo foo >> > > echo SGE >> > >=20 >> > >=20 >> > > The two graphs configured above: >> > >=20 >> > >=20 >> > >=20 >> > > > From: Martin Flemming >> > > > Reply-To: >> > > > Date: Fri, 10 Oct 2008 11:46:29 +0200 (CEST) >> > > > To: >> > > > Subject: Re: [hobbit] Sun Grid Engine monitoring >> > > >=20 >> > > >=20 >> > > > Hmm, i didn't run mrtg ... >> > > >=20 >> > > > How can i do it for sge ? >> > > >=20 >> > > > .. i want to graph e.g jobs in the queue for each node, project or = >> > > > queue .. >> > > >=20 >> > > > ... everything i can do :-) >> > > >=20 >> > > > Or is it maybe possible to create graphs with the data of sge.sh=20 >> > > > script ? >> > > >=20 >> > > > thanks & cheers >> > > >=20 >> > > > martin >> > > >=20 >> > > > On Fri, 10 Oct 2008, michael nemeth wrote: >> > > >=20 >> > > > > Ok! well I run mrtg too so I can do that. Also I thought I try=20 >> > > > > creating >> > > > > graphs for the sge.sh when >> > > > > it's implemented. I've done custom graphs before (clearcase). >> > > > > As I said I know little about SGE and the SGE support person know= s=20 >> > > > > little >> > > > > about hobbit. >> > > > >=20 >> > > > > Deal, Richard wrote: >> > > > > > What did you want to graph. I use mrtg to graph global she=20 >> > > > > > stats >> > > > > >=20 >> > > > > > Sent from a portable system with a small keyboard. >> > > > > >=20 >> > > > > > On Oct 9, 2008, at 5:51 PM, "Martin Flemming"=20 >> > > > > > >> > > > > > wrote: >> > > > > >=20 >> > > > > > >=20 >> > > > > > > Yep, i use it too ... but unfortunatley it's without trendin= g=20 >> > > > > > > graphs .. >> > > > > > >=20 >> > > > > > > Got anybody a solution for it ? >> > > > > > >=20 >> > > > > > > .. i'm very interested :-) >> > > > > > >=20 >> > > > > > > cheers, >> > > > > > > martin >> > > > > > >=20 >> > > > > > > On Thu, 9 Oct 2008, rdeal wrote: >> > > > > > >=20 >> > > > > > > >=20 >> > > > > > > > It is called sge.sh >> > > > > > > > http://www.deadcat.net/viewfile.php?fileid=3D920 >> > > > > > > > And we run it under hobbit now. >> > > > > > > > Richard >> > > > > > > >=20 >> > > > > > > > > From: Galen Johnson >> > > > > > > > > Reply-To: >> > > > > > > > > Date: Thu, 9 Oct 2008 14:57:10 -0400 >> > > > > > > > > To: "hobbit at hswn.dk" >> > > > > > > > > Subject: RE: [hobbit] Sun Grid Engine monitoring >> > > > > > > > >=20 >> > > > > > > > > Where on deadcat? I can't find anything that mentions i= t=20 >> > > > > > > > > (a search >> > > > > > > > > on grid on >> > > > > > > > > Deacat turns up something for the California power grid)= .=20 >> > > > > > > > > Most >> > > > > > > > > monitors from >> > > > > > > > > deadcat should work with little to no modification for=20 >> > > > > > > > > Hobbit. >> > > > > > > > > Also, Hobbit >> > > > > > > > > will monitor whatever you tell it so the sky's the limit= =20 >> > > > > > > > > there...or >> > > > > > > > > in this >> > > > > > > > > case the scripter is the limit. >> > > > > > > > >=20 >> > > > > > > > > =3DG=3D >> > > > > > > > >=20 >> > > > > > > > > -----Original Message----- >> > > > > > > > > From: michael nemeth [mailto:michael.nemeth at lmco.com] >> > > > > > > > > Sent: Thursday, October 09, 2008 2:46 PM >> > > > > > > > > To: hobbit at hswn.dk >> > > > > > > > > Subject: [hobbit] Sun Grid Engine monitoring >> > > > > > > > >=20 >> > > > > > > > > While I not been involved in the effort yet,we are about= =20 >> > > > > > > > > to bring as >> > > > > > > > > "farm" under Sun Grid Engine in to production. Anyone=20 >> > > > > > > > > doing any >> > > > > > > > > monitoring like this? I saw a script on deadcat. I=20 >> > > > > > > > > really know >> > > > > > > > > little about it but said Id check into what monitoring=20 >> > > > > > > > > and metrics >> > > > > > > > > could >> > > > > > > > > be done by hobbit. >> > > > > > > > >=20 >> > > > > > > > >=20 >> > > > > > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > > > > > hobbit-unsubscribe at hswn.dk >> > > > > > > > >=20 >> > > > > > > > >=20 >> > > > > > > > >=20 >> > > > > > > > >=20 >> > > > > > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > > > > > hobbit-unsubscribe at hswn.dk >> > > > > > > > >=20 >> > > > > > > > >=20 >> > > > > > > >=20 >> > > > > > > >=20 >> > > > > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > > > > hobbit-unsubscribe at hswn.dk >> > > > > > > >=20 >> > > > > > > >=20 >> > > > > > > >=20 >> > > > > > >=20 >> > > > > > > Gruss >> > > > > > >=20 >> > > > > > > Martin Flemming >> > > > > > >=20 >> > > > > > >=20 >>>>>>>> ______________________________________________________ >> > > > > > > Martin Flemming >> > > > > > > DESY / IT office : Building 2b / 008a >> > > > > > > Notkestr. 85 phone : 040 - 8998 - 4667 >> > > > > > > 22603 Hamburg mail : martin.flemming at desy.de >>>>>>>> ______________________________________________________ >> > > > > > >=20 >> > > > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > > > hobbit-unsubscribe at hswn.dk >> > > > > > >=20 >> > > > > > >=20 >> > > > > >=20 >> > > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > > hobbit-unsubscribe at hswn.dk >> > > > > >=20 >> > > > > >=20 >> > > > > >=20 >> > > > >=20 >> > > > >=20 >> > > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > > hobbit-unsubscribe at hswn.dk >> > > > >=20 >> > > > >=20 >> > > > >=20 >> > > > >=20 >> > > >=20 >> > > > Gruss >> > > >=20 >> > > > Martin Flemming >> > > >=20 >> > > >=20 >>>>> ______________________________________________________ >> > > > Martin Flemming >> > > > DESY / IT office : Building 2b / 008a >> > > > Notkestr. 85 phone : 040 - 8998 - 4667 >> > > > 22603 Hamburg mail : martin.flemming at desy.de >>>>> ______________________________________________________ >> > > >=20 >> > > > To unsubscribe from the hobbit list, send an e-mail to >> > > > hobbit-unsubscribe at hswn.dk >> > > >=20 >> > > >=20 >> > >=20 >> > >=20 >> >=20 >> > Gruss >> >=20 >> > Martin Flemming >> >=20 >> >=20 >>> ______________________________________________________ >> > Martin Flemming >> > DESY / IT office : Building 2b / 008a >> > Notkestr. 85 phone : 040 - 8998 - 4667 >> > 22603 Hamburg mail : martin.flemming at desy.de >>> ______________________________________________________ >> >=20 >> > To unsubscribe from the hobbit list, send an e-mail to >> > hobbit-unsubscribe at hswn.dk >> >=20 >> >=20 >>=20 >> >> To unsubscribe from the hobbit list, send an e-mail to >> hobbit-unsubscribe at hswn.dk >>=20 >>=20 >>=20 > > Gruss > > Martin Flemming > > > ______________________________________________________ > Martin Flemming > DESY / IT office : Building 2b / 008a > Notkestr. 85 phone : 040 - 8998 - 4667 > 22603 Hamburg mail : martin.flemming at desy.de > ______________________________________________________ > > To unsubscribe from the hobbit list, send an e-mail to > hobbit-unsubscribe at hswn.dk > > > Gruss Martin Flemming ______________________________________________________ Martin Flemming DESY / IT office : Building 2b / 008a Notkestr. 85 phone : 040 - 8998 - 4667 22603 Hamburg mail : martin.flemming at desy.de ______________________________________________________ --===============1809540169075740329==-- From rdeal@jcvi.org Wed Jun 24 08:17:58 2026 From: rdeal@jcvi.org To: xymon@xymon.com Subject: [hobbit] Sun Grid Engine monitoring Date: Fri, 10 Oct 2008 08:22:20 -0400 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1174498242443566189==" --===============1174498242443566189== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable We have several queues, primary are default, fast, medium. The config file is pretty simple: Unscaled[_]: y Target[sge_1]: `/local/packages/IT/MRTG/bin/qgraph.sh both` MaxBytes[sge_1]: 625 AbsMax[sge_1]: 100000000 ShortLegend[sge_1]: Jobs YLegend[sge_1]: jobs Options[sge_1]: absolute, gauge, noinfo, nopercent, growright, integer, unknaszero Title[sge_1]: Current Jobs on JCVI GRID Legend1[sge_1]: Running Legend2[sge_1]: Queued Legend3[sge_1]: Peak running Legend4[sge_1]: Peak queued LegendI[sge_1]: running LegendO[sge_1]: queued Colours[sge_1]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff PageTop[sge_1]:

Current Jobs on JCVI GRID

Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs running on the JCVI SGE GRID
routers.cgi*Options[sge_1]: noabsmax nodetail Target[sge_7]: `/local/packages/IT/MRTG/bin/qgraph.sh medium` MaxBytes[sge_7]: 354 AbsMax[sge_7]: 100000000 ShortLegend[sge_7]: Jobs YLegend[sge_7]: jobs Options[sge_7]: absolute, gauge, noinfo, nopercent, growright, integer, unknaszero Title[sge_7]: Current Jobs in medium.q and fast.q Legend1[sge_7]: Medium Legend2[sge_7]: Fast Legend3[sge_7]: Peak medium Legend4[sge_7]: Peak fast LegendI[sge_7]: medium LegendO[sge_7]: fast Colours[sge_7]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff PageTop[sge_7]:

Current Jobs on JCVI GRID

Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs in the fast.q and medium.q
routers.cgi*Options[sge_7]: noabsmax nodetail The script is rather simple: #!/bin/sh # case "$1" in=20 test ) echo 50 echo 20 ;; total ) echo $T echo 0 ;; running ) echo $R echo 0 ;; msc ) T=3D`/usr/local/bin/qstat -q fast.msc.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`/usr/local/bin/qstat -q msc.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; medium ) T=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`/usr/local/bin/qstat -q medium.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; fast ) T=3D`/usr/local/bin/qstat -q default.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; desktop ) T=3D`/usr/local/bin/qstat -q desktop.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; jtc ) T=3D`ssh wasp "use sgejcvi; qstat -g dt" | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`ssh wasp "use sgejcvi; qstat -s r" | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; * | both ) T=3D`/usr/local/bin/qstat -g dt | /usr/bin/tail +3 | /usr/bin/wc -l` R=3D`/usr/local/bin/qstat -s r | /usr/bin/tail +3 | /usr/bin/wc -l` echo $R echo $T ;; esac echo foo echo SGE The two graphs configured above: > From: Martin Flemming > Reply-To: > Date: Fri, 10 Oct 2008 11:46:29 +0200 (CEST) > To: > Subject: Re: [hobbit] Sun Grid Engine monitoring >=20 >=20 > Hmm, i didn't run mrtg ... >=20 > How can i do it for sge ? >=20 > .. i want to graph e.g jobs in the queue for each node, project or queue .. >=20 > ... everything i can do :-) >=20 > Or is it maybe possible to create graphs with the data of sge.sh script ? >=20 > thanks & cheers >=20 > martin >=20 > On Fri, 10 Oct 2008, michael nemeth wrote: >=20 >> Ok! well I run mrtg too so I can do that. Also I thought I try creating >> graphs for the sge.sh when >> it's implemented. I've done custom graphs before (clearcase). >> As I said I know little about SGE and the SGE support person knows little >> about hobbit. >>=20 >> Deal, Richard wrote: >>> What did you want to graph. I use mrtg to graph global she stats >>>=20 >>> Sent from a portable system with a small keyboard. >>>=20 >>> On Oct 9, 2008, at 5:51 PM, "Martin Flemming" >>> wrote: >>>=20 >>>>=20 >>>> Yep, i use it too ... but unfortunatley it's without trending graphs .. >>>>=20 >>>> Got anybody a solution for it ? >>>>=20 >>>> .. i'm very interested :-) >>>>=20 >>>> cheers, >>>> martin >>>>=20 >>>> On Thu, 9 Oct 2008, rdeal wrote: >>>>=20 >>>>>=20 >>>>> It is called sge.sh >>>>> http://www.deadcat.net/viewfile.php?fileid=3D920 >>>>> And we run it under hobbit now. >>>>> Richard >>>>>=20 >>>>>> From: Galen Johnson >>>>>> Reply-To: >>>>>> Date: Thu, 9 Oct 2008 14:57:10 -0400 >>>>>> To: "hobbit at hswn.dk" >>>>>> Subject: RE: [hobbit] Sun Grid Engine monitoring >>>>>>=20 >>>>>> Where on deadcat? I can't find anything that mentions it (a search >>>>>> on grid on >>>>>> Deacat turns up something for the California power grid). Most >>>>>> monitors from >>>>>> deadcat should work with little to no modification for Hobbit. >>>>>> Also, Hobbit >>>>>> will monitor whatever you tell it so the sky's the limit there...or >>>>>> in this >>>>>> case the scripter is the limit. >>>>>>=20 >>>>>> =3DG=3D >>>>>>=20 >>>>>> -----Original Message----- >>>>>> From: michael nemeth [mailto:michael.nemeth at lmco.com] >>>>>> Sent: Thursday, October 09, 2008 2:46 PM >>>>>> To: hobbit at hswn.dk >>>>>> Subject: [hobbit] Sun Grid Engine monitoring >>>>>>=20 >>>>>> While I not been involved in the effort yet,we are about to bring as >>>>>> "farm" under Sun Grid Engine in to production. Anyone doing any >>>>>> monitoring like this? I saw a script on deadcat. I really know >>>>>> little about it but said Id check into what monitoring and metrics >>>>>> could >>>>>> be done by hobbit. >>>>>>=20 >>>>>>=20 >>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>> hobbit-unsubscribe at hswn.dk >>>>>>=20 >>>>>>=20 >>>>>>=20 >>>>>>=20 >>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>> hobbit-unsubscribe at hswn.dk >>>>>>=20 >>>>>>=20 >>>>>=20 >>>>>=20 >>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>> hobbit-unsubscribe at hswn.dk >>>>>=20 >>>>>=20 >>>>>=20 >>>>=20 >>>> Gruss >>>>=20 >>>> Martin Flemming >>>>=20 >>>>=20 >>>> ______________________________________________________ >>>> Martin Flemming >>>> DESY / IT office : Building 2b / 008a >>>> Notkestr. 85 phone : 040 - 8998 - 4667 >>>> 22603 Hamburg mail : martin.flemming at desy.de >>>> ______________________________________________________ >>>>=20 >>>> To unsubscribe from the hobbit list, send an e-mail to >>>> hobbit-unsubscribe at hswn.dk >>>>=20 >>>>=20 >>>=20 >>> To unsubscribe from the hobbit list, send an e-mail to >>> hobbit-unsubscribe at hswn.dk >>>=20 >>>=20 >>>=20 >>=20 >>=20 >> To unsubscribe from the hobbit list, send an e-mail to >> hobbit-unsubscribe at hswn.dk >>=20 >>=20 >>=20 >>=20 >=20 > Gruss >=20 > Martin Flemming >=20 >=20 > ______________________________________________________ > Martin Flemming > DESY / IT office : Building 2b / 008a > Notkestr. 85 phone : 040 - 8998 - 4667 > 22603 Hamburg mail : martin.flemming at desy.de > ______________________________________________________ >=20 > To unsubscribe from the hobbit list, send an e-mail to > hobbit-unsubscribe at hswn.dk >=20 >=20 --===============1174498242443566189==-- From martin.flemming@desy.de Wed Jun 24 08:17:58 2026 From: martin.flemming@desy.de To: xymon@xymon.com Subject: [hobbit] Sun Grid Engine monitoring Date: Wed, 15 Oct 2008 22:58:46 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6261444892194746220==" --===============6261444892194746220== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Thanks, i will test it and give feedback .. :-) .. unfortunatley, i'm short in time for testing very short :-( cheers, martin On Fri, 10 Oct 2008, rdeal wrote: > We have several queues, primary are default, fast, medium. > > The config file is pretty simple: > Unscaled[_]: y > > Target[sge_1]: `/local/packages/IT/MRTG/bin/qgraph.sh both` > MaxBytes[sge_1]: 625 > AbsMax[sge_1]: 100000000 > ShortLegend[sge_1]: Jobs > YLegend[sge_1]: jobs > Options[sge_1]: absolute, gauge, noinfo, nopercent, growright, integer, > unknaszero > Title[sge_1]: Current Jobs on JCVI GRID > Legend1[sge_1]: Running > Legend2[sge_1]: Queued > Legend3[sge_1]: Peak running > Legend4[sge_1]: Peak queued > LegendI[sge_1]: running > LegendO[sge_1]: queued > Colours[sge_1]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff > PageTop[sge_1]:

Current Jobs on JCVI GRID

> > > >
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs running on the > JCVI SGE GRID
> routers.cgi*Options[sge_1]: noabsmax nodetail > > Target[sge_7]: `/local/packages/IT/MRTG/bin/qgraph.sh medium` > MaxBytes[sge_7]: 354 > AbsMax[sge_7]: 100000000 > ShortLegend[sge_7]: Jobs > YLegend[sge_7]: jobs > Options[sge_7]: absolute, gauge, noinfo, nopercent, growright, integer, > unknaszero > Title[sge_7]: Current Jobs in medium.q and fast.q > Legend1[sge_7]: Medium > Legend2[sge_7]: Fast > Legend3[sge_7]: Peak medium > Legend4[sge_7]: Peak fast > LegendI[sge_7]: medium > LegendO[sge_7]: fast > Colours[sge_7]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff > PageTop[sge_7]:

Current Jobs on JCVI GRID

> > > >
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs in the fast.q and > medium.q
> routers.cgi*Options[sge_7]: noabsmax nodetail > > The script is rather simple: > > #!/bin/sh > # > > case "$1" in > test ) > echo 50 > echo 20 ;; > total ) > echo $T > echo 0 ;; > running ) > echo $R > echo 0 ;; > msc ) > T=3D`/usr/local/bin/qstat -q fast.msc.q -s r | /usr/bin/tail +3 | > /usr/bin/wc -l` > R=3D`/usr/local/bin/qstat -q msc.q -s r | /usr/bin/tail +3 | /usr/bin/wc > -l` > echo $R > echo $T ;; > medium ) > T=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc > -l` > R=3D`/usr/local/bin/qstat -q medium.q -s r | /usr/bin/tail +3 | > /usr/bin/wc -l` > echo $R > echo $T ;; > fast ) > T=3D`/usr/local/bin/qstat -q default.q -s r | /usr/bin/tail +3 | > /usr/bin/wc -l` > R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc > -l` > echo $R > echo $T ;; > desktop ) > T=3D`/usr/local/bin/qstat -q desktop.q -s r | /usr/bin/tail +3 | > /usr/bin/wc -l` > R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/wc > -l` > echo $R > echo $T ;; > jtc ) > T=3D`ssh wasp "use sgejcvi; qstat -g dt" | /usr/bin/tail +3 | /usr/bin/wc > -l` > R=3D`ssh wasp "use sgejcvi; qstat -s r" | /usr/bin/tail +3 | /usr/bin/wc > -l` > echo $R > echo $T ;; > * | both ) > T=3D`/usr/local/bin/qstat -g dt | /usr/bin/tail +3 | /usr/bin/wc -l` > R=3D`/usr/local/bin/qstat -s r | /usr/bin/tail +3 | /usr/bin/wc -l` > echo $R > echo $T ;; > esac > > echo foo > echo SGE > > > The two graphs configured above: > > > >> From: Martin Flemming >> Reply-To: >> Date: Fri, 10 Oct 2008 11:46:29 +0200 (CEST) >> To: >> Subject: Re: [hobbit] Sun Grid Engine monitoring >> >> >> Hmm, i didn't run mrtg ... >> >> How can i do it for sge ? >> >> .. i want to graph e.g jobs in the queue for each node, project or queue .. >> >> ... everything i can do :-) >> >> Or is it maybe possible to create graphs with the data of sge.sh script ? >> >> thanks & cheers >> >> martin >> >> On Fri, 10 Oct 2008, michael nemeth wrote: >> >>> Ok! well I run mrtg too so I can do that. Also I thought I try creating >>> graphs for the sge.sh when >>> it's implemented. I've done custom graphs before (clearcase). >>> As I said I know little about SGE and the SGE support person knows little >>> about hobbit. >>> >>> Deal, Richard wrote: >>>> What did you want to graph. I use mrtg to graph global she stats >>>> >>>> Sent from a portable system with a small keyboard. >>>> >>>> On Oct 9, 2008, at 5:51 PM, "Martin Flemming" >>>> wrote: >>>> >>>>> >>>>> Yep, i use it too ... but unfortunatley it's without trending graphs .. >>>>> >>>>> Got anybody a solution for it ? >>>>> >>>>> .. i'm very interested :-) >>>>> >>>>> cheers, >>>>> martin >>>>> >>>>> On Thu, 9 Oct 2008, rdeal wrote: >>>>> >>>>>> >>>>>> It is called sge.sh >>>>>> http://www.deadcat.net/viewfile.php?fileid=3D920 >>>>>> And we run it under hobbit now. >>>>>> Richard >>>>>> >>>>>>> From: Galen Johnson >>>>>>> Reply-To: >>>>>>> Date: Thu, 9 Oct 2008 14:57:10 -0400 >>>>>>> To: "hobbit at hswn.dk" >>>>>>> Subject: RE: [hobbit] Sun Grid Engine monitoring >>>>>>> >>>>>>> Where on deadcat? I can't find anything that mentions it (a search >>>>>>> on grid on >>>>>>> Deacat turns up something for the California power grid). Most >>>>>>> monitors from >>>>>>> deadcat should work with little to no modification for Hobbit. >>>>>>> Also, Hobbit >>>>>>> will monitor whatever you tell it so the sky's the limit there...or >>>>>>> in this >>>>>>> case the scripter is the limit. >>>>>>> >>>>>>> =3DG=3D >>>>>>> >>>>>>> -----Original Message----- >>>>>>> From: michael nemeth [mailto:michael.nemeth at lmco.com] >>>>>>> Sent: Thursday, October 09, 2008 2:46 PM >>>>>>> To: hobbit at hswn.dk >>>>>>> Subject: [hobbit] Sun Grid Engine monitoring >>>>>>> >>>>>>> While I not been involved in the effort yet,we are about to bring as >>>>>>> "farm" under Sun Grid Engine in to production. Anyone doing any >>>>>>> monitoring like this? I saw a script on deadcat. I really know >>>>>>> little about it but said Id check into what monitoring and metrics >>>>>>> could >>>>>>> be done by hobbit. >>>>>>> >>>>>>> >>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>> hobbit-unsubscribe at hswn.dk >>>>>> >>>>>> >>>>>> >>>>> >>>>> Gruss >>>>> >>>>> Martin Flemming >>>>> >>>>> >>>>> ______________________________________________________ >>>>> Martin Flemming >>>>> DESY / IT office : Building 2b / 008a >>>>> Notkestr. 85 phone : 040 - 8998 - 4667 >>>>> 22603 Hamburg mail : martin.flemming at desy.de >>>>> ______________________________________________________ >>>>> >>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>> hobbit-unsubscribe at hswn.dk >>>>> >>>>> >>>> >>>> To unsubscribe from the hobbit list, send an e-mail to >>>> hobbit-unsubscribe at hswn.dk >>>> >>>> >>>> >>> >>> >>> To unsubscribe from the hobbit list, send an e-mail to >>> hobbit-unsubscribe at hswn.dk >>> >>> >>> >>> >> >> Gruss >> >> Martin Flemming >> >> >> ______________________________________________________ >> Martin Flemming >> DESY / IT office : Building 2b / 008a >> Notkestr. 85 phone : 040 - 8998 - 4667 >> 22603 Hamburg mail : martin.flemming at desy.de >> ______________________________________________________ >> >> To unsubscribe from the hobbit list, send an e-mail to >> hobbit-unsubscribe at hswn.dk >> >> > > Gruss Martin Flemming ______________________________________________________ Martin Flemming DESY / IT office : Building 2b / 008a Notkestr. 85 phone : 040 - 8998 - 4667 22603 Hamburg mail : martin.flemming at desy.de ______________________________________________________ --===============6261444892194746220==-- From rdeal@jcvi.org Wed Jun 24 08:17:59 2026 From: rdeal@jcvi.org To: xymon@xymon.com Subject: [hobbit] Sun Grid Engine monitoring Date: Wed, 15 Oct 2008 17:03:07 -0400 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7492909135392965717==" --===============7492909135392965717== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable I just put an upgrade to the test on deadcat yesterday to version 0.3e... Richard > From: Martin Flemming > Reply-To: > Date: Wed, 15 Oct 2008 22:58:46 +0200 (CEST) > To: > Subject: Re: [hobbit] Sun Grid Engine monitoring >=20 >=20 > Thanks, i will test it and give feedback .. :-) >=20 > .. unfortunatley, i'm short in time for testing very short :-( >=20 > cheers, > martin >=20 > On Fri, 10 Oct 2008, rdeal wrote: >=20 >> We have several queues, primary are default, fast, medium. >>=20 >> The config file is pretty simple: >> Unscaled[_]: y >>=20 >> Target[sge_1]: `/local/packages/IT/MRTG/bin/qgraph.sh both` >> MaxBytes[sge_1]: 625 >> AbsMax[sge_1]: 100000000 >> ShortLegend[sge_1]: Jobs >> YLegend[sge_1]: jobs >> Options[sge_1]: absolute, gauge, noinfo, nopercent, growright, integer, >> unknaszero >> Title[sge_1]: Current Jobs on JCVI GRID >> Legend1[sge_1]: Running >> Legend2[sge_1]: Queued >> Legend3[sge_1]: Peak running >> Legend4[sge_1]: Peak queued >> LegendI[sge_1]: running >> LegendO[sge_1]: queued >> Colours[sge_1]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >> PageTop[sge_1]:

Current Jobs on JCVI GRID

>> >> >> >>
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs running on the >> JCVI SGE GRID
>> routers.cgi*Options[sge_1]: noabsmax nodetail >>=20 >> Target[sge_7]: `/local/packages/IT/MRTG/bin/qgraph.sh medium` >> MaxBytes[sge_7]: 354 >> AbsMax[sge_7]: 100000000 >> ShortLegend[sge_7]: Jobs >> YLegend[sge_7]: jobs >> Options[sge_7]: absolute, gauge, noinfo, nopercent, growright, integer, >> unknaszero >> Title[sge_7]: Current Jobs in medium.q and fast.q >> Legend1[sge_7]: Medium >> Legend2[sge_7]: Fast >> Legend3[sge_7]: Peak medium >> Legend4[sge_7]: Peak fast >> LegendI[sge_7]: medium >> LegendO[sge_7]: fast >> Colours[sge_7]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >> PageTop[sge_7]:

Current Jobs on JCVI GRID

>> >> >> >>
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs in the fast.q and >> medium.q
>> routers.cgi*Options[sge_7]: noabsmax nodetail >>=20 >> The script is rather simple: >>=20 >> #!/bin/sh >> # >>=20 >> case "$1" in >> test ) >> echo 50 >> echo 20 ;; >> total ) >> echo $T >> echo 0 ;; >> running ) >> echo $R >> echo 0 ;; >> msc ) >> T=3D`/usr/local/bin/qstat -q fast.msc.q -s r | /usr/bin/tail +3 | >> /usr/bin/wc -l` >> R=3D`/usr/local/bin/qstat -q msc.q -s r | /usr/bin/tail +3 | /usr/bin/wc >> -l` >> echo $R >> echo $T ;; >> medium ) >> T=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/= wc >> -l` >> R=3D`/usr/local/bin/qstat -q medium.q -s r | /usr/bin/tail +3 | >> /usr/bin/wc -l` >> echo $R >> echo $T ;; >> fast ) >> T=3D`/usr/local/bin/qstat -q default.q -s r | /usr/bin/tail +3 | >> /usr/bin/wc -l` >> R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/= wc >> -l` >> echo $R >> echo $T ;; >> desktop ) >> T=3D`/usr/local/bin/qstat -q desktop.q -s r | /usr/bin/tail +3 | >> /usr/bin/wc -l` >> R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin/= wc >> -l` >> echo $R >> echo $T ;; >> jtc ) >> T=3D`ssh wasp "use sgejcvi; qstat -g dt" | /usr/bin/tail +3 | /usr/bin/= wc >> -l` >> R=3D`ssh wasp "use sgejcvi; qstat -s r" | /usr/bin/tail +3 | /usr/bin/wc >> -l` >> echo $R >> echo $T ;; >> * | both ) >> T=3D`/usr/local/bin/qstat -g dt | /usr/bin/tail +3 | /usr/bin/wc -l` >> R=3D`/usr/local/bin/qstat -s r | /usr/bin/tail +3 | /usr/bin/wc -l` >> echo $R >> echo $T ;; >> esac >>=20 >> echo foo >> echo SGE >>=20 >>=20 >> The two graphs configured above: >>=20 >>=20 >>=20 >>> From: Martin Flemming >>> Reply-To: >>> Date: Fri, 10 Oct 2008 11:46:29 +0200 (CEST) >>> To: >>> Subject: Re: [hobbit] Sun Grid Engine monitoring >>>=20 >>>=20 >>> Hmm, i didn't run mrtg ... >>>=20 >>> How can i do it for sge ? >>>=20 >>> .. i want to graph e.g jobs in the queue for each node, project or queue = .. >>>=20 >>> ... everything i can do :-) >>>=20 >>> Or is it maybe possible to create graphs with the data of sge.sh script ? >>>=20 >>> thanks & cheers >>>=20 >>> martin >>>=20 >>> On Fri, 10 Oct 2008, michael nemeth wrote: >>>=20 >>>> Ok! well I run mrtg too so I can do that. Also I thought I try creating >>>> graphs for the sge.sh when >>>> it's implemented. I've done custom graphs before (clearcase). >>>> As I said I know little about SGE and the SGE support person knows little >>>> about hobbit. >>>>=20 >>>> Deal, Richard wrote: >>>>> What did you want to graph. I use mrtg to graph global she stats >>>>>=20 >>>>> Sent from a portable system with a small keyboard. >>>>>=20 >>>>> On Oct 9, 2008, at 5:51 PM, "Martin Flemming" >>>>> wrote: >>>>>=20 >>>>>>=20 >>>>>> Yep, i use it too ... but unfortunatley it's without trending graphs = .. >>>>>>=20 >>>>>> Got anybody a solution for it ? >>>>>>=20 >>>>>> .. i'm very interested :-) >>>>>>=20 >>>>>> cheers, >>>>>> martin >>>>>>=20 >>>>>> On Thu, 9 Oct 2008, rdeal wrote: >>>>>>=20 >>>>>>>=20 >>>>>>> It is called sge.sh >>>>>>> http://www.deadcat.net/viewfile.php?fileid=3D920 >>>>>>> And we run it under hobbit now. >>>>>>> Richard >>>>>>>=20 >>>>>>>> From: Galen Johnson >>>>>>>> Reply-To: >>>>>>>> Date: Thu, 9 Oct 2008 14:57:10 -0400 >>>>>>>> To: "hobbit at hswn.dk" >>>>>>>> Subject: RE: [hobbit] Sun Grid Engine monitoring >>>>>>>>=20 >>>>>>>> Where on deadcat? I can't find anything that mentions it (a search >>>>>>>> on grid on >>>>>>>> Deacat turns up something for the California power grid). Most >>>>>>>> monitors from >>>>>>>> deadcat should work with little to no modification for Hobbit. >>>>>>>> Also, Hobbit >>>>>>>> will monitor whatever you tell it so the sky's the limit there...or >>>>>>>> in this >>>>>>>> case the scripter is the limit. >>>>>>>>=20 >>>>>>>> =3DG=3D >>>>>>>>=20 >>>>>>>> -----Original Message----- >>>>>>>> From: michael nemeth [mailto:michael.nemeth at lmco.com] >>>>>>>> Sent: Thursday, October 09, 2008 2:46 PM >>>>>>>> To: hobbit at hswn.dk >>>>>>>> Subject: [hobbit] Sun Grid Engine monitoring >>>>>>>>=20 >>>>>>>> While I not been involved in the effort yet,we are about to bring as >>>>>>>> "farm" under Sun Grid Engine in to production. Anyone doing any >>>>>>>> monitoring like this? I saw a script on deadcat. I really know >>>>>>>> little about it but said Id check into what monitoring and metrics >>>>>>>> could >>>>>>>> be done by hobbit. >>>>>>>>=20 >>>>>>>>=20 >>>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>>=20 >>>>>>>>=20 >>>>>>>>=20 >>>>>>>>=20 >>>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>>=20 >>>>>>>>=20 >>>>>>>=20 >>>>>>>=20 >>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>=20 >>>>>>>=20 >>>>>>>=20 >>>>>>=20 >>>>>> Gruss >>>>>>=20 >>>>>> Martin Flemming >>>>>>=20 >>>>>>=20 >>>>>> ______________________________________________________ >>>>>> Martin Flemming >>>>>> DESY / IT office : Building 2b / 008a >>>>>> Notkestr. 85 phone : 040 - 8998 - 4667 >>>>>> 22603 Hamburg mail : martin.flemming at desy.de >>>>>> ______________________________________________________ >>>>>>=20 >>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>> hobbit-unsubscribe at hswn.dk >>>>>>=20 >>>>>>=20 >>>>>=20 >>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>> hobbit-unsubscribe at hswn.dk >>>>>=20 >>>>>=20 >>>>>=20 >>>>=20 >>>>=20 >>>> To unsubscribe from the hobbit list, send an e-mail to >>>> hobbit-unsubscribe at hswn.dk >>>>=20 >>>>=20 >>>>=20 >>>>=20 >>>=20 >>> Gruss >>>=20 >>> Martin Flemming >>>=20 >>>=20 >>> ______________________________________________________ >>> Martin Flemming >>> DESY / IT office : Building 2b / 008a >>> Notkestr. 85 phone : 040 - 8998 - 4667 >>> 22603 Hamburg mail : martin.flemming at desy.de >>> ______________________________________________________ >>>=20 >>> To unsubscribe from the hobbit list, send an e-mail to >>> hobbit-unsubscribe at hswn.dk >>>=20 >>>=20 >>=20 >>=20 >=20 > Gruss >=20 > Martin Flemming >=20 >=20 > ______________________________________________________ > Martin Flemming > DESY / IT office : Building 2b / 008a > Notkestr. 85 phone : 040 - 8998 - 4667 > 22603 Hamburg mail : martin.flemming at desy.de > ______________________________________________________ >=20 > To unsubscribe from the hobbit list, send an e-mail to > hobbit-unsubscribe at hswn.dk >=20 >=20 --===============7492909135392965717==-- From martin.flemming@desy.de Wed Jun 24 08:17:59 2026 From: martin.flemming@desy.de To: xymon@xymon.com Subject: [hobbit] Sun Grid Engine monitoring Date: Thu, 16 Oct 2008 09:01:18 +0200 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5682690735067826585==" --===============5682690735067826585== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Nice, that will be easier and quicker to test it, Thanks ! cheers, martin On Wed, 15 Oct 2008, rdeal wrote: > I just put an upgrade to the test on deadcat yesterday to version 0.3e... > Richard > > >> From: Martin Flemming >> Reply-To: >> Date: Wed, 15 Oct 2008 22:58:46 +0200 (CEST) >> To: >> Subject: Re: [hobbit] Sun Grid Engine monitoring >> >> >> Thanks, i will test it and give feedback .. :-) >> >> .. unfortunatley, i'm short in time for testing very short :-( >> >> cheers, >> martin >> >> On Fri, 10 Oct 2008, rdeal wrote: >> >>> We have several queues, primary are default, fast, medium. >>> >>> The config file is pretty simple: >>> Unscaled[_]: y >>> >>> Target[sge_1]: `/local/packages/IT/MRTG/bin/qgraph.sh both` >>> MaxBytes[sge_1]: 625 >>> AbsMax[sge_1]: 100000000 >>> ShortLegend[sge_1]: Jobs >>> YLegend[sge_1]: jobs >>> Options[sge_1]: absolute, gauge, noinfo, nopercent, growright, integer, >>> unknaszero >>> Title[sge_1]: Current Jobs on JCVI GRID >>> Legend1[sge_1]: Running >>> Legend2[sge_1]: Queued >>> Legend3[sge_1]: Peak running >>> Legend4[sge_1]: Peak queued >>> LegendI[sge_1]: running >>> LegendO[sge_1]: queued >>> Colours[sge_1]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >>> PageTop[sge_1]:

Current Jobs on JCVI GRID

>>> >>> >>> >>>
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs running on the >>> JCVI SGE GRID
>>> routers.cgi*Options[sge_1]: noabsmax nodetail >>> >>> Target[sge_7]: `/local/packages/IT/MRTG/bin/qgraph.sh medium` >>> MaxBytes[sge_7]: 354 >>> AbsMax[sge_7]: 100000000 >>> ShortLegend[sge_7]: Jobs >>> YLegend[sge_7]: jobs >>> Options[sge_7]: absolute, gauge, noinfo, nopercent, growright, integer, >>> unknaszero >>> Title[sge_7]: Current Jobs in medium.q and fast.q >>> Legend1[sge_7]: Medium >>> Legend2[sge_7]: Fast >>> Legend3[sge_7]: Peak medium >>> Legend4[sge_7]: Peak fast >>> LegendI[sge_7]: medium >>> LegendO[sge_7]: fast >>> Colours[sge_7]: GREEN#00eb0c,BLUE#0000ff,GRAY#AAAAAA,VIOLET#ff00ff >>> PageTop[sge_7]:

Current Jobs on JCVI GRID

>>> >>> >>> >>>
Maintainer: rdeal at tigr.org
Description:Number of current SGE Jobs in the fast.q a= nd >>> medium.q
>>> routers.cgi*Options[sge_7]: noabsmax nodetail >>> >>> The script is rather simple: >>> >>> #!/bin/sh >>> # >>> >>> case "$1" in >>> test ) >>> echo 50 >>> echo 20 ;; >>> total ) >>> echo $T >>> echo 0 ;; >>> running ) >>> echo $R >>> echo 0 ;; >>> msc ) >>> T=3D`/usr/local/bin/qstat -q fast.msc.q -s r | /usr/bin/tail +3 | >>> /usr/bin/wc -l` >>> R=3D`/usr/local/bin/qstat -q msc.q -s r | /usr/bin/tail +3 | /usr/bin/= wc >>> -l` >>> echo $R >>> echo $T ;; >>> medium ) >>> T=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin= /wc >>> -l` >>> R=3D`/usr/local/bin/qstat -q medium.q -s r | /usr/bin/tail +3 | >>> /usr/bin/wc -l` >>> echo $R >>> echo $T ;; >>> fast ) >>> T=3D`/usr/local/bin/qstat -q default.q -s r | /usr/bin/tail +3 | >>> /usr/bin/wc -l` >>> R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin= /wc >>> -l` >>> echo $R >>> echo $T ;; >>> desktop ) >>> T=3D`/usr/local/bin/qstat -q desktop.q -s r | /usr/bin/tail +3 | >>> /usr/bin/wc -l` >>> R=3D`/usr/local/bin/qstat -q fast.q -s r | /usr/bin/tail +3 | /usr/bin= /wc >>> -l` >>> echo $R >>> echo $T ;; >>> jtc ) >>> T=3D`ssh wasp "use sgejcvi; qstat -g dt" | /usr/bin/tail +3 | /usr/bin= /wc >>> -l` >>> R=3D`ssh wasp "use sgejcvi; qstat -s r" | /usr/bin/tail +3 | /usr/bin/= wc >>> -l` >>> echo $R >>> echo $T ;; >>> * | both ) >>> T=3D`/usr/local/bin/qstat -g dt | /usr/bin/tail +3 | /usr/bin/wc -l` >>> R=3D`/usr/local/bin/qstat -s r | /usr/bin/tail +3 | /usr/bin/wc -l` >>> echo $R >>> echo $T ;; >>> esac >>> >>> echo foo >>> echo SGE >>> >>> >>> The two graphs configured above: >>> >>> >>> >>>> From: Martin Flemming >>>> Reply-To: >>>> Date: Fri, 10 Oct 2008 11:46:29 +0200 (CEST) >>>> To: >>>> Subject: Re: [hobbit] Sun Grid Engine monitoring >>>> >>>> >>>> Hmm, i didn't run mrtg ... >>>> >>>> How can i do it for sge ? >>>> >>>> .. i want to graph e.g jobs in the queue for each node, project or queue= .. >>>> >>>> ... everything i can do :-) >>>> >>>> Or is it maybe possible to create graphs with the data of sge.sh script ? >>>> >>>> thanks & cheers >>>> >>>> martin >>>> >>>> On Fri, 10 Oct 2008, michael nemeth wrote: >>>> >>>>> Ok! well I run mrtg too so I can do that. Also I thought I try creating >>>>> graphs for the sge.sh when >>>>> it's implemented. I've done custom graphs before (clearcase). >>>>> As I said I know little about SGE and the SGE support person knows litt= le >>>>> about hobbit. >>>>> >>>>> Deal, Richard wrote: >>>>>> What did you want to graph. I use mrtg to graph global she stats >>>>>> >>>>>> Sent from a portable system with a small keyboard. >>>>>> >>>>>> On Oct 9, 2008, at 5:51 PM, "Martin Flemming" >>>>>> wrote: >>>>>> >>>>>>> >>>>>>> Yep, i use it too ... but unfortunatley it's without trending graphs= .. >>>>>>> >>>>>>> Got anybody a solution for it ? >>>>>>> >>>>>>> .. i'm very interested :-) >>>>>>> >>>>>>> cheers, >>>>>>> martin >>>>>>> >>>>>>> On Thu, 9 Oct 2008, rdeal wrote: >>>>>>> >>>>>>>> >>>>>>>> It is called sge.sh >>>>>>>> http://www.deadcat.net/viewfile.php?fileid=3D920 >>>>>>>> And we run it under hobbit now. >>>>>>>> Richard >>>>>>>> >>>>>>>>> From: Galen Johnson >>>>>>>>> Reply-To: >>>>>>>>> Date: Thu, 9 Oct 2008 14:57:10 -0400 >>>>>>>>> To: "hobbit at hswn.dk" >>>>>>>>> Subject: RE: [hobbit] Sun Grid Engine monitoring >>>>>>>>> >>>>>>>>> Where on deadcat? I can't find anything that mentions it (a search >>>>>>>>> on grid on >>>>>>>>> Deacat turns up something for the California power grid). Most >>>>>>>>> monitors from >>>>>>>>> deadcat should work with little to no modification for Hobbit. >>>>>>>>> Also, Hobbit >>>>>>>>> will monitor whatever you tell it so the sky's the limit there...or >>>>>>>>> in this >>>>>>>>> case the scripter is the limit. >>>>>>>>> >>>>>>>>> =3DG=3D >>>>>>>>> >>>>>>>>> -----Original Message----- >>>>>>>>> From: michael nemeth [mailto:michael.nemeth at lmco.com] >>>>>>>>> Sent: Thursday, October 09, 2008 2:46 PM >>>>>>>>> To: hobbit at hswn.dk >>>>>>>>> Subject: [hobbit] Sun Grid Engine monitoring >>>>>>>>> >>>>>>>>> While I not been involved in the effort yet,we are about to bring = as >>>>>>>>> "farm" under Sun Grid Engine in to production. Anyone doing any >>>>>>>>> monitoring like this? I saw a script on deadcat. I really know >>>>>>>>> little about it but said Id check into what monitoring and metrics >>>>>>>>> could >>>>>>>>> be done by hobbit. >>>>>>>>> >>>>>>>>> >>>>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> Gruss >>>>>>> >>>>>>> Martin Flemming >>>>>>> >>>>>>> >>>>>>> ______________________________________________________ >>>>>>> Martin Flemming >>>>>>> DESY / IT office : Building 2b / 008a >>>>>>> Notkestr. 85 phone : 040 - 8998 - 4667 >>>>>>> 22603 Hamburg mail : martin.flemming at desy.de >>>>>>> ______________________________________________________ >>>>>>> >>>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>>> hobbit-unsubscribe at hswn.dk >>>>>>> >>>>>>> >>>>>> >>>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>>> hobbit-unsubscribe at hswn.dk >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>>> To unsubscribe from the hobbit list, send an e-mail to >>>>> hobbit-unsubscribe at hswn.dk >>>>> >>>>> >>>>> >>>>> >>>> >>>> Gruss >>>> >>>> Martin Flemming >>>> >>>> >>>> ______________________________________________________ >>>> Martin Flemming >>>> DESY / IT office : Building 2b / 008a >>>> Notkestr. 85 phone : 040 - 8998 - 4667 >>>> 22603 Hamburg mail : martin.flemming at desy.de >>>> ______________________________________________________ >>>> >>>> To unsubscribe from the hobbit list, send an e-mail to >>>> hobbit-unsubscribe at hswn.dk >>>> >>>> >>> >>> >> >> Gruss >> >> Martin Flemming >> >> >> ______________________________________________________ >> Martin Flemming >> DESY / IT office : Building 2b / 008a >> Notkestr. 85 phone : 040 - 8998 - 4667 >> 22603 Hamburg mail : martin.flemming at desy.de >> ______________________________________________________ >> >> To unsubscribe from the hobbit list, send an e-mail to >> hobbit-unsubscribe at hswn.dk >> >> > > > To unsubscribe from the hobbit list, send an e-mail to > hobbit-unsubscribe at hswn.dk > > > Gruss Martin Flemming ______________________________________________________ Martin Flemming DESY / IT office : Building 2b / 008a Notkestr. 85 phone : 040 - 8998 - 4667 22603 Hamburg mail : martin.flemming at desy.de ______________________________________________________ --===============5682690735067826585==-- From johan@matrix-data.co.uk Wed Jun 24 08:17:59 2026 From: johan@matrix-data.co.uk To: xymon@xymon.com Subject: SQL Server monitoring Date: Thu, 16 Oct 2008 09:01:34 +0100 Message-ID: <3D48C842BD295548968848572119008C2271FC@MDMS01.matrix-data.local> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1868540131606648411==" --===============1868540131606648411== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Does anyone monitor MS SQL Server using hobbit, and could you maybe point me into the right direction? The scripts on deadcat.net only appears to work with SQL 2000. Thanks. --===============1868540131606648411==--