You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(34) |
Feb
(22) |
Mar
(2) |
Apr
(4) |
May
|
Jun
(2) |
Jul
(2) |
Aug
|
Sep
(2) |
Oct
(4) |
Nov
(2) |
Dec
(22) |
2009 |
Jan
(20) |
Feb
(7) |
Mar
(5) |
Apr
(7) |
May
(10) |
Jun
|
Jul
(2) |
Aug
|
Sep
(21) |
Oct
(6) |
Nov
(10) |
Dec
(6) |
2010 |
Jan
(1) |
Feb
(4) |
Mar
(14) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(5) |
Dec
(3) |
2011 |
Jan
(35) |
Feb
(1) |
Mar
(12) |
Apr
(9) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(3) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(3) |
2013 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <buc...@us...> - 2008-02-01 14:26:25
|
Revision: 63 http://devmon.svn.sourceforge.net/devmon/?rev=63&view=rev Author: buchanmilne Date: 2008-02-01 06:26:16 -0800 (Fri, 01 Feb 2008) Log Message: ----------- Dont include rrd lines if we encounter a text value (but log when debugging) Only log undefined values when debugging Modified Paths: -------------- trunk/modules/dm_tests.pm Modified: trunk/modules/dm_tests.pm =================================================================== --- trunk/modules/dm_tests.pm 2008-02-01 05:56:24 UTC (rev 62) +++ trunk/modules/dm_tests.pm 2008-02-01 14:26:16 UTC (rev 63) @@ -1800,7 +1800,7 @@ my $val = $oid_h->{'val'}{$leaf}; my $color = $oid_h->{'color'}{$leaf}; if (!defined $val) { - do_log("Undefined value for $oid in test $test on $device, ignoring row for $pri_val"); + do_log("Undefined value for $oid in test $test on $device, ignoring row for $pri_val") if $g{'debug'}; next T_LEAF; } @@ -1940,6 +1940,7 @@ for my $name (keys %rrd) { my $set_data = ''; + my $temp_data = ''; my $dir = $rrd{$name}{'dir'}; my $pri = $rrd{$name}{'pri'}; my $do_max = $rrd{$name}{'do_max'}; @@ -1953,12 +1954,18 @@ for my $leaf (@{$rrd{$name}{'leaves'}}) { my $pri_val = $oids->{$pri}{'val'}{$leaf}; - $set_data .= "$pri_val "; + $temp_data = ''; for my $oid (@{$rrd{$name}{'oids'}}) { my $val = $oids->{$oid}{'val'}{$leaf}; $val = ($val =~ /^[+-]?\d+(\.\d+)?/) ? int $val : 'U'; - $set_data .= "$val:"; + $temp_data .= "$val:"; } + if ($temp_data =~ /U:/) { + do_log("Text values in data for rrd repeater, dropping rrd for $pri_val") if $g{'debug'};; + next; + } + $set_data .= "$pri_val "; + $set_data .= "$temp_data"; $set_data =~ s/:$/\n/; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-02-01 05:56:28
|
Revision: 62 http://devmon.svn.sourceforge.net/devmon/?rev=62&view=rev Author: buchanmilne Date: 2008-01-31 21:56:24 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Don't do format conversion on the data we get from devmon, thus we don't even need the previous fix (or fill dsval from the ds array). Modified Paths: -------------- trunk/extras/do_devmon.c Modified: trunk/extras/do_devmon.c =================================================================== --- trunk/extras/do_devmon.c 2008-02-01 05:53:57 UTC (rev 61) +++ trunk/extras/do_devmon.c 2008-02-01 05:56:24 UTC (rev 62) @@ -33,7 +33,6 @@ int pused = -1; int wanteddisk = 1; long long aused = 0; - int ds[MAXCOLS]; char *dsval; int i; @@ -80,21 +79,16 @@ */ ifname = xstrdup(columns[0]); dsval = strtok(columns[1],":"); - ds[0] = atoi(dsval); + sprintf(rrdvalues, "%d:", (int)tstamp); + strcat(rrdvalues,dsval); for (i=1;i < numds;i++) { dsval = strtok(NULL,":"); - ds[i] = atoi(dsval); + strcat(rrdvalues,":"); + strcat(rrdvalues,dsval); } - dsval = calloc(numds+1,21); /* File names in the format if_load.eth0.0.rrd */ snprintf(rrdfn, sizeof(rrdfn)-1, "%s.%s.rrd", testname, ifname); rrdfn[sizeof(rrdfn)-1] = '\0'; - sprintf(rrdvalues, "%d", (int)tstamp); - for (i=0;i<numds;i++) { - sprintf(dsval,":%d",ds[i]); - strcat(rrdvalues,dsval); - } - free(dsval); dbgprintf("Sending from devmon to RRD for %s %s: %s\n",testname,ifname,rrdvalues); create_and_update_rrd(hostname, rrdfn, devmon_params, devmon_tpl); if (ifname) { xfree(ifname); ifname = NULL; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-02-01 05:53:59
|
Revision: 61 http://devmon.svn.sourceforge.net/devmon/?rev=61&view=rev Author: buchanmilne Date: 2008-01-31 21:53:57 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Allocate dsval before printing values to it Modified Paths: -------------- trunk/extras/do_devmon.c Modified: trunk/extras/do_devmon.c =================================================================== --- trunk/extras/do_devmon.c 2008-01-31 14:01:10 UTC (rev 60) +++ trunk/extras/do_devmon.c 2008-02-01 05:53:57 UTC (rev 61) @@ -85,6 +85,7 @@ dsval = strtok(NULL,":"); ds[i] = atoi(dsval); } + dsval = calloc(numds+1,21); /* File names in the format if_load.eth0.0.rrd */ snprintf(rrdfn, sizeof(rrdfn)-1, "%s.%s.rrd", testname, ifname); rrdfn[sizeof(rrdfn)-1] = '\0'; @@ -93,6 +94,7 @@ sprintf(dsval,":%d",ds[i]); strcat(rrdvalues,dsval); } + free(dsval); dbgprintf("Sending from devmon to RRD for %s %s: %s\n",testname,ifname,rrdvalues); create_and_update_rrd(hostname, rrdfn, devmon_params, devmon_tpl); if (ifname) { xfree(ifname); ifname = NULL; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-31 14:01:13
|
Revision: 60 http://devmon.svn.sourceforge.net/devmon/?rev=60&view=rev Author: buchanmilne Date: 2008-01-31 06:01:10 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Improve fix for spurious graphs in htmllog.c Modified Paths: -------------- trunk/extras/hobbit-4.2.0-devmon.patch Modified: trunk/extras/hobbit-4.2.0-devmon.patch =================================================================== --- trunk/extras/hobbit-4.2.0-devmon.patch 2008-01-31 10:59:43 UTC (rev 59) +++ trunk/extras/hobbit-4.2.0-devmon.patch 2008-01-31 14:01:10 UTC (rev 60) @@ -25,7 +25,7 @@ /* We found something that is not blank, so one more line */ if (!netwarediskreport) linecount++; } -+ if ((p+10) && *p == '<' ) { ++ if (strlen(p) > 10 && *p == '<' ) { + /* Check if this is a devmon RRD header, reset the linecount to -2, as we will see a DS line and a Devmon banner*/ + if(!strncmp(p, "<!--DEVMON",10)) + linecount = -2; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-31 10:59:46
|
Revision: 59 http://devmon.svn.sourceforge.net/devmon/?rev=59&view=rev Author: buchanmilne Date: 2008-01-31 02:59:43 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Leaner and more correct (according to DS tags generated by devmon) rrd collection Drop duplication of NCV utility for "connects" test Modified Paths: -------------- trunk/extras/devmon-rrd.pl Modified: trunk/extras/devmon-rrd.pl =================================================================== --- trunk/extras/devmon-rrd.pl 2008-01-31 10:57:02 UTC (rev 58) +++ trunk/extras/devmon-rrd.pl 2008-01-31 10:59:43 UTC (rev 59) @@ -1,86 +1,49 @@ -#!/usr/bin/perl -# By Francois Lacroix -# Example to get if_load,... data for graphing. +#!/usr/bin/perl -w +# See http://me.kaya.fr/howto_devmon_hobbit.txt +use strict; -################################################################################### -## make parse the data in order to create a rrd file (one par interfaces), -## this is done via extra-rrd.pl script. -## In etc/hobbitlaunch.cfg -## [rrdstatus] -## ENVFILE /data/hobbit/server/etc/hobbitserver.cfg -## NEEDS hobbitd -## CMD hobbitd_channel --channel=status \ -## --log=$BBSERVERLOGS/rrd-status.log hobbitd_rrd \ -## --rrddir=$BBVAR/rrd \ -## --extra-script=$BBHOME/ext/extra-rrd.pl \ -## --extra-tests=if_load,connects - -## Now tell hobbit how to show the graph form the rrd. -## Modify etc/hobbitgraph.cfg -## [if_load] -## FNPATTERN if_load(.*).rrd -## TITLE Network Traffic -## YAXIS Bits/second -## DEF:in@RRDIDX@=@RRDFN@:in:AVERAGE -## CDEF:inbytes@RRDIDX@=in@RRDIDX@,8,* -## DEF:out@RRDIDX@=@RRDFN@:out:AVERAGE -## CDEF:outbytes@RRDIDX@=out@RRDIDX@,8,* -## LINE1:inbytes@RRDIDX@#@COLOR@:@RRDPARAM@ In -## GPRINT:inbytes@RRDIDX@:LAST: %8.2lf %s (cur) -## GPRINT:inbytes@RRDIDX@:MAX: %8.2lf %s (max) -## GPRINT:inbytes@RRDIDX@:MIN: %8.2lf %s (min) -## GPRINT:inbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n -## LINE1:outbytes@RRDIDX@#@COLOR@:@RRDPARAM@ Out -## GPRINT:outbytes@RRDIDX@:LAST: %8.2lf %s (cur) -## GPRINT:outbytes@RRDIDX@:MAX: %8.2lf %s (max) -## GPRINT:outbytes@RRDIDX@:MIN: %8.2lf %s (avg) -## GPRINT:outbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n -#################################################################################### - # Input parameters: Hostname, testname (column), and messagefile -$HOSTNAME=$ARGV[0]; ; -$TESTNAME=$ARGV[1]; ; -$FNAME=$ARGV[2]; ; +my $HOSTNAME=$ARGV[0]; +my $TESTNAME=$ARGV[1]; +my $FNAME=$ARGV[2]; # Read the entire files open (FILEHANDLE,$FNAME) || die ("cant read file\n"); -@input = <FILEHANDLE>; +my @input = <FILEHANDLE>; close (FILEHANDLE); +my $inrrd=0; +my @ds; +my ($line,$test); -if ( $TESTNAME eq "if_load" ) { +#if ( $TESTNAME eq "if_load" || $TESTNAME eq "temperature" ) { - # Analyze the message we got + # Devmon with the TABLE:rrd(DS:var1:rrdtype; DS:var2:rrdtype2;...) + # option in the messages file creates output like this: + # <!--DEVMON RRD: testname 0 0 + # DS:ds0:GAUGE:600:0:U DS:ds1:GAUGE:600:0:U + # 1 35:62 + # 2 38:80 + # --> foreach $line (@input) { - if ($line =~ /^(\w+) (\d+):(\d+)$/ ) { - - # The RRD dataset definitions - print "DS:in:DERIVE:600:0:U\n"; - print "DS:out:DERIVE:600:0:U\n"; - - # The filename - print "if_load_$1.rrd\n"; - - # The data - print "$2:$3\n"; - } + chomp $line; + if ($line =~ /^<!--DEVMON RRD: (\w+).*/) { + $test=$1; + $inrrd=1; + next;} + if ($inrrd == 1) { + if ($line =~ /^-->/) { + $inrrd=0; + next; + } + if ($line =~ /^DS/) { + @ds = split / /, $line; + foreach (@ds) {print "$_\n";}; + next; + } + if ($line =~ /^(\S+)\s*(\d+)(.*)$/) { + print "${test}.${1}.rrd\n"; + print "${2}${3}\n"; + } + } } -} - -if ( $TESTNAME eq "connects") { - - # Analyze the message we got - foreach $line (@input) { - if ($line =~ /^<!-- DEVMON to RRD connections: (\d+)$/ ) { - #<!-- DEVMON to RRD active connections: 86 - # The RRD dataset definitions - print "DS:connection:GAUGE:600:0:U\n"; - - # The filename - print "$TESTNAME.rrd\n"; - - # The data - print "$1\n"; - } - } -} - +#} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-31 10:57:07
|
Revision: 58 http://devmon.svn.sourceforge.net/devmon/?rev=58&view=rev Author: buchanmilne Date: 2008-01-31 02:57:02 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Rename and move the perl rrd collector Added Paths: ----------- trunk/extras/devmon-rrd.pl Removed Paths: ------------- trunk/docs/extra-rrd.pl Deleted: trunk/docs/extra-rrd.pl =================================================================== --- trunk/docs/extra-rrd.pl 2008-01-31 10:17:10 UTC (rev 57) +++ trunk/docs/extra-rrd.pl 2008-01-31 10:57:02 UTC (rev 58) @@ -1,86 +0,0 @@ -#!/usr/bin/perl -# By Francois Lacroix -# Example to get if_load,... data for graphing. - -################################################################################### -## make parse the data in order to create a rrd file (one par interfaces), -## this is done via extra-rrd.pl script. -## In etc/hobbitlaunch.cfg -## [rrdstatus] -## ENVFILE /data/hobbit/server/etc/hobbitserver.cfg -## NEEDS hobbitd -## CMD hobbitd_channel --channel=status \ -## --log=$BBSERVERLOGS/rrd-status.log hobbitd_rrd \ -## --rrddir=$BBVAR/rrd \ -## --extra-script=$BBHOME/ext/extra-rrd.pl \ -## --extra-tests=if_load,connects - -## Now tell hobbit how to show the graph form the rrd. -## Modify etc/hobbitgraph.cfg -## [if_load] -## FNPATTERN if_load(.*).rrd -## TITLE Network Traffic -## YAXIS Bits/second -## DEF:in@RRDIDX@=@RRDFN@:in:AVERAGE -## CDEF:inbytes@RRDIDX@=in@RRDIDX@,8,* -## DEF:out@RRDIDX@=@RRDFN@:out:AVERAGE -## CDEF:outbytes@RRDIDX@=out@RRDIDX@,8,* -## LINE1:inbytes@RRDIDX@#@COLOR@:@RRDPARAM@ In -## GPRINT:inbytes@RRDIDX@:LAST: %8.2lf %s (cur) -## GPRINT:inbytes@RRDIDX@:MAX: %8.2lf %s (max) -## GPRINT:inbytes@RRDIDX@:MIN: %8.2lf %s (min) -## GPRINT:inbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n -## LINE1:outbytes@RRDIDX@#@COLOR@:@RRDPARAM@ Out -## GPRINT:outbytes@RRDIDX@:LAST: %8.2lf %s (cur) -## GPRINT:outbytes@RRDIDX@:MAX: %8.2lf %s (max) -## GPRINT:outbytes@RRDIDX@:MIN: %8.2lf %s (avg) -## GPRINT:outbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n -#################################################################################### - -# Input parameters: Hostname, testname (column), and messagefile -$HOSTNAME=$ARGV[0]; ; -$TESTNAME=$ARGV[1]; ; -$FNAME=$ARGV[2]; ; - -# Read the entire files -open (FILEHANDLE,$FNAME) || die ("cant read file\n"); -@input = <FILEHANDLE>; -close (FILEHANDLE); - -if ( $TESTNAME eq "if_load" ) { - - # Analyze the message we got - foreach $line (@input) { - if ($line =~ /^(\w+) (\d+):(\d+)$/ ) { - - # The RRD dataset definitions - print "DS:in:DERIVE:600:0:U\n"; - print "DS:out:DERIVE:600:0:U\n"; - - # The filename - print "if_load_$1.rrd\n"; - - # The data - print "$2:$3\n"; - } - } -} - -if ( $TESTNAME eq "connects") { - - # Analyze the message we got - foreach $line (@input) { - if ($line =~ /^<!-- DEVMON to RRD connections: (\d+)$/ ) { - #<!-- DEVMON to RRD active connections: 86 - # The RRD dataset definitions - print "DS:connection:GAUGE:600:0:U\n"; - - # The filename - print "$TESTNAME.rrd\n"; - - # The data - print "$1\n"; - } - } -} - Copied: trunk/extras/devmon-rrd.pl (from rev 55, trunk/docs/extra-rrd.pl) =================================================================== --- trunk/extras/devmon-rrd.pl (rev 0) +++ trunk/extras/devmon-rrd.pl 2008-01-31 10:57:02 UTC (rev 58) @@ -0,0 +1,86 @@ +#!/usr/bin/perl +# By Francois Lacroix +# Example to get if_load,... data for graphing. + +################################################################################### +## make parse the data in order to create a rrd file (one par interfaces), +## this is done via extra-rrd.pl script. +## In etc/hobbitlaunch.cfg +## [rrdstatus] +## ENVFILE /data/hobbit/server/etc/hobbitserver.cfg +## NEEDS hobbitd +## CMD hobbitd_channel --channel=status \ +## --log=$BBSERVERLOGS/rrd-status.log hobbitd_rrd \ +## --rrddir=$BBVAR/rrd \ +## --extra-script=$BBHOME/ext/extra-rrd.pl \ +## --extra-tests=if_load,connects + +## Now tell hobbit how to show the graph form the rrd. +## Modify etc/hobbitgraph.cfg +## [if_load] +## FNPATTERN if_load(.*).rrd +## TITLE Network Traffic +## YAXIS Bits/second +## DEF:in@RRDIDX@=@RRDFN@:in:AVERAGE +## CDEF:inbytes@RRDIDX@=in@RRDIDX@,8,* +## DEF:out@RRDIDX@=@RRDFN@:out:AVERAGE +## CDEF:outbytes@RRDIDX@=out@RRDIDX@,8,* +## LINE1:inbytes@RRDIDX@#@COLOR@:@RRDPARAM@ In +## GPRINT:inbytes@RRDIDX@:LAST: %8.2lf %s (cur) +## GPRINT:inbytes@RRDIDX@:MAX: %8.2lf %s (max) +## GPRINT:inbytes@RRDIDX@:MIN: %8.2lf %s (min) +## GPRINT:inbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n +## LINE1:outbytes@RRDIDX@#@COLOR@:@RRDPARAM@ Out +## GPRINT:outbytes@RRDIDX@:LAST: %8.2lf %s (cur) +## GPRINT:outbytes@RRDIDX@:MAX: %8.2lf %s (max) +## GPRINT:outbytes@RRDIDX@:MIN: %8.2lf %s (avg) +## GPRINT:outbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n +#################################################################################### + +# Input parameters: Hostname, testname (column), and messagefile +$HOSTNAME=$ARGV[0]; ; +$TESTNAME=$ARGV[1]; ; +$FNAME=$ARGV[2]; ; + +# Read the entire files +open (FILEHANDLE,$FNAME) || die ("cant read file\n"); +@input = <FILEHANDLE>; +close (FILEHANDLE); + +if ( $TESTNAME eq "if_load" ) { + + # Analyze the message we got + foreach $line (@input) { + if ($line =~ /^(\w+) (\d+):(\d+)$/ ) { + + # The RRD dataset definitions + print "DS:in:DERIVE:600:0:U\n"; + print "DS:out:DERIVE:600:0:U\n"; + + # The filename + print "if_load_$1.rrd\n"; + + # The data + print "$2:$3\n"; + } + } +} + +if ( $TESTNAME eq "connects") { + + # Analyze the message we got + foreach $line (@input) { + if ($line =~ /^<!-- DEVMON to RRD connections: (\d+)$/ ) { + #<!-- DEVMON to RRD active connections: 86 + # The RRD dataset definitions + print "DS:connection:GAUGE:600:0:U\n"; + + # The filename + print "$TESTNAME.rrd\n"; + + # The data + print "$1\n"; + } + } +} + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:17:17
|
Revision: 57 http://devmon.svn.sourceforge.net/devmon/?rev=57&view=rev Author: kayaweed Date: 2008-01-31 02:17:10 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add memory tempalte inforamtion for cisco-6509 Added Paths: ----------- trunk/templates/cisco-6509/memory/ trunk/templates/cisco-6509/memory/exceptions trunk/templates/cisco-6509/memory/message trunk/templates/cisco-6509/memory/oids trunk/templates/cisco-6509/memory/thresholds trunk/templates/cisco-6509/memory/transforms Added: trunk/templates/cisco-6509/memory/exceptions =================================================================== Added: trunk/templates/cisco-6509/memory/message =================================================================== --- trunk/templates/cisco-6509/memory/message (rev 0) +++ trunk/templates/cisco-6509/memory/message 2008-01-31 10:17:10 UTC (rev 57) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-6509/memory/oids =================================================================== --- trunk/templates/cisco-6509/memory/oids (rev 0) +++ trunk/templates/cisco-6509/memory/oids 2008-01-31 10:17:10 UTC (rev 57) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-6509/memory/thresholds =================================================================== --- trunk/templates/cisco-6509/memory/thresholds (rev 0) +++ trunk/templates/cisco-6509/memory/thresholds 2008-01-31 10:17:10 UTC (rev 57) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-6509/memory/transforms =================================================================== --- trunk/templates/cisco-6509/memory/transforms (rev 0) +++ trunk/templates/cisco-6509/memory/transforms 2008-01-31 10:17:10 UTC (rev 57) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:15:35
|
Revision: 56 http://devmon.svn.sourceforge.net/devmon/?rev=56&view=rev Author: kayaweed Date: 2008-01-31 02:15:25 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add memory information for some cisco device Added Paths: ----------- trunk/templates/cisco-2970/serial/ trunk/templates/cisco-2970/serial/exceptions trunk/templates/cisco-2970/serial/message trunk/templates/cisco-2970/serial/oids trunk/templates/cisco-2970/serial/thresholds trunk/templates/cisco-2970/serial/transforms trunk/templates/cisco-3550/memory/ trunk/templates/cisco-3550/memory/exceptions trunk/templates/cisco-3550/memory/message trunk/templates/cisco-3550/memory/oids trunk/templates/cisco-3550/memory/thresholds trunk/templates/cisco-3550/memory/transforms trunk/templates/cisco-3750/memory/ trunk/templates/cisco-3750/memory/exceptions trunk/templates/cisco-3750/memory/message trunk/templates/cisco-3750/memory/oids trunk/templates/cisco-3750/memory/thresholds trunk/templates/cisco-3750/memory/transforms trunk/templates/cisco-7206/memory/ trunk/templates/cisco-7206/memory/exceptions trunk/templates/cisco-7206/memory/message trunk/templates/cisco-7206/memory/oids trunk/templates/cisco-7206/memory/thresholds trunk/templates/cisco-7206/memory/transforms Removed Paths: ------------- trunk/templates/cisco-6509/serial/<Up> Added: trunk/templates/cisco-2970/serial/exceptions =================================================================== --- trunk/templates/cisco-2970/serial/exceptions (rev 0) +++ trunk/templates/cisco-2970/serial/exceptions 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,2 @@ +PhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|1000BaseSX +PhysicalDescr : alarm : VinZisTheMan Added: trunk/templates/cisco-2970/serial/message =================================================================== --- trunk/templates/cisco-2970/serial/message (rev 0) +++ trunk/templates/cisco-2970/serial/message 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,6 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module Status +{PhysicalDescr} | {PhysicalHardwareRev} | {PhysicalFirmwareRev} | {PhysicalSoftwareRev} | {PhysicalSerialNum} | {PhysicalModelName} | {moduleStatus_T} + Added: trunk/templates/cisco-2970/serial/oids =================================================================== --- trunk/templates/cisco-2970/serial/oids (rev 0) +++ trunk/templates/cisco-2970/serial/oids 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,8 @@ +PhysicalDescr : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +PhysicalHardwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.18 : branch +PhysicalFirmwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.19 : branch +PhysicalSoftwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.20 : branch +PhysicalSerialNum : .1.3.6.1.4.1.9.5.1.3.1.1.26 : branch +PhysicalModelName : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +moduleStatus : .1.3.6.1.4.1.9.5.1.3.1.1.10 : branch + Added: trunk/templates/cisco-2970/serial/thresholds =================================================================== Added: trunk/templates/cisco-2970/serial/transforms =================================================================== --- trunk/templates/cisco-2970/serial/transforms (rev 0) +++ trunk/templates/cisco-2970/serial/transforms 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,2 @@ +moduleStatus_T : SWITCH : {moduleStatus} 1 = other, 2 = ok, 3 = minorFault, 4 = majorFault + Added: trunk/templates/cisco-3550/memory/exceptions =================================================================== Added: trunk/templates/cisco-3550/memory/message =================================================================== --- trunk/templates/cisco-3550/memory/message (rev 0) +++ trunk/templates/cisco-3550/memory/message 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-3550/memory/oids =================================================================== --- trunk/templates/cisco-3550/memory/oids (rev 0) +++ trunk/templates/cisco-3550/memory/oids 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-3550/memory/thresholds =================================================================== --- trunk/templates/cisco-3550/memory/thresholds (rev 0) +++ trunk/templates/cisco-3550/memory/thresholds 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-3550/memory/transforms =================================================================== --- trunk/templates/cisco-3550/memory/transforms (rev 0) +++ trunk/templates/cisco-3550/memory/transforms 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-3750/memory/exceptions =================================================================== Added: trunk/templates/cisco-3750/memory/message =================================================================== --- trunk/templates/cisco-3750/memory/message (rev 0) +++ trunk/templates/cisco-3750/memory/message 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-3750/memory/oids =================================================================== --- trunk/templates/cisco-3750/memory/oids (rev 0) +++ trunk/templates/cisco-3750/memory/oids 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-3750/memory/thresholds =================================================================== --- trunk/templates/cisco-3750/memory/thresholds (rev 0) +++ trunk/templates/cisco-3750/memory/thresholds 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-3750/memory/transforms =================================================================== --- trunk/templates/cisco-3750/memory/transforms (rev 0) +++ trunk/templates/cisco-3750/memory/transforms 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Deleted: trunk/templates/cisco-6509/serial/<Up> =================================================================== --- trunk/templates/cisco-6509/serial/<Up> 2008-01-31 10:11:42 UTC (rev 55) +++ trunk/templates/cisco-6509/serial/<Up> 2008-01-31 10:15:25 UTC (rev 56) @@ -1,5 +0,0 @@ -Serial : - -TABLE: -Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module slot Number | module Status -{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus} Added: trunk/templates/cisco-7206/memory/exceptions =================================================================== Added: trunk/templates/cisco-7206/memory/message =================================================================== --- trunk/templates/cisco-7206/memory/message (rev 0) +++ trunk/templates/cisco-7206/memory/message 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-7206/memory/oids =================================================================== --- trunk/templates/cisco-7206/memory/oids (rev 0) +++ trunk/templates/cisco-7206/memory/oids 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-7206/memory/thresholds =================================================================== --- trunk/templates/cisco-7206/memory/thresholds (rev 0) +++ trunk/templates/cisco-7206/memory/thresholds 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-7206/memory/transforms =================================================================== --- trunk/templates/cisco-7206/memory/transforms (rev 0) +++ trunk/templates/cisco-7206/memory/transforms 2008-01-31 10:15:25 UTC (rev 56) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:11:52
|
Revision: 55 http://devmon.svn.sourceforge.net/devmon/?rev=55&view=rev Author: kayaweed Date: 2008-01-31 02:11:42 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add serial information in template for cisco device Added Paths: ----------- trunk/templates/cisco-1841/serial/ trunk/templates/cisco-1841/serial/exceptions trunk/templates/cisco-1841/serial/message trunk/templates/cisco-1841/serial/oids trunk/templates/cisco-1841/serial/thresholds trunk/templates/cisco-1841/serial/transforms trunk/templates/cisco-2801/serial/ trunk/templates/cisco-2801/serial/exceptions trunk/templates/cisco-2801/serial/message trunk/templates/cisco-2801/serial/oids trunk/templates/cisco-2801/serial/thresholds trunk/templates/cisco-2801/serial/transforms trunk/templates/cisco-2900/serial/ trunk/templates/cisco-2900/serial/exceptions trunk/templates/cisco-2900/serial/message trunk/templates/cisco-2900/serial/oids trunk/templates/cisco-2900/serial/thresholds trunk/templates/cisco-2900/serial/transforms trunk/templates/cisco-2950/serial/ trunk/templates/cisco-2950/serial/exceptions trunk/templates/cisco-2950/serial/message trunk/templates/cisco-2950/serial/oids trunk/templates/cisco-2950/serial/thresholds trunk/templates/cisco-2950/serial/transforms trunk/templates/cisco-2960/serial/ trunk/templates/cisco-2960/serial/exceptions trunk/templates/cisco-2960/serial/message trunk/templates/cisco-2960/serial/oids trunk/templates/cisco-2960/serial/thresholds trunk/templates/cisco-2960/serial/transforms trunk/templates/cisco-3500/serial/ trunk/templates/cisco-3500/serial/exceptions trunk/templates/cisco-3500/serial/message trunk/templates/cisco-3500/serial/oids trunk/templates/cisco-3500/serial/thresholds trunk/templates/cisco-3500/serial/transforms trunk/templates/cisco-3550/serial/ trunk/templates/cisco-3550/serial/exceptions trunk/templates/cisco-3550/serial/message trunk/templates/cisco-3550/serial/oids trunk/templates/cisco-3550/serial/thresholds trunk/templates/cisco-3550/serial/transforms trunk/templates/cisco-3750/serial/ trunk/templates/cisco-3750/serial/exceptions trunk/templates/cisco-3750/serial/message trunk/templates/cisco-3750/serial/oids trunk/templates/cisco-3750/serial/thresholds trunk/templates/cisco-3750/serial/transforms trunk/templates/cisco-6509/serial/ trunk/templates/cisco-6509/serial/<Up> trunk/templates/cisco-6509/serial/exceptions trunk/templates/cisco-6509/serial/message trunk/templates/cisco-6509/serial/oids trunk/templates/cisco-6509/serial/thresholds trunk/templates/cisco-6509/serial/transforms trunk/templates/cisco-7206/serial/ trunk/templates/cisco-7206/serial/exceptions trunk/templates/cisco-7206/serial/message trunk/templates/cisco-7206/serial/oids trunk/templates/cisco-7206/serial/thresholds trunk/templates/cisco-7206/serial/transforms Added: trunk/templates/cisco-1841/serial/exceptions =================================================================== --- trunk/templates/cisco-1841/serial/exceptions (rev 0) +++ trunk/templates/cisco-1841/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+ Added: trunk/templates/cisco-1841/serial/message =================================================================== --- trunk/templates/cisco-1841/serial/message (rev 0) +++ trunk/templates/cisco-1841/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,5 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-1841/serial/oids =================================================================== --- trunk/templates/cisco-1841/serial/oids (rev 0) +++ trunk/templates/cisco-1841/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-1841/serial/thresholds =================================================================== Added: trunk/templates/cisco-1841/serial/transforms =================================================================== Added: trunk/templates/cisco-2801/serial/exceptions =================================================================== --- trunk/templates/cisco-2801/serial/exceptions (rev 0) +++ trunk/templates/cisco-2801/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.*AIM.*|.*DaughterCard.*|.*Gt96k.* +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-2801/serial/message =================================================================== --- trunk/templates/cisco-2801/serial/message (rev 0) +++ trunk/templates/cisco-2801/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-2801/serial/oids =================================================================== --- trunk/templates/cisco-2801/serial/oids (rev 0) +++ trunk/templates/cisco-2801/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-2801/serial/thresholds =================================================================== Added: trunk/templates/cisco-2801/serial/transforms =================================================================== Added: trunk/templates/cisco-2900/serial/exceptions =================================================================== --- trunk/templates/cisco-2900/serial/exceptions (rev 0) +++ trunk/templates/cisco-2900/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.*Ethernet +entPhysicalDescr : alarm : YouNeedToSleep Added: trunk/templates/cisco-2900/serial/message =================================================================== --- trunk/templates/cisco-2900/serial/message (rev 0) +++ trunk/templates/cisco-2900/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-2900/serial/oids =================================================================== --- trunk/templates/cisco-2900/serial/oids (rev 0) +++ trunk/templates/cisco-2900/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-2900/serial/thresholds =================================================================== Added: trunk/templates/cisco-2900/serial/transforms =================================================================== Added: trunk/templates/cisco-2950/serial/exceptions =================================================================== --- trunk/templates/cisco-2950/serial/exceptions (rev 0) +++ trunk/templates/cisco-2950/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|1000BaseSX|.+Ethernet|FastEthernet.+ +entPhysicalDescr : alarm : ProvidedByVincentMalguy Added: trunk/templates/cisco-2950/serial/message =================================================================== --- trunk/templates/cisco-2950/serial/message (rev 0) +++ trunk/templates/cisco-2950/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-2950/serial/oids =================================================================== --- trunk/templates/cisco-2950/serial/oids (rev 0) +++ trunk/templates/cisco-2950/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-2950/serial/thresholds =================================================================== Added: trunk/templates/cisco-2950/serial/transforms =================================================================== --- trunk/templates/cisco-2950/serial/transforms (rev 0) +++ trunk/templates/cisco-2950/serial/transforms 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1 @@ + Added: trunk/templates/cisco-2960/serial/exceptions =================================================================== --- trunk/templates/cisco-2960/serial/exceptions (rev 0) +++ trunk/templates/cisco-2960/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.+Ethernet|FastEthernet.+|.+0 +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-2960/serial/message =================================================================== --- trunk/templates/cisco-2960/serial/message (rev 0) +++ trunk/templates/cisco-2960/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-2960/serial/oids =================================================================== --- trunk/templates/cisco-2960/serial/oids (rev 0) +++ trunk/templates/cisco-2960/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-2960/serial/thresholds =================================================================== Added: trunk/templates/cisco-2960/serial/transforms =================================================================== Added: trunk/templates/cisco-3500/serial/exceptions =================================================================== --- trunk/templates/cisco-3500/serial/exceptions (rev 0) +++ trunk/templates/cisco-3500/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.+Ethernet|FastEthernet.+ +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-3500/serial/message =================================================================== --- trunk/templates/cisco-3500/serial/message (rev 0) +++ trunk/templates/cisco-3500/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-3500/serial/oids =================================================================== --- trunk/templates/cisco-3500/serial/oids (rev 0) +++ trunk/templates/cisco-3500/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-3500/serial/thresholds =================================================================== Added: trunk/templates/cisco-3500/serial/transforms =================================================================== Added: trunk/templates/cisco-3550/serial/exceptions =================================================================== --- trunk/templates/cisco-3550/serial/exceptions (rev 0) +++ trunk/templates/cisco-3550/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.+Ethernet|FastEthernet.+ +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-3550/serial/message =================================================================== --- trunk/templates/cisco-3550/serial/message (rev 0) +++ trunk/templates/cisco-3550/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-3550/serial/oids =================================================================== --- trunk/templates/cisco-3550/serial/oids (rev 0) +++ trunk/templates/cisco-3550/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-3550/serial/thresholds =================================================================== Added: trunk/templates/cisco-3550/serial/transforms =================================================================== Added: trunk/templates/cisco-3750/serial/exceptions =================================================================== --- trunk/templates/cisco-3750/serial/exceptions (rev 0) +++ trunk/templates/cisco-3750/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1 @@ +PhysicalDescr : alarm : Kamoulox Added: trunk/templates/cisco-3750/serial/message =================================================================== --- trunk/templates/cisco-3750/serial/message (rev 0) +++ trunk/templates/cisco-3750/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module Status +{PhysicalDescr} | {PhysicalHardwareRev} | {PhysicalFirmwareRev} | {PhysicalSoftwareRev} | {PhysicalSerialNum} | {PhysicalModelName} | {moduleStatus_T} + Added: trunk/templates/cisco-3750/serial/oids =================================================================== --- trunk/templates/cisco-3750/serial/oids (rev 0) +++ trunk/templates/cisco-3750/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,8 @@ +PhysicalDescr : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +PhysicalHardwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.18 : branch +PhysicalFirmwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.19 : branch +PhysicalSoftwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.20 : branch +PhysicalSerialNum : .1.3.6.1.4.1.9.5.1.3.1.1.26 : branch +PhysicalModelName : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +moduleStatus : .1.3.6.1.4.1.9.5.1.3.1.1.10 : branch + Added: trunk/templates/cisco-3750/serial/thresholds =================================================================== Added: trunk/templates/cisco-3750/serial/transforms =================================================================== --- trunk/templates/cisco-3750/serial/transforms (rev 0) +++ trunk/templates/cisco-3750/serial/transforms 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +moduleStatus_T : SWITCH : {moduleStatus} 1 = other, 2 = ok, 3 = minorFault, 4 = majorFault + Added: trunk/templates/cisco-6509/serial/<Up> =================================================================== --- trunk/templates/cisco-6509/serial/<Up> (rev 0) +++ trunk/templates/cisco-6509/serial/<Up> 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,5 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module slot Number | module Status +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus} Added: trunk/templates/cisco-6509/serial/exceptions =================================================================== --- trunk/templates/cisco-6509/serial/exceptions (rev 0) +++ trunk/templates/cisco-6509/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|1000BaseSX +entPhysicalDescr : alarm : D0ntWeArUnderWeaR Added: trunk/templates/cisco-6509/serial/message =================================================================== --- trunk/templates/cisco-6509/serial/message (rev 0) +++ trunk/templates/cisco-6509/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,7 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module Status +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus_T} + + Added: trunk/templates/cisco-6509/serial/oids =================================================================== --- trunk/templates/cisco-6509/serial/oids (rev 0) +++ trunk/templates/cisco-6509/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,7 @@ +entPhysicalDescr : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +entPhysicalHardwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.18 : branch +entPhysicalFirmwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.19 : branch +entPhysicalSoftwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.20 : branch +entPhysicalSerialNum : .1.3.6.1.4.1.9.5.1.3.1.1.26 : branch +entPhysicalModelName : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +moduleStatus : .1.3.6.1.4.1.9.5.1.3.1.1.10 : branch Added: trunk/templates/cisco-6509/serial/thresholds =================================================================== Added: trunk/templates/cisco-6509/serial/transforms =================================================================== --- trunk/templates/cisco-6509/serial/transforms (rev 0) +++ trunk/templates/cisco-6509/serial/transforms 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1 @@ +moduleStatus_T : SWITCH : {moduleStatus} 1 = other, 2 = ok, 3 = minorFault, 4 = majorFault Added: trunk/templates/cisco-7206/serial/exceptions =================================================================== --- trunk/templates/cisco-7206/serial/exceptions (rev 0) +++ trunk/templates/cisco-7206/serial/exceptions 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.+Ethernet|FastEthernet.+|DEC2114.+|Chassis.+|Power.+ +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-7206/serial/message =================================================================== --- trunk/templates/cisco-7206/serial/message (rev 0) +++ trunk/templates/cisco-7206/serial/message 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-7206/serial/oids =================================================================== --- trunk/templates/cisco-7206/serial/oids (rev 0) +++ trunk/templates/cisco-7206/serial/oids 2008-01-31 10:11:42 UTC (rev 55) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-7206/serial/thresholds =================================================================== Added: trunk/templates/cisco-7206/serial/transforms =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:09:25
|
Revision: 54 http://devmon.svn.sourceforge.net/devmon/?rev=54&view=rev Author: kayaweed Date: 2008-01-31 02:09:20 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add telmplate for cisco 3640 Added Paths: ----------- trunk/templates/cisco-3640/ trunk/templates/cisco-3640/README trunk/templates/cisco-3640/cpu/ trunk/templates/cisco-3640/cpu/exceptions trunk/templates/cisco-3640/cpu/message trunk/templates/cisco-3640/cpu/oids trunk/templates/cisco-3640/cpu/thresholds trunk/templates/cisco-3640/cpu/transforms trunk/templates/cisco-3640/if_col/ trunk/templates/cisco-3640/if_col/exceptions trunk/templates/cisco-3640/if_col/message trunk/templates/cisco-3640/if_col/oids trunk/templates/cisco-3640/if_col/thresholds trunk/templates/cisco-3640/if_col/transforms trunk/templates/cisco-3640/if_dsc/ trunk/templates/cisco-3640/if_dsc/exceptions trunk/templates/cisco-3640/if_dsc/message trunk/templates/cisco-3640/if_dsc/oids trunk/templates/cisco-3640/if_dsc/thresholds trunk/templates/cisco-3640/if_dsc/transforms trunk/templates/cisco-3640/if_err/ trunk/templates/cisco-3640/if_err/exceptions trunk/templates/cisco-3640/if_err/message trunk/templates/cisco-3640/if_err/oids trunk/templates/cisco-3640/if_err/thresholds trunk/templates/cisco-3640/if_err/transforms trunk/templates/cisco-3640/if_load/ trunk/templates/cisco-3640/if_load/exceptions trunk/templates/cisco-3640/if_load/message trunk/templates/cisco-3640/if_load/oids trunk/templates/cisco-3640/if_load/thresholds trunk/templates/cisco-3640/if_load/transforms trunk/templates/cisco-3640/if_stat/ trunk/templates/cisco-3640/if_stat/exceptions trunk/templates/cisco-3640/if_stat/message trunk/templates/cisco-3640/if_stat/oids trunk/templates/cisco-3640/if_stat/thresholds trunk/templates/cisco-3640/if_stat/transforms trunk/templates/cisco-3640/memory/ trunk/templates/cisco-3640/memory/exceptions trunk/templates/cisco-3640/memory/message trunk/templates/cisco-3640/memory/oids trunk/templates/cisco-3640/memory/thresholds trunk/templates/cisco-3640/memory/transforms trunk/templates/cisco-3640/specs Removed Paths: ------------- trunk/templates/cisco-6506/serial/<Up> Added: trunk/templates/cisco-3640/README =================================================================== --- trunk/templates/cisco-3640/README (rev 0) +++ trunk/templates/cisco-3640/README 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,6 @@ +This template was created by Eric Schwimmer. + +NOTE: This does not imply any support responsibilities, liabiltiy in +case of this template or devmon causing phsyical, monetary or emotional +damanges, or any other such obligations. It is merely to provide +credit to the original author of the template. Added: trunk/templates/cisco-3640/cpu/exceptions =================================================================== Added: trunk/templates/cisco-3640/cpu/message =================================================================== --- trunk/templates/cisco-3640/cpu/message (rev 0) +++ trunk/templates/cisco-3640/cpu/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,10 @@ + +{sysUpTimeSecs.color}: Up for {UpTimeTxt} +{sysUpTimeSecs.color}: Last reboot due to {sysReloadReason} +{CPUTotal5Min.color}: CPU usage: {CPUTotal5Min}% + +System description: +{sysDescr} +<!-- +<br>CPU 5 min average: {CPUTotal5Min} +--> Added: trunk/templates/cisco-3640/cpu/oids =================================================================== --- trunk/templates/cisco-3640/cpu/oids (rev 0) +++ trunk/templates/cisco-3640/cpu/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,5 @@ + +sysDescr : .1.3.6.1.2.1.1.1.0 : leaf +sysReloadReason : .1.3.6.1.4.1.9.2.1.2.0 : leaf +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf +CPUTotal5Min : .1.3.6.1.4.1.9.9.109.1.1.1.1.5.1 : leaf Added: trunk/templates/cisco-3640/cpu/thresholds =================================================================== --- trunk/templates/cisco-3640/cpu/thresholds (rev 0) +++ trunk/templates/cisco-3640/cpu/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,8 @@ + +CPUTotal5Min : red : >70 : CPU utilization is very high: {CPUTotal5Min}% +CPUTotal5Min : yellow : >30 : CPU utilization is high: {CPUTotal5Min}% +CPUTotal5Min : green : : CPU utilization is nominal: {CPUTotal5Min}% + +sysUpTimeSecs : red : <600 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : yellow : <5000 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : green : : System uptime: {UpTimeTxt} Added: trunk/templates/cisco-3640/cpu/transforms =================================================================== --- trunk/templates/cisco-3640/cpu/transforms (rev 0) +++ trunk/templates/cisco-3640/cpu/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +sysUpTimeSecs : MATH : {sysUpTime} / 100 +UpTimeTxt : ELAPSED : {sysUpTimeSecs} Added: trunk/templates/cisco-3640/if_col/exceptions =================================================================== --- trunk/templates/cisco-3640/if_col/exceptions (rev 0) +++ trunk/templates/cisco-3640/if_col/exceptions 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-3640/if_col/message =================================================================== --- trunk/templates/cisco-3640/if_col/message (rev 0) +++ trunk/templates/cisco-3640/if_col/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,9 @@ +<b>Collisions:</b> +Collision load: yellow={ifOutColPct.thresh:yellow}%, red={ifOutColPct.thresh:red}% +TABLE: +Ifc name|Collisions|Collisions rate|Collisions load +{ifName}{ifAliasBox}|{ifOutCollisions}|{ifOutCps}|{ifOutColPct.color}{ifOutColPct}%{ifOutColPct.errors} + +Note: +Error rates are per second. +Load percentages are based on an error/packet ratio. Added: trunk/templates/cisco-3640/if_col/oids =================================================================== --- trunk/templates/cisco-3640/if_col/oids (rev 0) +++ trunk/templates/cisco-3640/if_col/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifOutCollisions : .1.3.6.1.4.1.9.2.2.1.1.25 : branch +ifOutPktsSec : .1.3.6.1.4.1.9.2.2.1.1.9 : branch Added: trunk/templates/cisco-3640/if_col/thresholds =================================================================== --- trunk/templates/cisco-3640/if_col/thresholds (rev 0) +++ trunk/templates/cisco-3640/if_col/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,4 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifOutColPct : yellow : 40 : {ifName}{ifAliasBox} - High output collision rate ({ifOutColPct}%) +ifOutColPct : red : 70 : {ifName}{ifAliasBox} - Very high output collision rate ({ifOutColPct}%) Added: trunk/templates/cisco-3640/if_col/transforms =================================================================== --- trunk/templates/cisco-3640/if_col/transforms (rev 0) +++ trunk/templates/cisco-3640/if_col/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,12 @@ +# Convert our total ifc octets(bytes) into bits +ifOutCps : DELTA : {ifOutCollisions} + +# Create our REAL packets per second +ifOutPps : MATH : {ifOutCps} + {ifOutPktsSec} + +# Determine percentage of packets that are collisions +ifOutColPct : MATH : ({ifOutCps} / {ifOutPps}) x 100 + +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ + Added: trunk/templates/cisco-3640/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-3640/if_dsc/exceptions (rev 0) +++ trunk/templates/cisco-3640/if_dsc/exceptions 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-3640/if_dsc/message =================================================================== --- trunk/templates/cisco-3640/if_dsc/message (rev 0) +++ trunk/templates/cisco-3640/if_dsc/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,8 @@ +<b>Discards:</b> +TABLE: +Ifc name|Discards in|Discard rate in|Discard load in|Discards out|Discard rate out|Discard load out +{ifName}{ifAliasBox}|{ifInDiscards}|{ifInDps}|{ifInDscPct.color}{ifInDscPct}%{ifInDscPct.errors}|{ifOutDiscards}|{ifOutDps}|{ifOutDscPct.color}{ifOutDscPct}%{ifOutDscPct.errors} + +Note: +Error rates are per second. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-3640/if_dsc/oids =================================================================== --- trunk/templates/cisco-3640/if_dsc/oids (rev 0) +++ trunk/templates/cisco-3640/if_dsc/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,7 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInDiscards : .1.3.6.1.2.1.2.2.1.13 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutDiscards : .1.3.6.1.2.1.2.2.1.19 : branch Added: trunk/templates/cisco-3640/if_dsc/thresholds =================================================================== --- trunk/templates/cisco-3640/if_dsc/thresholds (rev 0) +++ trunk/templates/cisco-3640/if_dsc/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInDscPct : yellow : 5 : {ifName}{ifAliasBox} - High input discard rate. ({ifInDscPct}%) +ifInDscPct : red : 10 : {ifName}{ifAliasBox} - Very high input discard rate. ({ifInDscPct}%) +ifOutDscPct : yellow : 5 : {ifName}{ifAliasBox} - High output discard rate ({ifOutDscPct}%) +ifOutDscPct : red : 10 : {ifName}{ifAliasBox} - Very high output discard rate ({ifOutDscPct}%) Added: trunk/templates/cisco-3640/if_dsc/transforms =================================================================== --- trunk/templates/cisco-3640/if_dsc/transforms (rev 0) +++ trunk/templates/cisco-3640/if_dsc/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,14 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInDps : DELTA : {ifInDiscards} +ifOutDps : DELTA : {ifOutDiscards} +# Perform error to traffic percentage calculations +ifInDscPct : MATH : ({ifInDps} / {ifInBps}) x 100 +ifOutDscPct : MATH : ({ifOutDps} / {ifOutBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-3640/if_err/exceptions =================================================================== --- trunk/templates/cisco-3640/if_err/exceptions (rev 0) +++ trunk/templates/cisco-3640/if_err/exceptions 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-3640/if_err/message =================================================================== --- trunk/templates/cisco-3640/if_err/message (rev 0) +++ trunk/templates/cisco-3640/if_err/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,11 @@ +<b>Errors:</b> +Input errors: yellow={ifInErrPct.thresh:yellow}%, red={ifInErrPct.thresh:red}% +Output errors: yellow={ifOutErrPct.thresh:yellow}%, red={ifOutErrPct.thresh:red}% + +TABLE: +Ifc name|Errors in|Error rate in|Error load in|Errors out|Error rate out|Error load out +{ifName}{ifAliasBox}|{ifInErrors}|{ifInEps}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutErrors}|{ifOutEps}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors} + +Note: +Error rates are per second, averaged over a 60 second interval. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-3640/if_err/oids =================================================================== --- trunk/templates/cisco-3640/if_err/oids (rev 0) +++ trunk/templates/cisco-3640/if_err/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,7 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInErrors : .1.3.6.1.2.1.2.2.1.14 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutErrors : .1.3.6.1.2.1.2.2.1.20 : branch Added: trunk/templates/cisco-3640/if_err/thresholds =================================================================== --- trunk/templates/cisco-3640/if_err/thresholds (rev 0) +++ trunk/templates/cisco-3640/if_err/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,7 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message + +ifInErrPct : yellow : 5 : {ifName}{ifAliasBox} - High input error rate ({ifInErrPct}%) +ifInErrPct : red : 10 : {ifName}{ifAliasBox} - Very high input error rate ({ifInErrPct}%) +ifOutErrPct : yellow : 5 : {ifName}{ifAliasBox} - High output error rate ({ifOutErrPct}%) +ifOutErrPct : red : 10 : {ifName}{ifAliasBox} - Very high output error rate ({ifOutErrPct}%) Added: trunk/templates/cisco-3640/if_err/transforms =================================================================== --- trunk/templates/cisco-3640/if_err/transforms (rev 0) +++ trunk/templates/cisco-3640/if_err/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,15 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInEps : DELTA : {ifInErrors} +ifOutEps : DELTA : {ifOutErrors} +# Perform error to traffic percentage calculations +ifInErrPct : MATH : ({ifInEps} / {ifInBps}) x 100 +ifOutErrPct : MATH : ({ifOutEps} / {ifOutBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ + Added: trunk/templates/cisco-3640/if_load/exceptions =================================================================== --- trunk/templates/cisco-3640/if_load/exceptions (rev 0) +++ trunk/templates/cisco-3640/if_load/exceptions 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-3640/if_load/message =================================================================== --- trunk/templates/cisco-3640/if_load/message (rev 0) +++ trunk/templates/cisco-3640/if_load/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,7 @@ + +<b>Interface error rates:</b> +Input load: yellow={ifInLoad.thresh:yellow}%, red={ifInLoad.thresh:red}% +Output load: yellow={ifOutLoad.thresh:yellow}%, red={ifOutLoad.thresh:red}% +TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) +Ifc name|Ifc Speed|Rate in (load %)|Rate out (load %) +{ifName}{ifAliasBox}|{ifSpeed}|{ifInLoad.color}{ifInSpeed} ({ifInLoad}%){ifInLoad.errors}|{ifOutLoad.color}{ifOutSpeed} ({ifOutLoad}%){ifOutLoad.errors} Added: trunk/templates/cisco-3640/if_load/oids =================================================================== --- trunk/templates/cisco-3640/if_load/oids (rev 0) +++ trunk/templates/cisco-3640/if_load/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch Added: trunk/templates/cisco-3640/if_load/thresholds =================================================================== --- trunk/templates/cisco-3640/if_load/thresholds (rev 0) +++ trunk/templates/cisco-3640/if_load/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,4 @@ +ifInLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifInLoad : red : 95 : {ifName}{ifAliasBox} load is very high +ifOutLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifOutLoad : red : 95 : {ifName}{ifAliasBox} load is very high Added: trunk/templates/cisco-3640/if_load/transforms =================================================================== --- trunk/templates/cisco-3640/if_load/transforms (rev 0) +++ trunk/templates/cisco-3640/if_load/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,16 @@ +# Create a human-readable ifc speed +ifSpeed : SPEED : {ifBps} +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Make some easily readable speed variables +ifInSpeed : SPEED : {ifInBps} +ifOutSpeed : SPEED : {ifOutBps} +# Now determine our percentage load, based on traffic and ifc speed +ifInLoad : MATH : ({ifInBps} / {ifBps}) x 100 +ifOutLoad : MATH : ({ifOutBps} / {ifBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-3640/if_stat/exceptions =================================================================== --- trunk/templates/cisco-3640/if_stat/exceptions (rev 0) +++ trunk/templates/cisco-3640/if_stat/exceptions 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-3640/if_stat/message =================================================================== --- trunk/templates/cisco-3640/if_stat/message (rev 0) +++ trunk/templates/cisco-3640/if_stat/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,3 @@ +TABLE: +Ifc name|Ifc speed|Ifc status +{ifName}{ifAliasBox}|{ifSpeed}|{ifStat.color}{ifStat}{ifStat.errors} Added: trunk/templates/cisco-3640/if_stat/oids =================================================================== --- trunk/templates/cisco-3640/if_stat/oids (rev 0) +++ trunk/templates/cisco-3640/if_stat/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifAdminStatNum : .1.3.6.1.2.1.2.2.1.7 : branch +ifOperStatNum : .1.3.6.1.2.1.2.2.1.8 : branch Added: trunk/templates/cisco-3640/if_stat/thresholds =================================================================== --- trunk/templates/cisco-3640/if_stat/thresholds (rev 0) +++ trunk/templates/cisco-3640/if_stat/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,6 @@ +ifAdminStatTxt : green : admin down : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : testing : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : up : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifOperStatTxt : green : up : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} +ifOperStatTxt : yellow : dormant|testing|yellow|not present|layer down : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} +ifOperStatTxt : yellow : down : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} Added: trunk/templates/cisco-3640/if_stat/transforms =================================================================== --- trunk/templates/cisco-3640/if_stat/transforms (rev 0) +++ trunk/templates/cisco-3640/if_stat/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,5 @@ +ifAdminStatTxt : SWITCH : {ifAdminStatNum} 1=up,2=admin down,3=testing +ifOperStatTxt : SWITCH : {ifOperStatNum} 1=up,2=down,3=testing,4=unknown,5=dormant,6=not present,7=lower layer down +ifStat : BEST : {ifAdminStatTxt},{ifOperStatTxt} +ifSpeed : SPEED : {ifBps} +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-3640/memory/exceptions =================================================================== Added: trunk/templates/cisco-3640/memory/message =================================================================== --- trunk/templates/cisco-3640/memory/message (rev 0) +++ trunk/templates/cisco-3640/memory/message 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-3640/memory/oids =================================================================== --- trunk/templates/cisco-3640/memory/oids (rev 0) +++ trunk/templates/cisco-3640/memory/oids 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-3640/memory/thresholds =================================================================== --- trunk/templates/cisco-3640/memory/thresholds (rev 0) +++ trunk/templates/cisco-3640/memory/thresholds 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-3640/memory/transforms =================================================================== --- trunk/templates/cisco-3640/memory/transforms (rev 0) +++ trunk/templates/cisco-3640/memory/transforms 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-3640/specs =================================================================== --- trunk/templates/cisco-3640/specs (rev 0) +++ trunk/templates/cisco-3640/specs 2008-01-31 10:09:20 UTC (rev 54) @@ -0,0 +1,4 @@ +vendor : cisco +model : 3640 +snmpver : 2 +sysdesc : C3640|C3620 Deleted: trunk/templates/cisco-6506/serial/<Up> =================================================================== --- trunk/templates/cisco-6506/serial/<Up> 2008-01-31 10:08:19 UTC (rev 53) +++ trunk/templates/cisco-6506/serial/<Up> 2008-01-31 10:09:20 UTC (rev 54) @@ -1,5 +0,0 @@ -Serial : - -TABLE: -Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module slot Number | module Status -{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:08:33
|
Revision: 53 http://devmon.svn.sourceforge.net/devmon/?rev=53&view=rev Author: kayaweed Date: 2008-01-31 02:08:19 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add memory to some cisco tempalte Added Paths: ----------- trunk/templates/cisco-2950/memory/ trunk/templates/cisco-2950/memory/exceptions trunk/templates/cisco-2950/memory/message trunk/templates/cisco-2950/memory/oids trunk/templates/cisco-2950/memory/thresholds trunk/templates/cisco-2950/memory/transforms trunk/templates/cisco-2970/memory/ trunk/templates/cisco-2970/memory/exceptions trunk/templates/cisco-2970/memory/message trunk/templates/cisco-2970/memory/oids trunk/templates/cisco-2970/memory/thresholds trunk/templates/cisco-2970/memory/transforms trunk/templates/cisco-3500/memory/ trunk/templates/cisco-3500/memory/exceptions trunk/templates/cisco-3500/memory/message trunk/templates/cisco-3500/memory/oids trunk/templates/cisco-3500/memory/thresholds trunk/templates/cisco-3500/memory/transforms Added: trunk/templates/cisco-2950/memory/exceptions =================================================================== Added: trunk/templates/cisco-2950/memory/message =================================================================== --- trunk/templates/cisco-2950/memory/message (rev 0) +++ trunk/templates/cisco-2950/memory/message 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-2950/memory/oids =================================================================== --- trunk/templates/cisco-2950/memory/oids (rev 0) +++ trunk/templates/cisco-2950/memory/oids 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-2950/memory/thresholds =================================================================== --- trunk/templates/cisco-2950/memory/thresholds (rev 0) +++ trunk/templates/cisco-2950/memory/thresholds 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-2950/memory/transforms =================================================================== --- trunk/templates/cisco-2950/memory/transforms (rev 0) +++ trunk/templates/cisco-2950/memory/transforms 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-2970/memory/exceptions =================================================================== Added: trunk/templates/cisco-2970/memory/message =================================================================== --- trunk/templates/cisco-2970/memory/message (rev 0) +++ trunk/templates/cisco-2970/memory/message 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-2970/memory/oids =================================================================== --- trunk/templates/cisco-2970/memory/oids (rev 0) +++ trunk/templates/cisco-2970/memory/oids 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-2970/memory/thresholds =================================================================== --- trunk/templates/cisco-2970/memory/thresholds (rev 0) +++ trunk/templates/cisco-2970/memory/thresholds 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-2970/memory/transforms =================================================================== --- trunk/templates/cisco-2970/memory/transforms (rev 0) +++ trunk/templates/cisco-2970/memory/transforms 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-3500/memory/exceptions =================================================================== Added: trunk/templates/cisco-3500/memory/message =================================================================== --- trunk/templates/cisco-3500/memory/message (rev 0) +++ trunk/templates/cisco-3500/memory/message 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-3500/memory/oids =================================================================== --- trunk/templates/cisco-3500/memory/oids (rev 0) +++ trunk/templates/cisco-3500/memory/oids 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-3500/memory/thresholds =================================================================== --- trunk/templates/cisco-3500/memory/thresholds (rev 0) +++ trunk/templates/cisco-3500/memory/thresholds 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-3500/memory/transforms =================================================================== --- trunk/templates/cisco-3500/memory/transforms (rev 0) +++ trunk/templates/cisco-3500/memory/transforms 2008-01-31 10:08:19 UTC (rev 53) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:05:45
|
Revision: 52 http://devmon.svn.sourceforge.net/devmon/?rev=52&view=rev Author: kayaweed Date: 2008-01-31 02:05:35 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add template for cisco-2811 Added Paths: ----------- trunk/templates/cisco-2811/ trunk/templates/cisco-2811/README trunk/templates/cisco-2811/cpu/ trunk/templates/cisco-2811/cpu/exceptions trunk/templates/cisco-2811/cpu/message trunk/templates/cisco-2811/cpu/oids trunk/templates/cisco-2811/cpu/thresholds trunk/templates/cisco-2811/cpu/transforms trunk/templates/cisco-2811/fans/ trunk/templates/cisco-2811/fans/exceptions trunk/templates/cisco-2811/fans/message trunk/templates/cisco-2811/fans/oids trunk/templates/cisco-2811/fans/thresholds trunk/templates/cisco-2811/fans/transforms trunk/templates/cisco-2811/if_dsc/ trunk/templates/cisco-2811/if_dsc/exceptions trunk/templates/cisco-2811/if_dsc/message trunk/templates/cisco-2811/if_dsc/oids trunk/templates/cisco-2811/if_dsc/thresholds trunk/templates/cisco-2811/if_dsc/transforms trunk/templates/cisco-2811/if_err/ trunk/templates/cisco-2811/if_err/exceptions trunk/templates/cisco-2811/if_err/message trunk/templates/cisco-2811/if_err/oids trunk/templates/cisco-2811/if_err/thresholds trunk/templates/cisco-2811/if_err/transforms trunk/templates/cisco-2811/if_load/ trunk/templates/cisco-2811/if_load/exceptions trunk/templates/cisco-2811/if_load/message trunk/templates/cisco-2811/if_load/oids trunk/templates/cisco-2811/if_load/thresholds trunk/templates/cisco-2811/if_load/transforms trunk/templates/cisco-2811/if_stat/ trunk/templates/cisco-2811/if_stat/exceptions trunk/templates/cisco-2811/if_stat/message trunk/templates/cisco-2811/if_stat/oids trunk/templates/cisco-2811/if_stat/thresholds trunk/templates/cisco-2811/if_stat/transforms trunk/templates/cisco-2811/specs Added: trunk/templates/cisco-2811/README =================================================================== --- trunk/templates/cisco-2811/README (rev 0) +++ trunk/templates/cisco-2811/README 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +This template was created by Eric Schwimmer. + +NOTE: This does not imply any support responsibilities, liabiltiy in +case of this template or devmon causing phsyical, monetary or emotional +damanges, or any other such obligations. It is merely to provide +credit to the original author of the template. Added: trunk/templates/cisco-2811/cpu/exceptions =================================================================== Added: trunk/templates/cisco-2811/cpu/message =================================================================== --- trunk/templates/cisco-2811/cpu/message (rev 0) +++ trunk/templates/cisco-2811/cpu/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,5 @@ + +{sysUpTimeSecs.color}: Up for {UpTimeTxt} + +System description: +{sysDescr} Added: trunk/templates/cisco-2811/cpu/oids =================================================================== --- trunk/templates/cisco-2811/cpu/oids (rev 0) +++ trunk/templates/cisco-2811/cpu/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +sysDescr : .1.3.6.1.2.1.1.1.0 : leaf +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf Added: trunk/templates/cisco-2811/cpu/thresholds =================================================================== --- trunk/templates/cisco-2811/cpu/thresholds (rev 0) +++ trunk/templates/cisco-2811/cpu/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,3 @@ +sysUpTimeSecs : red : <600 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : yellow : <5000 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : green : : System uptime: {UpTimeTxt} Added: trunk/templates/cisco-2811/cpu/transforms =================================================================== --- trunk/templates/cisco-2811/cpu/transforms (rev 0) +++ trunk/templates/cisco-2811/cpu/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +sysUpTimeSecs : MATH : {sysUpTime} / 100 +UpTimeTxt : ELAPSED : {sysUpTimeSecs} Added: trunk/templates/cisco-2811/fans/exceptions =================================================================== Added: trunk/templates/cisco-2811/fans/message =================================================================== --- trunk/templates/cisco-2811/fans/message (rev 0) +++ trunk/templates/cisco-2811/fans/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,3 @@ +TABLE: +Fan location|Fan state +{FanDescr}|{FanStatus.color}{FanStatus} Added: trunk/templates/cisco-2811/fans/oids =================================================================== --- trunk/templates/cisco-2811/fans/oids (rev 0) +++ trunk/templates/cisco-2811/fans/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +FanDescr : .1.3.6.1.4.1.9.9.13.1.4.1.2 : branch +FanState : .1.3.6.1.4.1.9.9.13.1.4.1.3 : branch Added: trunk/templates/cisco-2811/fans/thresholds =================================================================== --- trunk/templates/cisco-2811/fans/thresholds (rev 0) +++ trunk/templates/cisco-2811/fans/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,3 @@ +FanStatus : red : critical|not functioning +FanStatus : yellow : warning|shutdown|not present +FanStatus : green : normal Added: trunk/templates/cisco-2811/fans/transforms =================================================================== --- trunk/templates/cisco-2811/fans/transforms (rev 0) +++ trunk/templates/cisco-2811/fans/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1 @@ +FanStatus : SWITCH : {FanState} 1=normal,2=warning,3=critical,4=shutdown,5=not present,6=not functioning Added: trunk/templates/cisco-2811/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2811/if_dsc/exceptions (rev 0) +++ trunk/templates/cisco-2811/if_dsc/exceptions 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-2811/if_dsc/message =================================================================== --- trunk/templates/cisco-2811/if_dsc/message (rev 0) +++ trunk/templates/cisco-2811/if_dsc/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,8 @@ +<b>Discards:</b> +TABLE: +Ifc name|Discards in|Discard rate in|Discard load in|Discards out|Discard rate out|Discard load out +{ifName}|{ifInDiscards}|{ifInDps}|{ifInDscPct.color}{ifInDscPct}%{ifInDscPct.errors}|{ifOutDiscards}|{ifOutDps}|{ifOutDscPct.color}{ifOutDscPct}%{ifOutDscPct.errors} + +Note: +Error rates are per second. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-2811/if_dsc/oids =================================================================== --- trunk/templates/cisco-2811/if_dsc/oids (rev 0) +++ trunk/templates/cisco-2811/if_dsc/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.2.2.1.2 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInDiscards : .1.3.6.1.2.1.2.2.1.13 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutDiscards : .1.3.6.1.2.1.2.2.1.19 : branch Added: trunk/templates/cisco-2811/if_dsc/thresholds =================================================================== --- trunk/templates/cisco-2811/if_dsc/thresholds (rev 0) +++ trunk/templates/cisco-2811/if_dsc/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInDscPct : yellow : 5 : {ifName} - High input discard rate. ({ifInDscPct}%) +ifInDscPct : red : 10 : {ifName} - Very high input discard rate. ({ifInDscPct}%) +ifOutDscPct : yellow : 5 : {ifName} - High output discard rate ({ifOutDscPct}%) +ifOutDscPct : red : 10 : {ifName} - Very high output discard rate ({ifOutDscPct}%) Added: trunk/templates/cisco-2811/if_dsc/transforms =================================================================== --- trunk/templates/cisco-2811/if_dsc/transforms (rev 0) +++ trunk/templates/cisco-2811/if_dsc/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,12 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInDps : DELTA : {ifInDiscards} +ifOutDps : DELTA : {ifOutDiscards} +# Perform error to traffic percentage calculations +ifInDscPct : MATH : ({ifInDps} / {ifInBps}) x 100 +ifOutDscPct : MATH : ({ifOutDps} / {ifOutBps}) x 100 Added: trunk/templates/cisco-2811/if_err/exceptions =================================================================== --- trunk/templates/cisco-2811/if_err/exceptions (rev 0) +++ trunk/templates/cisco-2811/if_err/exceptions 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-2811/if_err/message =================================================================== --- trunk/templates/cisco-2811/if_err/message (rev 0) +++ trunk/templates/cisco-2811/if_err/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,11 @@ +<b>Errors:</b> +Input errors: yellow={ifInErrPct.thresh:yellow}%, red={ifInErrPct.thresh:red}% +Output errors: yellow={ifOutErrPct.thresh:yellow}%, red={ifOutErrPct.thresh:red}% + +TABLE: +Ifc name|Errors in|Error rate in|Error load in|Errors out|Error rate out|Error load out +{ifName}|{ifInErrors}|{ifInEps}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutErrors}|{ifOutEps}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors} + +Note: +Error rates are per second, averaged over a 60 second interval. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-2811/if_err/oids =================================================================== --- trunk/templates/cisco-2811/if_err/oids (rev 0) +++ trunk/templates/cisco-2811/if_err/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.2.2.1.2.1 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInErrors : .1.3.6.1.2.1.2.2.1.14 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutErrors : .1.3.6.1.2.1.2.2.1.20 : branch Added: trunk/templates/cisco-2811/if_err/thresholds =================================================================== --- trunk/templates/cisco-2811/if_err/thresholds (rev 0) +++ trunk/templates/cisco-2811/if_err/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInErrPct : yellow : 5 : {ifName} - High input error rate ({ifInErrPct}%) +ifInErrPct : red : 10 : {ifName} - Very high input error rate ({ifInErrPct}%) +ifOutErrPct : yellow : 5 : {ifName} - High output error rate ({ifOutErrPct}%) +ifOutErrPct : red : 10 : {ifName} - Very high output error rate ({ifOutErrPct}%) Added: trunk/templates/cisco-2811/if_err/transforms =================================================================== --- trunk/templates/cisco-2811/if_err/transforms (rev 0) +++ trunk/templates/cisco-2811/if_err/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,13 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInEps : DELTA : {ifInErrors} +ifOutEps : DELTA : {ifOutErrors} +# Perform error to traffic percentage calculations +ifInErrPct : MATH : ({ifInEps} / {ifInBps}) x 100 +ifOutErrPct : MATH : ({ifOutEps} / {ifOutBps}) x 100 + Added: trunk/templates/cisco-2811/if_load/exceptions =================================================================== --- trunk/templates/cisco-2811/if_load/exceptions (rev 0) +++ trunk/templates/cisco-2811/if_load/exceptions 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-2811/if_load/message =================================================================== --- trunk/templates/cisco-2811/if_load/message (rev 0) +++ trunk/templates/cisco-2811/if_load/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,7 @@ + +<b>Interface error rates:</b> +Input load: yellow={ifInLoad.thresh:yellow}%, red={ifInLoad.thresh:red}% +Output load: yellow={ifOutLoad.thresh:yellow}%, red={ifOutLoad.thresh:red}% +TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) +Ifc name|Ifc Speed|Rate in (load %)|Rate out (load %) +{ifName}|{ifSpeed}|{ifInLoad.color}{ifInSpeed} ({ifInLoad}%){ifInLoad.errors}|{ifOutLoad.color}{ifOutSpeed} ({ifOutLoad}%){ifOutLoad.errors} Added: trunk/templates/cisco-2811/if_load/oids =================================================================== --- trunk/templates/cisco-2811/if_load/oids (rev 0) +++ trunk/templates/cisco-2811/if_load/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,4 @@ +ifName : .1.3.6.1.2.1.2.2.1.10 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch Added: trunk/templates/cisco-2811/if_load/thresholds =================================================================== --- trunk/templates/cisco-2811/if_load/thresholds (rev 0) +++ trunk/templates/cisco-2811/if_load/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,4 @@ +ifInLoad : yellow : 75 : {ifName} load is high +ifInLoad : red : 95 : {ifName} load is very high +ifOutLoad : yellow : 75 : {ifName} load is high +ifOutLoad : red : 95 : {ifName} load is very high Added: trunk/templates/cisco-2811/if_load/transforms =================================================================== --- trunk/templates/cisco-2811/if_load/transforms (rev 0) +++ trunk/templates/cisco-2811/if_load/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,14 @@ +# Create a human-readable ifc speed +ifSpeed : SPEED : {ifBps} +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Make some easily readable speed variables +ifInSpeed : SPEED : {ifInBps} +ifOutSpeed : SPEED : {ifOutBps} +# Now determine our percentage load, based on traffic and ifc speed +ifInLoad : MATH : ({ifInBps} / {ifBps}) x 100 +ifOutLoad : MATH : ({ifOutBps} / {ifBps}) x 100 Added: trunk/templates/cisco-2811/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2811/if_stat/exceptions (rev 0) +++ trunk/templates/cisco-2811/if_stat/exceptions 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-2811/if_stat/message =================================================================== --- trunk/templates/cisco-2811/if_stat/message (rev 0) +++ trunk/templates/cisco-2811/if_stat/message 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,3 @@ +TABLE: +Ifc name|Ifc speed|Ifc status +{ifName}|{ifSpeed}|{ifStat.color}{ifStat}{ifStat.errors} Added: trunk/templates/cisco-2811/if_stat/oids =================================================================== --- trunk/templates/cisco-2811/if_stat/oids (rev 0) +++ trunk/templates/cisco-2811/if_stat/oids 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,4 @@ +ifName : .1.3.6.1.2.1.2.2.1.10 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifAdminStatNum : .1.3.6.1.2.1.2.2.1.7 : branch +ifOperStatNum : .1.3.6.1.2.1.2.2.1.8 : branch Added: trunk/templates/cisco-2811/if_stat/thresholds =================================================================== --- trunk/templates/cisco-2811/if_stat/thresholds (rev 0) +++ trunk/templates/cisco-2811/if_stat/thresholds 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,6 @@ +ifAdminStatTxt : green : admin down : Interface {ifName} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : testing : Interface {ifName} is {ifAdminStatTxt} +ifAdminStatTxt : red : up : Interface {ifName} is {ifAdminStatTxt} +ifOperStatTxt : green : up : Interface {ifName} is {ifOperStatTxt} +ifOperStatTxt : yellow : dormant|testing|yellow|not present|layer down : Interface {ifName} is {ifOperStatTxt} +ifOperStatTxt : red : down : Interface {ifName} is {ifOperStatTxt} Added: trunk/templates/cisco-2811/if_stat/transforms =================================================================== --- trunk/templates/cisco-2811/if_stat/transforms (rev 0) +++ trunk/templates/cisco-2811/if_stat/transforms 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,4 @@ +ifAdminStatTxt : SWITCH : {ifAdminStatNum} 1=up,2=admin down,3=testing +ifOperStatTxt : SWITCH : {ifOperStatNum} 1=up,2=down,3=testing,4=unknown,5=dormant,6=not present,7=lower layer down +ifStat : BEST : {ifAdminStatTxt},{ifOperStatTxt} +ifSpeed : SPEED : {ifBps} Added: trunk/templates/cisco-2811/specs =================================================================== --- trunk/templates/cisco-2811/specs (rev 0) +++ trunk/templates/cisco-2811/specs 2008-01-31 10:05:35 UTC (rev 52) @@ -0,0 +1,4 @@ +vendor : cisco +model : 2811 +snmpver : 2 +sysdesc : C2800NM-ADVIPSERVICESK9-M This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 10:05:03
|
Revision: 51 http://devmon.svn.sourceforge.net/devmon/?rev=51&view=rev Author: kayaweed Date: 2008-01-31 02:05:00 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add memory support for some cisco tempalte Added Paths: ----------- trunk/templates/cisco-1700/memory/ trunk/templates/cisco-1700/memory/exceptions trunk/templates/cisco-1700/memory/message trunk/templates/cisco-1700/memory/oids trunk/templates/cisco-1700/memory/thresholds trunk/templates/cisco-1700/memory/transforms trunk/templates/cisco-2801/memory/ trunk/templates/cisco-2801/memory/exceptions trunk/templates/cisco-2801/memory/message trunk/templates/cisco-2801/memory/oids trunk/templates/cisco-2801/memory/thresholds trunk/templates/cisco-2801/memory/transforms trunk/templates/cisco-2900/memory/ trunk/templates/cisco-2900/memory/exceptions trunk/templates/cisco-2900/memory/message trunk/templates/cisco-2900/memory/oids trunk/templates/cisco-2900/memory/thresholds trunk/templates/cisco-2900/memory/transforms trunk/templates/cisco-2960/memory/ trunk/templates/cisco-2960/memory/exceptions trunk/templates/cisco-2960/memory/message trunk/templates/cisco-2960/memory/oids trunk/templates/cisco-2960/memory/thresholds trunk/templates/cisco-2960/memory/transforms Added: trunk/templates/cisco-1700/memory/exceptions =================================================================== Added: trunk/templates/cisco-1700/memory/message =================================================================== --- trunk/templates/cisco-1700/memory/message (rev 0) +++ trunk/templates/cisco-1700/memory/message 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-1700/memory/oids =================================================================== --- trunk/templates/cisco-1700/memory/oids (rev 0) +++ trunk/templates/cisco-1700/memory/oids 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-1700/memory/thresholds =================================================================== --- trunk/templates/cisco-1700/memory/thresholds (rev 0) +++ trunk/templates/cisco-1700/memory/thresholds 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-1700/memory/transforms =================================================================== --- trunk/templates/cisco-1700/memory/transforms (rev 0) +++ trunk/templates/cisco-1700/memory/transforms 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-2801/memory/exceptions =================================================================== Added: trunk/templates/cisco-2801/memory/message =================================================================== --- trunk/templates/cisco-2801/memory/message (rev 0) +++ trunk/templates/cisco-2801/memory/message 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-2801/memory/oids =================================================================== --- trunk/templates/cisco-2801/memory/oids (rev 0) +++ trunk/templates/cisco-2801/memory/oids 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-2801/memory/thresholds =================================================================== --- trunk/templates/cisco-2801/memory/thresholds (rev 0) +++ trunk/templates/cisco-2801/memory/thresholds 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-2801/memory/transforms =================================================================== --- trunk/templates/cisco-2801/memory/transforms (rev 0) +++ trunk/templates/cisco-2801/memory/transforms 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-2900/memory/exceptions =================================================================== Added: trunk/templates/cisco-2900/memory/message =================================================================== --- trunk/templates/cisco-2900/memory/message (rev 0) +++ trunk/templates/cisco-2900/memory/message 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-2900/memory/oids =================================================================== --- trunk/templates/cisco-2900/memory/oids (rev 0) +++ trunk/templates/cisco-2900/memory/oids 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-2900/memory/thresholds =================================================================== --- trunk/templates/cisco-2900/memory/thresholds (rev 0) +++ trunk/templates/cisco-2900/memory/thresholds 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-2900/memory/transforms =================================================================== --- trunk/templates/cisco-2900/memory/transforms (rev 0) +++ trunk/templates/cisco-2900/memory/transforms 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-2960/memory/exceptions =================================================================== Added: trunk/templates/cisco-2960/memory/message =================================================================== --- trunk/templates/cisco-2960/memory/message (rev 0) +++ trunk/templates/cisco-2960/memory/message 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-2960/memory/oids =================================================================== --- trunk/templates/cisco-2960/memory/oids (rev 0) +++ trunk/templates/cisco-2960/memory/oids 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-2960/memory/thresholds =================================================================== --- trunk/templates/cisco-2960/memory/thresholds (rev 0) +++ trunk/templates/cisco-2960/memory/thresholds 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-2960/memory/transforms =================================================================== --- trunk/templates/cisco-2960/memory/transforms (rev 0) +++ trunk/templates/cisco-2960/memory/transforms 2008-01-31 10:05:00 UTC (rev 51) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 09:59:07
|
Revision: 50 http://devmon.svn.sourceforge.net/devmon/?rev=50&view=rev Author: kayaweed Date: 2008-01-31 01:59:01 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add tempalte for cisco-6506 Added Paths: ----------- trunk/templates/cisco-6506/ trunk/templates/cisco-6506/README trunk/templates/cisco-6506/cpu/ trunk/templates/cisco-6506/cpu/exceptions trunk/templates/cisco-6506/cpu/message trunk/templates/cisco-6506/cpu/oids trunk/templates/cisco-6506/cpu/thresholds trunk/templates/cisco-6506/cpu/transforms trunk/templates/cisco-6506/fans/ trunk/templates/cisco-6506/fans/exceptions trunk/templates/cisco-6506/fans/message trunk/templates/cisco-6506/fans/oids trunk/templates/cisco-6506/fans/thresholds trunk/templates/cisco-6506/fans/transforms trunk/templates/cisco-6506/if_dsc/ trunk/templates/cisco-6506/if_dsc/exceptions trunk/templates/cisco-6506/if_dsc/message trunk/templates/cisco-6506/if_dsc/oids trunk/templates/cisco-6506/if_dsc/thresholds trunk/templates/cisco-6506/if_dsc/transforms trunk/templates/cisco-6506/if_err/ trunk/templates/cisco-6506/if_err/exceptions trunk/templates/cisco-6506/if_err/message trunk/templates/cisco-6506/if_err/oids trunk/templates/cisco-6506/if_err/thresholds trunk/templates/cisco-6506/if_err/transforms trunk/templates/cisco-6506/if_load/ trunk/templates/cisco-6506/if_load/exceptions trunk/templates/cisco-6506/if_load/message trunk/templates/cisco-6506/if_load/oids trunk/templates/cisco-6506/if_load/thresholds trunk/templates/cisco-6506/if_load/transforms trunk/templates/cisco-6506/if_stat/ trunk/templates/cisco-6506/if_stat/exceptions trunk/templates/cisco-6506/if_stat/message trunk/templates/cisco-6506/if_stat/oids trunk/templates/cisco-6506/if_stat/thresholds trunk/templates/cisco-6506/if_stat/transforms trunk/templates/cisco-6506/memory/ trunk/templates/cisco-6506/memory/exceptions trunk/templates/cisco-6506/memory/message trunk/templates/cisco-6506/memory/oids trunk/templates/cisco-6506/memory/thresholds trunk/templates/cisco-6506/memory/transforms trunk/templates/cisco-6506/power/ trunk/templates/cisco-6506/power/exceptions trunk/templates/cisco-6506/power/message trunk/templates/cisco-6506/power/oids trunk/templates/cisco-6506/power/thresholds trunk/templates/cisco-6506/power/transforms trunk/templates/cisco-6506/serial/ trunk/templates/cisco-6506/serial/<Up> trunk/templates/cisco-6506/serial/exceptions trunk/templates/cisco-6506/serial/message trunk/templates/cisco-6506/serial/oids trunk/templates/cisco-6506/serial/thresholds trunk/templates/cisco-6506/serial/transforms trunk/templates/cisco-6506/specs Added: trunk/templates/cisco-6506/README =================================================================== --- trunk/templates/cisco-6506/README (rev 0) +++ trunk/templates/cisco-6506/README 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,6 @@ +This template was created by Eric Schwimmer. + +NOTE: This does not imply any support responsibilities, liabiltiy in +case of this template or devmon causing phsyical, monetary or emotional +damanges, or any other such obligations. It is merely to provide +credit to the original author of the template. Added: trunk/templates/cisco-6506/cpu/exceptions =================================================================== Added: trunk/templates/cisco-6506/cpu/message =================================================================== --- trunk/templates/cisco-6506/cpu/message (rev 0) +++ trunk/templates/cisco-6506/cpu/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,8 @@ + +{sysUpTimeSecs.color}: Up for {UpTimeTxt} +{CPUTotal5Min.color}: CPU usage: {CPUTotal5Min}% + +System description: +{sysDescr} +<!-- DEVMON to RRD <br>CPU 5 min average: {CPUTotal5Min} +--> Added: trunk/templates/cisco-6506/cpu/oids =================================================================== --- trunk/templates/cisco-6506/cpu/oids (rev 0) +++ trunk/templates/cisco-6506/cpu/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,5 @@ + +sysDescr : .1.3.6.1.2.1.1.1.0 : leaf +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf +# CPUTotal5min ....1 or .....9 ?? +CPUTotal5Min : .1.3.6.1.4.1.9.9.109.1.1.1.1.5.1 : leaf Added: trunk/templates/cisco-6506/cpu/thresholds =================================================================== --- trunk/templates/cisco-6506/cpu/thresholds (rev 0) +++ trunk/templates/cisco-6506/cpu/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,8 @@ + +CPUTotal5Min : red : >70 : CPU utilization is very high: {CPUTotal5Min}% +CPUTotal5Min : yellow : >30 : CPU utilization is high: {CPUTotal5Min}% +CPUTotal5Min : green : : CPU utilization is nominal: {CPUTotal5Min}% + +sysUpTimeSecs : red : <600 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : yellow : <5000 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : green : : System uptime: {UpTimeTxt} Added: trunk/templates/cisco-6506/cpu/transforms =================================================================== --- trunk/templates/cisco-6506/cpu/transforms (rev 0) +++ trunk/templates/cisco-6506/cpu/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +sysUpTimeSecs : MATH : {sysUpTime} / 100 +UpTimeTxt : ELAPSED : {sysUpTimeSecs} Added: trunk/templates/cisco-6506/fans/exceptions =================================================================== Added: trunk/templates/cisco-6506/fans/message =================================================================== --- trunk/templates/cisco-6506/fans/message (rev 0) +++ trunk/templates/cisco-6506/fans/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +TABLE: +Fan location|Fan state +{FanDescr}|{FanStatus.color}{FanStatus} Added: trunk/templates/cisco-6506/fans/oids =================================================================== --- trunk/templates/cisco-6506/fans/oids (rev 0) +++ trunk/templates/cisco-6506/fans/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +FanDescr : .1.3.6.1.4.1.9.9.13.1.4.1.2 : branch +FanState : .1.3.6.1.4.1.9.9.13.1.4.1.3 : branch Added: trunk/templates/cisco-6506/fans/thresholds =================================================================== --- trunk/templates/cisco-6506/fans/thresholds (rev 0) +++ trunk/templates/cisco-6506/fans/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +FanStatus : red : critical|not functioning +FanStatus : yellow : warning|shutdown|not present +FanStatus : green : normal Added: trunk/templates/cisco-6506/fans/transforms =================================================================== --- trunk/templates/cisco-6506/fans/transforms (rev 0) +++ trunk/templates/cisco-6506/fans/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1 @@ +FanStatus : SWITCH : {FanState} 1=normal,2=warning,3=critical,4=shutdown,5=not present,6=not functioning Added: trunk/templates/cisco-6506/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-6506/if_dsc/exceptions (rev 0) +++ trunk/templates/cisco-6506/if_dsc/exceptions 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +#ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+|Lo.+|EO.+ Added: trunk/templates/cisco-6506/if_dsc/message =================================================================== --- trunk/templates/cisco-6506/if_dsc/message (rev 0) +++ trunk/templates/cisco-6506/if_dsc/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,8 @@ +<b>Discards:</b> +TABLE: +Ifc name|Discards in|Discard rate in|Discard load in|Discards out|Discard rate out|Discard load out +{ifName}{ifAliasBox}|{ifInDiscards}|{ifInDps}|{ifInDscPct.color}{ifInDscPct}%{ifInDscPct.errors}|{ifOutDiscards}|{ifOutDps}|{ifOutDscPct.color}{ifOutDscPct}%{ifOutDscPct.errors} + +Note: +Error rates are per second. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-6506/if_dsc/oids =================================================================== --- trunk/templates/cisco-6506/if_dsc/oids (rev 0) +++ trunk/templates/cisco-6506/if_dsc/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInDiscards : .1.3.6.1.2.1.2.2.1.13 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutDiscards : .1.3.6.1.2.1.2.2.1.19 : branch Added: trunk/templates/cisco-6506/if_dsc/thresholds =================================================================== --- trunk/templates/cisco-6506/if_dsc/thresholds (rev 0) +++ trunk/templates/cisco-6506/if_dsc/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInDscPct : yellow : 5 : {ifName}{ifAliasBox} - High input discard rate. ({ifInDscPct}%) +ifInDscPct : red : 10 : {ifName}{ifAliasBox} - Very high input discard rate. ({ifInDscPct}%) +ifOutDscPct : yellow : 5 : {ifName}{ifAliasBox} - High output discard rate ({ifOutDscPct}%) +ifOutDscPct : red : 10 : {ifName}{ifAliasBox} - Very high output discard rate ({ifOutDscPct}%) Added: trunk/templates/cisco-6506/if_dsc/transforms =================================================================== --- trunk/templates/cisco-6506/if_dsc/transforms (rev 0) +++ trunk/templates/cisco-6506/if_dsc/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,14 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInDps : DELTA : {ifInDiscards} +ifOutDps : DELTA : {ifOutDiscards} +# Perform error to traffic percentage calculations +ifInDscPct : MATH : ({ifInDps} / {ifInBps}) x 100 +ifOutDscPct : MATH : ({ifOutDps} / {ifOutBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-6506/if_err/exceptions =================================================================== --- trunk/templates/cisco-6506/if_err/exceptions (rev 0) +++ trunk/templates/cisco-6506/if_err/exceptions 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +#ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+|Lo.+|EO.+ Added: trunk/templates/cisco-6506/if_err/message =================================================================== --- trunk/templates/cisco-6506/if_err/message (rev 0) +++ trunk/templates/cisco-6506/if_err/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,12 @@ +<b>Errors:</b> +Input errors: yellow={ifInErrPct.thresh:yellow}%, red={ifInErrPct.thresh:red}% +Output errors: yellow={ifOutErrPct.thresh:yellow}%, red={ifOutErrPct.thresh:red}% + +TABLE: +Ifc name|Errors in|Packet In|Error rate in|Error load in|Errors out|Packet Out|Error rate out|Error load out +{ifName}{ifAliasBox}|{ifInEps}|{ifInPps}|{ifInErrPct}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutEps}|{ifOutPps}|{ifOutErrPct}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors} + +Note: +Error rates are per second, averaged over a 60 second interval. +Load percentages are based on error/bit ratio. + Added: trunk/templates/cisco-6506/if_err/oids =================================================================== --- trunk/templates/cisco-6506/if_err/oids (rev 0) +++ trunk/templates/cisco-6506/if_err/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifInPkt : .1.3.6.1.2.1.2.2.1.11 : branch +ifInErrors : .1.3.6.1.2.1.2.2.1.14 : branch +ifOutPkt : .1.3.6.1.2.1.2.2.1.17 : branch +ifOutErrors : .1.3.6.1.2.1.2.2.1.20 : branch Added: trunk/templates/cisco-6506/if_err/thresholds =================================================================== --- trunk/templates/cisco-6506/if_err/thresholds (rev 0) +++ trunk/templates/cisco-6506/if_err/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInErrPct : yellow : >5 : {ifName}{ifAliasBox} - High input error rate ({ifInErrPct}%) +ifInErrPct : red : >10 : {ifName}{ifAliasBox} - Very high input error rate ({ifInErrPct}%) +ifOutErrPct : yellow : >5 : {ifName}{ifAliasBox} - High output error rate ({ifOutErrPct}%) +ifOutErrPct : red : >10 : {ifName}{ifAliasBox} - Very high output error rate ({ifOutErrPct}%) Added: trunk/templates/cisco-6506/if_err/transforms =================================================================== --- trunk/templates/cisco-6506/if_err/transforms (rev 0) +++ trunk/templates/cisco-6506/if_err/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,9 @@ +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ +# Do delta transform on all error counters +ifInEps : DELTA : {ifInErrors} +ifOutEps : DELTA : {ifOutErrors} +ifInPps : DELTA : {ifInPkt} +ifOutPps : DELTA : {ifOutPkt} +ifInErrPct : MATH : ({ifInEps} / {ifInPps}) x 100 : 0 +ifOutErrPct : MATH : ({ifOutEps} / {ifOutPps}) x 100 : 0 Added: trunk/templates/cisco-6506/if_load/exceptions =================================================================== --- trunk/templates/cisco-6506/if_load/exceptions (rev 0) +++ trunk/templates/cisco-6506/if_load/exceptions 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +#ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+|Lo.+|EO.+ Added: trunk/templates/cisco-6506/if_load/message =================================================================== --- trunk/templates/cisco-6506/if_load/message (rev 0) +++ trunk/templates/cisco-6506/if_load/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,7 @@ + +<b>Interface error rates:</b> +Input load: yellow={ifInLoad.thresh:yellow}%, red={ifInLoad.thresh:red}% +Output load: yellow={ifOutLoad.thresh:yellow}%, red={ifOutLoad.thresh:red}% +TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) +Ifc name|Ifc Speed|Rate in (load %)|Rate out (load %) +{ifName}{ifAliasBox}|{ifSpeed}|{ifInLoad.color}{ifInSpeed} ({ifInLoad}%){ifInLoad.errors}|{ifOutLoad.color}{ifOutSpeed} ({ifOutLoad}%){ifOutLoad.errors} Added: trunk/templates/cisco-6506/if_load/oids =================================================================== --- trunk/templates/cisco-6506/if_load/oids (rev 0) +++ trunk/templates/cisco-6506/if_load/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch Added: trunk/templates/cisco-6506/if_load/thresholds =================================================================== --- trunk/templates/cisco-6506/if_load/thresholds (rev 0) +++ trunk/templates/cisco-6506/if_load/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,4 @@ +ifInLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifInLoad : red : 95 : {ifName}{ifAliasBox} load is very high +ifOutLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifOutLoad : red : 95 : {ifName}{ifAliasBox} load is very high Added: trunk/templates/cisco-6506/if_load/transforms =================================================================== --- trunk/templates/cisco-6506/if_load/transforms (rev 0) +++ trunk/templates/cisco-6506/if_load/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,16 @@ +# Create a human-readable ifc speed +ifSpeed : SPEED : {ifBps} +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Make some easily readable speed variables +ifInSpeed : SPEED : {ifInBps} +ifOutSpeed : SPEED : {ifOutBps} +# Now determine our percentage load, based on traffic and ifc speed +ifInLoad : MATH : ({ifInBps} / {ifBps}) x 100 +ifOutLoad : MATH : ({ifOutBps} / {ifBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-6506/if_stat/exceptions =================================================================== --- trunk/templates/cisco-6506/if_stat/exceptions (rev 0) +++ trunk/templates/cisco-6506/if_stat/exceptions 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +#ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+|Lo.+|EO.+ Added: trunk/templates/cisco-6506/if_stat/message =================================================================== --- trunk/templates/cisco-6506/if_stat/message (rev 0) +++ trunk/templates/cisco-6506/if_stat/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +TABLE: +Ifc name|Ifc speed|Ifc status|Ifc Since +{ifName}{ifAliasBox}|{ifSpeed}|{ifStat.color}{ifStat}{ifStat.errors}|{ifElapChangeD.color}since {ifSinceChange} Added: trunk/templates/cisco-6506/if_stat/oids =================================================================== --- trunk/templates/cisco-6506/if_stat/oids (rev 0) +++ trunk/templates/cisco-6506/if_stat/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,7 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifAdminStatNum : .1.3.6.1.2.1.2.2.1.7 : branch +ifOperStatNum : .1.3.6.1.2.1.2.2.1.8 : branch +ifLastChange : .1.3.6.1.2.1.2.2.1.9 : branch +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf Added: trunk/templates/cisco-6506/if_stat/thresholds =================================================================== --- trunk/templates/cisco-6506/if_stat/thresholds (rev 0) +++ trunk/templates/cisco-6506/if_stat/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,4 @@ +ifAdminStatTxt : green : admin down : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : testing : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : red : up : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifElapChangeD : yellow : <600 : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} Added: trunk/templates/cisco-6506/if_stat/transforms =================================================================== --- trunk/templates/cisco-6506/if_stat/transforms (rev 0) +++ trunk/templates/cisco-6506/if_stat/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,8 @@ +ifAdminStatTxt : SWITCH : {ifAdminStatNum} 1=up,2=admin down,3=testing +ifOperStatTxt : SWITCH : {ifOperStatNum} 1=up,2=down,3=testing,4=unknown,5=dormant,6=not present,7=lower layer down +ifStat : BEST : {ifAdminStatTxt},{ifOperStatTxt} +ifSpeed : SPEED : {ifBps} +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ +ifElapChange : MATH : {sysUpTime} - {ifLastChange} +ifElapChangeD : MATH : {ifElapChange} / 100 +ifSinceChange : ELAPSED : {ifElapChangeD} Added: trunk/templates/cisco-6506/memory/exceptions =================================================================== Added: trunk/templates/cisco-6506/memory/message =================================================================== --- trunk/templates/cisco-6506/memory/message (rev 0) +++ trunk/templates/cisco-6506/memory/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-6506/memory/oids =================================================================== --- trunk/templates/cisco-6506/memory/oids (rev 0) +++ trunk/templates/cisco-6506/memory/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-6506/memory/thresholds =================================================================== --- trunk/templates/cisco-6506/memory/thresholds (rev 0) +++ trunk/templates/cisco-6506/memory/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-6506/memory/transforms =================================================================== --- trunk/templates/cisco-6506/memory/transforms (rev 0) +++ trunk/templates/cisco-6506/memory/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-6506/power/exceptions =================================================================== Added: trunk/templates/cisco-6506/power/message =================================================================== --- trunk/templates/cisco-6506/power/message (rev 0) +++ trunk/templates/cisco-6506/power/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +TABLE: +PSU Type|PSU state +{PsuDescr}|{PsuStatus.color}{PsuStatus} Added: trunk/templates/cisco-6506/power/oids =================================================================== --- trunk/templates/cisco-6506/power/oids (rev 0) +++ trunk/templates/cisco-6506/power/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +PsuDescr : .1.3.6.1.4.1.9.9.13.1.5.1.2 : branch +PsuState : .1.3.6.1.4.1.9.9.13.1.5.1.3 : branch Added: trunk/templates/cisco-6506/power/thresholds =================================================================== --- trunk/templates/cisco-6506/power/thresholds (rev 0) +++ trunk/templates/cisco-6506/power/thresholds 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,3 @@ +PsuStatus : red : critical|not functioning +PsuStatus : yellow : warning|shutdown|not present +PsuStatus : green : normal Added: trunk/templates/cisco-6506/power/transforms =================================================================== --- trunk/templates/cisco-6506/power/transforms (rev 0) +++ trunk/templates/cisco-6506/power/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1 @@ +PsuStatus : SWITCH : {PsuState} 1=normal,2=warning,3=critical,4=shutdown,5=not present,6=not functioning Added: trunk/templates/cisco-6506/serial/<Up> =================================================================== --- trunk/templates/cisco-6506/serial/<Up> (rev 0) +++ trunk/templates/cisco-6506/serial/<Up> 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,5 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module slot Number | module Status +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus} Added: trunk/templates/cisco-6506/serial/exceptions =================================================================== --- trunk/templates/cisco-6506/serial/exceptions (rev 0) +++ trunk/templates/cisco-6506/serial/exceptions 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|1000BaseSX +entPhysicalDescr : alarm : D0ntWeArUnderWeaR Added: trunk/templates/cisco-6506/serial/message =================================================================== --- trunk/templates/cisco-6506/serial/message (rev 0) +++ trunk/templates/cisco-6506/serial/message 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,7 @@ +Serial : + +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module Status +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} | {moduleStatus_T} + + Added: trunk/templates/cisco-6506/serial/oids =================================================================== --- trunk/templates/cisco-6506/serial/oids (rev 0) +++ trunk/templates/cisco-6506/serial/oids 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,7 @@ +entPhysicalDescr : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +entPhysicalHardwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.18 : branch +entPhysicalFirmwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.19 : branch +entPhysicalSoftwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.20 : branch +entPhysicalSerialNum : .1.3.6.1.4.1.9.5.1.3.1.1.26 : branch +entPhysicalModelName : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +moduleStatus : .1.3.6.1.4.1.9.5.1.3.1.1.10 : branch Added: trunk/templates/cisco-6506/serial/thresholds =================================================================== Added: trunk/templates/cisco-6506/serial/transforms =================================================================== --- trunk/templates/cisco-6506/serial/transforms (rev 0) +++ trunk/templates/cisco-6506/serial/transforms 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1 @@ +moduleStatus_T : SWITCH : {moduleStatus} 1 = other, 2 = ok, 3 = minorFault, 4 = majorFault Added: trunk/templates/cisco-6506/specs =================================================================== --- trunk/templates/cisco-6506/specs (rev 0) +++ trunk/templates/cisco-6506/specs 2008-01-31 09:59:01 UTC (rev 50) @@ -0,0 +1,4 @@ +vendor : cisco +model : 6506 +snmpver : 2 +sysdesc : c6sup|s72033_rp|s222_rp|C6506 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 09:57:05
|
Revision: 49 http://devmon.svn.sourceforge.net/devmon/?rev=49&view=rev Author: kayaweed Date: 2008-01-31 01:57:00 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add serial for cisco ASA template Added Paths: ----------- trunk/templates/cisco-asa/serial/ trunk/templates/cisco-asa/serial/exceptions trunk/templates/cisco-asa/serial/message trunk/templates/cisco-asa/serial/oids trunk/templates/cisco-asa/serial/thresholds trunk/templates/cisco-asa/serial/transforms Added: trunk/templates/cisco-asa/serial/exceptions =================================================================== --- trunk/templates/cisco-asa/serial/exceptions (rev 0) +++ trunk/templates/cisco-asa/serial/exceptions 2008-01-31 09:57:00 UTC (rev 49) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.+Ethernet|FastEthernet.+|.+0 +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-asa/serial/message =================================================================== --- trunk/templates/cisco-asa/serial/message (rev 0) +++ trunk/templates/cisco-asa/serial/message 2008-01-31 09:57:00 UTC (rev 49) @@ -0,0 +1,3 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name +{entPhysicalDescr} | {entPhysicalHardwareRev} | {entPhysicalFirmwareRev} | {entPhysicalSoftwareRev} | {entPhysicalSerialNum} | {entPhysicalModelName} Added: trunk/templates/cisco-asa/serial/oids =================================================================== --- trunk/templates/cisco-asa/serial/oids (rev 0) +++ trunk/templates/cisco-asa/serial/oids 2008-01-31 09:57:00 UTC (rev 49) @@ -0,0 +1,6 @@ +entPhysicalDescr : .1.3.6.1.2.1.47.1.1.1.1.2 : branch +entPhysicalHardwareRev : .1.3.6.1.2.1.47.1.1.1.1.8 : branch +entPhysicalFirmwareRev : .1.3.6.1.2.1.47.1.1.1.1.9 : branch +entPhysicalSoftwareRev : .1.3.6.1.2.1.47.1.1.1.1.10 : branch +entPhysicalSerialNum : .1.3.6.1.2.1.47.1.1.1.1.11 : branch +entPhysicalModelName : .1.3.6.1.2.1.47.1.1.1.1.13 : branch Added: trunk/templates/cisco-asa/serial/thresholds =================================================================== Added: trunk/templates/cisco-asa/serial/transforms =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 09:56:14
|
Revision: 48 http://devmon.svn.sourceforge.net/devmon/?rev=48&view=rev Author: kayaweed Date: 2008-01-31 01:56:11 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add template for cisco-5500 Added Paths: ----------- trunk/templates/cisco-5500/ trunk/templates/cisco-5500/README trunk/templates/cisco-5500/cpu/ trunk/templates/cisco-5500/cpu/exceptions trunk/templates/cisco-5500/cpu/message trunk/templates/cisco-5500/cpu/oids trunk/templates/cisco-5500/cpu/thresholds trunk/templates/cisco-5500/cpu/transforms trunk/templates/cisco-5500/fans/ trunk/templates/cisco-5500/fans/exceptions trunk/templates/cisco-5500/fans/message trunk/templates/cisco-5500/fans/oids trunk/templates/cisco-5500/fans/thresholds trunk/templates/cisco-5500/fans/transforms trunk/templates/cisco-5500/if_dsc/ trunk/templates/cisco-5500/if_dsc/exceptions trunk/templates/cisco-5500/if_dsc/message trunk/templates/cisco-5500/if_dsc/oids trunk/templates/cisco-5500/if_dsc/thresholds trunk/templates/cisco-5500/if_dsc/transforms trunk/templates/cisco-5500/if_err/ trunk/templates/cisco-5500/if_err/exceptions trunk/templates/cisco-5500/if_err/message trunk/templates/cisco-5500/if_err/oids trunk/templates/cisco-5500/if_err/thresholds trunk/templates/cisco-5500/if_err/transforms trunk/templates/cisco-5500/if_load/ trunk/templates/cisco-5500/if_load/exceptions trunk/templates/cisco-5500/if_load/message trunk/templates/cisco-5500/if_load/oids trunk/templates/cisco-5500/if_load/thresholds trunk/templates/cisco-5500/if_load/transforms trunk/templates/cisco-5500/if_stat/ trunk/templates/cisco-5500/if_stat/exceptions trunk/templates/cisco-5500/if_stat/message trunk/templates/cisco-5500/if_stat/oids trunk/templates/cisco-5500/if_stat/thresholds trunk/templates/cisco-5500/if_stat/transforms trunk/templates/cisco-5500/memory/ trunk/templates/cisco-5500/memory/exceptions trunk/templates/cisco-5500/memory/message trunk/templates/cisco-5500/memory/oids trunk/templates/cisco-5500/memory/thresholds trunk/templates/cisco-5500/memory/transforms trunk/templates/cisco-5500/power/ trunk/templates/cisco-5500/power/exceptions trunk/templates/cisco-5500/power/message trunk/templates/cisco-5500/power/oids trunk/templates/cisco-5500/power/thresholds trunk/templates/cisco-5500/power/transforms trunk/templates/cisco-5500/serial/ trunk/templates/cisco-5500/serial/exceptions trunk/templates/cisco-5500/serial/message trunk/templates/cisco-5500/serial/oids trunk/templates/cisco-5500/serial/thresholds trunk/templates/cisco-5500/serial/transforms trunk/templates/cisco-5500/specs Added: trunk/templates/cisco-5500/README =================================================================== --- trunk/templates/cisco-5500/README (rev 0) +++ trunk/templates/cisco-5500/README 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,7 @@ +This template was created by Eric Schwimmer. +Adapted/tested by Vincent Malguy. + +NOTE: This does not imply any support responsibilities, liabiltiy in +case of this template or devmon causing phsyical, monetary or emotional +damanges, or any other such obligations. It is merely to provide +credit to the original author of the template. Added: trunk/templates/cisco-5500/cpu/exceptions =================================================================== Added: trunk/templates/cisco-5500/cpu/message =================================================================== --- trunk/templates/cisco-5500/cpu/message (rev 0) +++ trunk/templates/cisco-5500/cpu/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,8 @@ + +{sysUpTimeSecs.color}: Up for {UpTimeTxt} +{CPUTotal5Min.color}: CPU usage: {CPUTotal5Min}% + +System description: +{sysDescr} +<!-- DEVMON to RRD <br>CPU 5 min average: {CPUTotal5Min} +--> Added: trunk/templates/cisco-5500/cpu/oids =================================================================== --- trunk/templates/cisco-5500/cpu/oids (rev 0) +++ trunk/templates/cisco-5500/cpu/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ + +sysDescr : .1.3.6.1.2.1.1.1.0 : leaf +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf +CPUTotal5Min : .1.3.6.1.4.1.9.9.109.1.1.1.1.5.9 : leaf Added: trunk/templates/cisco-5500/cpu/thresholds =================================================================== --- trunk/templates/cisco-5500/cpu/thresholds (rev 0) +++ trunk/templates/cisco-5500/cpu/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,8 @@ + +CPUTotal5Min : red : >70 : CPU utilization is very high: {CPUTotal5Min}% +CPUTotal5Min : yellow : >30 : CPU utilization is high: {CPUTotal5Min}% +CPUTotal5Min : green : : CPU utilization is nominal: {CPUTotal5Min}% + +sysUpTimeSecs : red : <600 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : yellow : <5000 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : green : : System uptime: {UpTimeTxt} Added: trunk/templates/cisco-5500/cpu/transforms =================================================================== --- trunk/templates/cisco-5500/cpu/transforms (rev 0) +++ trunk/templates/cisco-5500/cpu/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +sysUpTimeSecs : MATH : {sysUpTime} / 100 +UpTimeTxt : ELAPSED : {sysUpTimeSecs} Added: trunk/templates/cisco-5500/fans/exceptions =================================================================== Added: trunk/templates/cisco-5500/fans/message =================================================================== --- trunk/templates/cisco-5500/fans/message (rev 0) +++ trunk/templates/cisco-5500/fans/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +fan chassis is {FanStatus.color}{FanStatus} +Temperature is {chassisTempAlarm_T.color}{chassisTempAlarm_T} Added: trunk/templates/cisco-5500/fans/oids =================================================================== --- trunk/templates/cisco-5500/fans/oids (rev 0) +++ trunk/templates/cisco-5500/fans/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +FanState : .1.3.6.1.4.1.9.5.1.2.9.0 : leaf +chassisTempAlarm : .1.3.6.1.4.1.9.5.1.2.13.0 : leaf Added: trunk/templates/cisco-5500/fans/thresholds =================================================================== --- trunk/templates/cisco-5500/fans/thresholds (rev 0) +++ trunk/templates/cisco-5500/fans/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,5 @@ +FanStatus : red : majorFault +FanStatus : yellow : other|minorFault +FanStatus : green : ok +chassisTempAlarm_T : red : critical +chassisTempAlarm_T : green : on|off Added: trunk/templates/cisco-5500/fans/transforms =================================================================== --- trunk/templates/cisco-5500/fans/transforms (rev 0) +++ trunk/templates/cisco-5500/fans/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +FanStatus : SWITCH : {FanState} 1=other,2=ok,3=minorFault,4=majorFault +chassisTempAlarm_T : SWITCH : {chassisTempAlarm} 1=off,2=on,3=critical Added: trunk/templates/cisco-5500/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-5500/if_dsc/exceptions (rev 0) +++ trunk/templates/cisco-5500/if_dsc/exceptions 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-5500/if_dsc/message =================================================================== --- trunk/templates/cisco-5500/if_dsc/message (rev 0) +++ trunk/templates/cisco-5500/if_dsc/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,8 @@ +<b>Discards:</b> +TABLE: +Ifc name|Discards in|Discard rate in|Discard load in|Discards out|Discard rate out|Discard load out +{ifName}|{ifInDiscards}|{ifInDps}|{ifInDscPct.color}{ifInDscPct}%{ifInDscPct.errors}|{ifOutDiscards}|{ifOutDps}|{ifOutDscPct.color}{ifOutDscPct}%{ifOutDscPct.errors} + +Note: +Error rates are per second. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-5500/if_dsc/oids =================================================================== --- trunk/templates/cisco-5500/if_dsc/oids (rev 0) +++ trunk/templates/cisco-5500/if_dsc/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInDiscards : .1.3.6.1.2.1.2.2.1.13 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutDiscards : .1.3.6.1.2.1.2.2.1.19 : branch Added: trunk/templates/cisco-5500/if_dsc/thresholds =================================================================== --- trunk/templates/cisco-5500/if_dsc/thresholds (rev 0) +++ trunk/templates/cisco-5500/if_dsc/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInDscPct : yellow : 5 : {ifName} - High input discard rate. ({ifInDscPct}%) +ifInDscPct : red : 10 : {ifName} - Very high input discard rate. ({ifInDscPct}%) +ifOutDscPct : yellow : 5 : {ifName} - High output discard rate ({ifOutDscPct}%) +ifOutDscPct : red : 10 : {ifName} - Very high output discard rate ({ifOutDscPct}%) Added: trunk/templates/cisco-5500/if_dsc/transforms =================================================================== --- trunk/templates/cisco-5500/if_dsc/transforms (rev 0) +++ trunk/templates/cisco-5500/if_dsc/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,12 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInDps : DELTA : {ifInDiscards} +ifOutDps : DELTA : {ifOutDiscards} +# Perform error to traffic percentage calculations +ifInDscPct : MATH : ({ifInDps} / {ifInBps}) x 100 +ifOutDscPct : MATH : ({ifOutDps} / {ifOutBps}) x 100 Added: trunk/templates/cisco-5500/if_err/exceptions =================================================================== --- trunk/templates/cisco-5500/if_err/exceptions (rev 0) +++ trunk/templates/cisco-5500/if_err/exceptions 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-5500/if_err/message =================================================================== --- trunk/templates/cisco-5500/if_err/message (rev 0) +++ trunk/templates/cisco-5500/if_err/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,11 @@ +<b>Errors:</b> +Input errors: yellow={ifInErrPct.thresh:yellow}%, red={ifInErrPct.thresh:red}% +Output errors: yellow={ifOutErrPct.thresh:yellow}%, red={ifOutErrPct.thresh:red}% + +TABLE: +Ifc name|Errors in|Error rate in|Error load in|Errors out|Error rate out|Error load out +{ifName}|{ifInErrors}|{ifInEps}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutErrors}|{ifOutEps}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors} + +Note: +Error rates are per second, averaged over a 60 second interval. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-5500/if_err/oids =================================================================== --- trunk/templates/cisco-5500/if_err/oids (rev 0) +++ trunk/templates/cisco-5500/if_err/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInErrors : .1.3.6.1.2.1.2.2.1.14 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutErrors : .1.3.6.1.2.1.2.2.1.20 : branch Added: trunk/templates/cisco-5500/if_err/thresholds =================================================================== --- trunk/templates/cisco-5500/if_err/thresholds (rev 0) +++ trunk/templates/cisco-5500/if_err/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInErrPct : yellow : 5 : {ifName} - High input error rate ({ifInErrPct}%) +ifInErrPct : red : 10 : {ifName} - Very high input error rate ({ifInErrPct}%) +ifOutErrPct : yellow : 5 : {ifName} - High output error rate ({ifOutErrPct}%) +ifOutErrPct : red : 10 : {ifName} - Very high output error rate ({ifOutErrPct}%) Added: trunk/templates/cisco-5500/if_err/transforms =================================================================== --- trunk/templates/cisco-5500/if_err/transforms (rev 0) +++ trunk/templates/cisco-5500/if_err/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,12 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInEps : DELTA : {ifInErrors} +ifOutEps : DELTA : {ifOutErrors} +# Perform error to traffic percentage calculations +ifInErrPct : MATH : ({ifInEps} / {ifInBps}) x 100 +ifOutErrPct : MATH : ({ifOutEps} / {ifOutBps}) x 100 Added: trunk/templates/cisco-5500/if_load/exceptions =================================================================== --- trunk/templates/cisco-5500/if_load/exceptions (rev 0) +++ trunk/templates/cisco-5500/if_load/exceptions 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-5500/if_load/message =================================================================== --- trunk/templates/cisco-5500/if_load/message (rev 0) +++ trunk/templates/cisco-5500/if_load/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,7 @@ + +<b>Interface error rates:</b> +Input load: yellow={ifInLoad.thresh:yellow}%, red={ifInLoad.thresh:red}% +Output load: yellow={ifOutLoad.thresh:yellow}%, red={ifOutLoad.thresh:red}% +TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) +Ifc name|Ifc Speed|Rate in (load %)|Rate out (load %) +{ifName}|100|{ifInLoad.color}{ifInSpeed} ({ifInLoad}%){ifInLoad.errors}|{ifOutLoad.color}{ifOutSpeed} ({ifOutLoad}%){ifOutLoad.errors} Added: trunk/templates/cisco-5500/if_load/oids =================================================================== --- trunk/templates/cisco-5500/if_load/oids (rev 0) +++ trunk/templates/cisco-5500/if_load/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch Added: trunk/templates/cisco-5500/if_load/thresholds =================================================================== --- trunk/templates/cisco-5500/if_load/thresholds (rev 0) +++ trunk/templates/cisco-5500/if_load/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +ifInLoad : yellow : 75 : {ifName} load is high +ifInLoad : red : 95 : {ifName} load is very high +ifOutLoad : yellow : 75 : {ifName} load is high +ifOutLoad : red : 95 : {ifName} load is very high Added: trunk/templates/cisco-5500/if_load/transforms =================================================================== --- trunk/templates/cisco-5500/if_load/transforms (rev 0) +++ trunk/templates/cisco-5500/if_load/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,14 @@ +# Create a human-readable ifc speed +ifSpeed : SPEED : {ifBps} +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Make some easily readable speed variables +ifInSpeed : SPEED : {ifInBps} +ifOutSpeed : SPEED : {ifOutBps} +# Now determine our percentage load, based on traffic and ifc speed +ifInLoad : MATH : ({ifInBps} / {ifBps}) x 100 +ifOutLoad : MATH : ({ifOutBps} / {ifBps}) x 100 Added: trunk/templates/cisco-5500/if_stat/exceptions =================================================================== --- trunk/templates/cisco-5500/if_stat/exceptions (rev 0) +++ trunk/templates/cisco-5500/if_stat/exceptions 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-5500/if_stat/message =================================================================== --- trunk/templates/cisco-5500/if_stat/message (rev 0) +++ trunk/templates/cisco-5500/if_stat/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,3 @@ +TABLE: +Ifc name|Ifc speed|Ifc status +{ifName}|{ifSpeed}|{ifStat.color}{ifStat}{ifStat.errors} Added: trunk/templates/cisco-5500/if_stat/oids =================================================================== --- trunk/templates/cisco-5500/if_stat/oids (rev 0) +++ trunk/templates/cisco-5500/if_stat/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifAdminStatNum : .1.3.6.1.2.1.2.2.1.7 : branch +ifOperStatNum : .1.3.6.1.2.1.2.2.1.8 : branch Added: trunk/templates/cisco-5500/if_stat/thresholds =================================================================== --- trunk/templates/cisco-5500/if_stat/thresholds (rev 0) +++ trunk/templates/cisco-5500/if_stat/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,6 @@ +ifAdminStatTxt : green : admin down : Interface {ifName} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : testing : Interface {ifName} is {ifAdminStatTxt} +ifAdminStatTxt : red : up : Interface {ifName} is {ifAdminStatTxt} +ifOperStatTxt : green : up : Interface {ifName} is {ifOperStatTxt} +ifOperStatTxt : yellow : dormant|testing|yellow|not present|layer down : Interface {ifName} is {ifOperStatTxt} +ifOperStatTxt : red : down : Interface {ifName} is {ifOperStatTxt} Added: trunk/templates/cisco-5500/if_stat/transforms =================================================================== --- trunk/templates/cisco-5500/if_stat/transforms (rev 0) +++ trunk/templates/cisco-5500/if_stat/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +ifAdminStatTxt : SWITCH : {ifAdminStatNum} 1=up,2=admin down,3=testing +ifOperStatTxt : SWITCH : {ifOperStatNum} 1=up,2=down,3=testing,4=unknown,5=dormant,6=not present,7=lower layer down +ifStat : BEST : {ifAdminStatTxt},{ifOperStatTxt} +ifSpeed : SPEED : {ifBps} Added: trunk/templates/cisco-5500/memory/exceptions =================================================================== Added: trunk/templates/cisco-5500/memory/message =================================================================== --- trunk/templates/cisco-5500/memory/message (rev 0) +++ trunk/templates/cisco-5500/memory/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-5500/memory/oids =================================================================== --- trunk/templates/cisco-5500/memory/oids (rev 0) +++ trunk/templates/cisco-5500/memory/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-5500/memory/thresholds =================================================================== --- trunk/templates/cisco-5500/memory/thresholds (rev 0) +++ trunk/templates/cisco-5500/memory/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-5500/memory/transforms =================================================================== --- trunk/templates/cisco-5500/memory/transforms (rev 0) +++ trunk/templates/cisco-5500/memory/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-5500/power/exceptions =================================================================== Added: trunk/templates/cisco-5500/power/message =================================================================== --- trunk/templates/cisco-5500/power/message (rev 0) +++ trunk/templates/cisco-5500/power/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +power unit1 : {PsuDescr_T} is {PsuStatus.color}{PsuStatus} +power unit2 : {PsuDescr2_T} is {PsuStatus2.color}{PsuStatus2} Added: trunk/templates/cisco-5500/power/oids =================================================================== --- trunk/templates/cisco-5500/power/oids (rev 0) +++ trunk/templates/cisco-5500/power/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +PsuDescr : .1.3.6.1.4.1.9.5.1.2.3.0 : leaf +PsuState : .1.3.6.1.4.1.9.5.1.2.9.0 : leaf +PsuDescr2 : .1.3.6.1.4.1.9.5.1.2.6.0 : leaf +PsuState2 : .1.3.6.1.4.1.9.5.1.2.7.0 : leaf Added: trunk/templates/cisco-5500/power/thresholds =================================================================== --- trunk/templates/cisco-5500/power/thresholds (rev 0) +++ trunk/templates/cisco-5500/power/thresholds 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,6 @@ +PsuStatus : red : majorFault +PsuStatus : yellow : other|minorFault +PsuStatus : green : ok +PsuStatus2 : red : majorFault +PsuStatus2 : yellow : other|minorFault +PsuStatus2 : green : ok Added: trunk/templates/cisco-5500/power/transforms =================================================================== --- trunk/templates/cisco-5500/power/transforms (rev 0) +++ trunk/templates/cisco-5500/power/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,5 @@ +PsuStatus : SWITCH : {PsuState} 1=other,2=ok,3=minorFault,4=majorFault +PsuDescr_T : SWITCH : {PsuDescr} 1=other,2=none, 3=w50, 4=w200, 5=w600, 6=w80, 7=w130, 8=wsc5008, 9=wsc5008a, 10=w175, 11=wsc5068, 12=wsc5508, 13=wsc5568, 14=wsc5508a, 15=w155, 16=w175pfc, 17=w175dc, 18=wsc5008b, 19=wsc5008c, 20=wsc5068b, 21=wscac1000, 22=wscac1300, 23=wscdc1000, 24=wscdc1360, 25=wsx4008, 26=wsc5518, 27=wsc5598, 28=w120, 29=externalPS, 30=wscac2500w, 31=wscdc2500w, 32=wsx4008dc, 33=wscac4000w, 34=pwr4000dc, 35=pwr950ac, 36=pwr950dc, 37=pwr1900ac, 38=pwr1900dc, 39=pwr1900ac6, 42=wsx4008ac650w, 43=wsx4008dc650w, 44=wscac3000w, 46=pwrc451000ac, 47=pwrc452800acv, 48=pwrc451300acv, 49=pwrc451400dcp, 50=wscdc3000w, 51=pwr1400ac, 52=w156, 53=wscac6000w, 54=pwr2700ac, 55=pwr2700dc, 58=wscac8700we=, 59=pwr2700ac4 +PsuStatus2 : SWITCH : {PsuState2} 1=other,2=ok,3=minorFault,4=majorFault +PsuDescr2_T : SWITCH : {PsuDescr2} 1=other,2=none, 3=w50, 4=w200, 5=w600, 6=w80, 7=w130, 8=wsc5008, 9=wsc5008a, 10=w175, 11=wsc5068, 12=wsc5508, 13=wsc5568, 14=wsc5508a, 15=w155, 16=w175pfc, 17=w175dc, 18=wsc5008b, 19=wsc5008c, 20=wsc5068b, 21=wscac1000, 22=wscac1300, 23=wscdc1000, 24=wscdc1360, 25=wsx4008, 26=wsc5518, 27=wsc5598, 28=w120, 29=externalPS, 30=wscac2500w, 31=wscdc2500w, 32=wsx4008dc, 33=wscac4000w, 34=pwr4000dc, 35=pwr950ac, 36=pwr950dc, 37=pwr1900ac, 38=pwr1900dc, 39=pwr1900ac6, 42=wsx4008ac650w, 43=wsx4008dc650w, 44=wscac3000w, 46=pwrc451000ac, 47=pwrc452800acv, 48=pwrc451300acv, 49=pwrc451400dcp, 50=wscdc3000w, 51=pwr1400ac, 52=w156, 53=wscac6000w, 54=pwr2700ac, 55=pwr2700dc, 58=wscac8700we=, 59=pwr2700ac4 + Added: trunk/templates/cisco-5500/serial/exceptions =================================================================== --- trunk/templates/cisco-5500/serial/exceptions (rev 0) +++ trunk/templates/cisco-5500/serial/exceptions 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +PhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|1000BaseSX +PhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-5500/serial/message =================================================================== --- trunk/templates/cisco-5500/serial/message (rev 0) +++ trunk/templates/cisco-5500/serial/message 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +TABLE: +Physical Descr | Hardware Rev | Firmware Rev | Software Rev | System serial number | Model Name | module Status +{PhysicalDescr} | {PhysicalHardwareRev} | {PhysicalFirmwareRev} | {PhysicalSoftwareRev} | {PhysicalSerialNum} | {PhysicalModelName} | {moduleStatus_T.color}{moduleStatus_T} + Added: trunk/templates/cisco-5500/serial/oids =================================================================== --- trunk/templates/cisco-5500/serial/oids (rev 0) +++ trunk/templates/cisco-5500/serial/oids 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,8 @@ +PhysicalDescr : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +PhysicalHardwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.18 : branch +PhysicalFirmwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.19 : branch +PhysicalSoftwareRev : .1.3.6.1.4.1.9.5.1.3.1.1.20 : branch +PhysicalSerialNum : .1.3.6.1.4.1.9.5.1.3.1.1.26 : branch +PhysicalModelName : .1.3.6.1.4.1.9.5.1.3.1.1.17 : branch +moduleStatus : .1.3.6.1.4.1.9.5.1.3.1.1.10 : branch + Added: trunk/templates/cisco-5500/serial/thresholds =================================================================== Added: trunk/templates/cisco-5500/serial/transforms =================================================================== --- trunk/templates/cisco-5500/serial/transforms (rev 0) +++ trunk/templates/cisco-5500/serial/transforms 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,2 @@ +moduleStatus_T : SWITCH : {moduleStatus} 1 = other, 2 = ok, 3 = minorFault, 4 = majorFault + Added: trunk/templates/cisco-5500/specs =================================================================== --- trunk/templates/cisco-5500/specs (rev 0) +++ trunk/templates/cisco-5500/specs 2008-01-31 09:56:11 UTC (rev 48) @@ -0,0 +1,4 @@ +vendor : cisco +model : 5500 +snmpver : 2 +sysdesc : C5505 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 09:55:23
|
Revision: 47 http://devmon.svn.sourceforge.net/devmon/?rev=47&view=rev Author: kayaweed Date: 2008-01-31 01:55:16 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add template for cisco-msfc2 Added Paths: ----------- trunk/templates/cisco-msfc2/ trunk/templates/cisco-msfc2/README trunk/templates/cisco-msfc2/cpu/ trunk/templates/cisco-msfc2/cpu/exceptions trunk/templates/cisco-msfc2/cpu/message trunk/templates/cisco-msfc2/cpu/message.mine trunk/templates/cisco-msfc2/cpu/message.r23 trunk/templates/cisco-msfc2/cpu/message.r34 trunk/templates/cisco-msfc2/cpu/oids trunk/templates/cisco-msfc2/cpu/thresholds trunk/templates/cisco-msfc2/cpu/transforms trunk/templates/cisco-msfc2/if_col/ trunk/templates/cisco-msfc2/if_col/exceptions trunk/templates/cisco-msfc2/if_col/message trunk/templates/cisco-msfc2/if_col/oids trunk/templates/cisco-msfc2/if_col/thresholds trunk/templates/cisco-msfc2/if_col/transforms trunk/templates/cisco-msfc2/if_dsc/ trunk/templates/cisco-msfc2/if_dsc/exceptions trunk/templates/cisco-msfc2/if_dsc/message trunk/templates/cisco-msfc2/if_dsc/oids trunk/templates/cisco-msfc2/if_dsc/thresholds trunk/templates/cisco-msfc2/if_dsc/transforms trunk/templates/cisco-msfc2/if_err/ trunk/templates/cisco-msfc2/if_err/exceptions trunk/templates/cisco-msfc2/if_err/message trunk/templates/cisco-msfc2/if_err/oids trunk/templates/cisco-msfc2/if_err/thresholds trunk/templates/cisco-msfc2/if_err/transforms trunk/templates/cisco-msfc2/if_load/ trunk/templates/cisco-msfc2/if_load/exceptions trunk/templates/cisco-msfc2/if_load/message trunk/templates/cisco-msfc2/if_load/oids trunk/templates/cisco-msfc2/if_load/thresholds trunk/templates/cisco-msfc2/if_load/transforms trunk/templates/cisco-msfc2/if_stat/ trunk/templates/cisco-msfc2/if_stat/exceptions trunk/templates/cisco-msfc2/if_stat/message trunk/templates/cisco-msfc2/if_stat/oids trunk/templates/cisco-msfc2/if_stat/thresholds trunk/templates/cisco-msfc2/if_stat/transforms trunk/templates/cisco-msfc2/memory/ trunk/templates/cisco-msfc2/memory/exceptions trunk/templates/cisco-msfc2/memory/message trunk/templates/cisco-msfc2/memory/oids trunk/templates/cisco-msfc2/memory/thresholds trunk/templates/cisco-msfc2/memory/transforms trunk/templates/cisco-msfc2/specs Removed Paths: ------------- trunk/templates/cisco-4500/serial/?\195?\185 Deleted: trunk/templates/cisco-4500/serial/?\195?\185 =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kay...@us...> - 2008-01-31 09:53:55
|
Revision: 46 http://devmon.svn.sourceforge.net/devmon/?rev=46&view=rev Author: kayaweed Date: 2008-01-31 01:53:52 -0800 (Thu, 31 Jan 2008) Log Message: ----------- Add template for cisco-4500 Added Paths: ----------- trunk/templates/cisco-4500/ trunk/templates/cisco-4500/README trunk/templates/cisco-4500/cpu/ trunk/templates/cisco-4500/cpu/exceptions trunk/templates/cisco-4500/cpu/message trunk/templates/cisco-4500/cpu/oids trunk/templates/cisco-4500/cpu/thresholds trunk/templates/cisco-4500/cpu/transforms trunk/templates/cisco-4500/fans/ trunk/templates/cisco-4500/fans/exceptions trunk/templates/cisco-4500/fans/message trunk/templates/cisco-4500/fans/oids trunk/templates/cisco-4500/fans/thresholds trunk/templates/cisco-4500/fans/transforms trunk/templates/cisco-4500/if_col/ trunk/templates/cisco-4500/if_col/exceptions trunk/templates/cisco-4500/if_col/message trunk/templates/cisco-4500/if_col/oids trunk/templates/cisco-4500/if_col/thresholds trunk/templates/cisco-4500/if_col/transforms trunk/templates/cisco-4500/if_dsc/ trunk/templates/cisco-4500/if_dsc/exceptions trunk/templates/cisco-4500/if_dsc/message trunk/templates/cisco-4500/if_dsc/oids trunk/templates/cisco-4500/if_dsc/thresholds trunk/templates/cisco-4500/if_dsc/transforms trunk/templates/cisco-4500/if_err/ trunk/templates/cisco-4500/if_err/exceptions trunk/templates/cisco-4500/if_err/message trunk/templates/cisco-4500/if_err/oids trunk/templates/cisco-4500/if_err/thresholds trunk/templates/cisco-4500/if_err/transforms trunk/templates/cisco-4500/if_load/ trunk/templates/cisco-4500/if_load/exceptions trunk/templates/cisco-4500/if_load/message trunk/templates/cisco-4500/if_load/oids trunk/templates/cisco-4500/if_load/thresholds trunk/templates/cisco-4500/if_load/transforms trunk/templates/cisco-4500/if_stat/ trunk/templates/cisco-4500/if_stat/exceptions trunk/templates/cisco-4500/if_stat/message trunk/templates/cisco-4500/if_stat/oids trunk/templates/cisco-4500/if_stat/thresholds trunk/templates/cisco-4500/if_stat/transforms trunk/templates/cisco-4500/memory/ trunk/templates/cisco-4500/memory/exceptions trunk/templates/cisco-4500/memory/message trunk/templates/cisco-4500/memory/oids trunk/templates/cisco-4500/memory/thresholds trunk/templates/cisco-4500/memory/transforms trunk/templates/cisco-4500/power/ trunk/templates/cisco-4500/power/exceptions trunk/templates/cisco-4500/power/message trunk/templates/cisco-4500/power/oids trunk/templates/cisco-4500/power/thresholds trunk/templates/cisco-4500/power/transforms trunk/templates/cisco-4500/serial/ trunk/templates/cisco-4500/serial/?\195?\185 trunk/templates/cisco-4500/serial/exceptions trunk/templates/cisco-4500/serial/message trunk/templates/cisco-4500/serial/oids trunk/templates/cisco-4500/serial/thresholds trunk/templates/cisco-4500/serial/transforms trunk/templates/cisco-4500/specs Added: trunk/templates/cisco-4500/README =================================================================== --- trunk/templates/cisco-4500/README (rev 0) +++ trunk/templates/cisco-4500/README 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,7 @@ +This template was created by Eric Schwimmer. +Adapted/tested by Vincent Malguy. + +NOTE: This does not imply any support responsibilities, liabiltiy in +case of this template or devmon causing phsyical, monetary or emotional +damanges, or any other such obligations. It is merely to provide +credit to the original author of the template. Added: trunk/templates/cisco-4500/cpu/exceptions =================================================================== Added: trunk/templates/cisco-4500/cpu/message =================================================================== --- trunk/templates/cisco-4500/cpu/message (rev 0) +++ trunk/templates/cisco-4500/cpu/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,9 @@ + +{sysUpTimeSecs.color}: Up for {UpTimeTxt} +{sysUpTimeSecs.color}: Last reboot due to {sysReloadReason} +{CPUTotal5Min.color}: CPU usage: {CPUTotal5Min}% + +System description: +{sysDescr} +<!-- DEVMON to RRD <br>CPU 5 min average: {CPUTotal5Min} +--> Added: trunk/templates/cisco-4500/cpu/oids =================================================================== --- trunk/templates/cisco-4500/cpu/oids (rev 0) +++ trunk/templates/cisco-4500/cpu/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,5 @@ + +sysDescr : .1.3.6.1.2.1.1.1.0 : leaf +sysReloadReason : .1.3.6.1.4.1.9.2.1.2.0 : leaf +sysUpTime : .1.3.6.1.2.1.1.3.0 : leaf +CPUTotal5Min : .1.3.6.1.4.1.9.9.109.1.1.1.1.5.1 : leaf Added: trunk/templates/cisco-4500/cpu/thresholds =================================================================== --- trunk/templates/cisco-4500/cpu/thresholds (rev 0) +++ trunk/templates/cisco-4500/cpu/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,8 @@ + +CPUTotal5Min : red : >70 : CPU utilization is very high: {CPUTotal5Min}% +CPUTotal5Min : yellow : >30 : CPU utilization is high: {CPUTotal5Min}% +CPUTotal5Min : green : : CPU utilization is nominal: {CPUTotal5Min}% + +sysUpTimeSecs : red : <600 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : yellow : <5000 : Device rebooted recently. System uptime: {UpTimeTxt} +sysUpTimeSecs : green : : System uptime: {UpTimeTxt} Added: trunk/templates/cisco-4500/cpu/transforms =================================================================== --- trunk/templates/cisco-4500/cpu/transforms (rev 0) +++ trunk/templates/cisco-4500/cpu/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +sysUpTimeSecs : MATH : {sysUpTime} / 100 +UpTimeTxt : ELAPSED : {sysUpTimeSecs} Added: trunk/templates/cisco-4500/fans/exceptions =================================================================== Added: trunk/templates/cisco-4500/fans/message =================================================================== --- trunk/templates/cisco-4500/fans/message (rev 0) +++ trunk/templates/cisco-4500/fans/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +TABLE: +Fan location|Fan state +{FanDescr}|{FanStatus.color}{FanStatus} Added: trunk/templates/cisco-4500/fans/oids =================================================================== --- trunk/templates/cisco-4500/fans/oids (rev 0) +++ trunk/templates/cisco-4500/fans/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +FanDescr : .1.3.6.1.4.1.9.9.13.1.4.1.2 : branch +FanState : .1.3.6.1.4.1.9.9.13.1.4.1.3 : branch Added: trunk/templates/cisco-4500/fans/thresholds =================================================================== --- trunk/templates/cisco-4500/fans/thresholds (rev 0) +++ trunk/templates/cisco-4500/fans/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +FanStatus : red : critical|not functioning +FanStatus : yellow : warning|shutdown|not present +FanStatus : green : normal Added: trunk/templates/cisco-4500/fans/transforms =================================================================== --- trunk/templates/cisco-4500/fans/transforms (rev 0) +++ trunk/templates/cisco-4500/fans/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1 @@ +FanStatus : SWITCH : {FanState} 1=normal,2=warning,3=critical,4=shutdown,5=not present,6=not functioning Added: trunk/templates/cisco-4500/if_col/exceptions =================================================================== --- trunk/templates/cisco-4500/if_col/exceptions (rev 0) +++ trunk/templates/cisco-4500/if_col/exceptions 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-4500/if_col/message =================================================================== --- trunk/templates/cisco-4500/if_col/message (rev 0) +++ trunk/templates/cisco-4500/if_col/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,9 @@ +<b>Collisions:</b> +Collision load: yellow={ifOutColPct.thresh:yellow}%, red={ifOutColPct.thresh:red}% +TABLE: +Ifc name|Collisions|Collisions rate|Collisions load +{ifName}{ifAliasBox}|{ifOutCollisions}|{ifOutCps}|{ifOutColPct.color}{ifOutColPct}%{ifOutColPct.errors} + +Note: +Error rates are per second. +Load percentages are based on an error/packet ratio. Added: trunk/templates/cisco-4500/if_col/oids =================================================================== --- trunk/templates/cisco-4500/if_col/oids (rev 0) +++ trunk/templates/cisco-4500/if_col/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifOutCollisions : .1.3.6.1.4.1.9.2.2.1.1.25 : branch +ifOutPktsSec : .1.3.6.1.4.1.9.2.2.1.1.9 : branch Added: trunk/templates/cisco-4500/if_col/thresholds =================================================================== --- trunk/templates/cisco-4500/if_col/thresholds (rev 0) +++ trunk/templates/cisco-4500/if_col/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,4 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifOutColPct : yellow : 40 : {ifName}{ifAliasBox} - High output collision rate ({ifOutColPct}%) +ifOutColPct : red : 70 : {ifName}{ifAliasBox} - Very high output collision rate ({ifOutColPct}%) Added: trunk/templates/cisco-4500/if_col/transforms =================================================================== --- trunk/templates/cisco-4500/if_col/transforms (rev 0) +++ trunk/templates/cisco-4500/if_col/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,12 @@ +# Convert our total ifc octets(bytes) into bits +ifOutCps : DELTA : {ifOutCollisions} + +# Create our REAL packets per second +ifOutPps : MATH : {ifOutCps} + {ifOutPktsSec} + +# Determine percentage of packets that are collisions +ifOutColPct : MATH : ({ifOutCps} / {ifOutPps}) x 100 + +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ + Added: trunk/templates/cisco-4500/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-4500/if_dsc/exceptions (rev 0) +++ trunk/templates/cisco-4500/if_dsc/exceptions 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-4500/if_dsc/message =================================================================== --- trunk/templates/cisco-4500/if_dsc/message (rev 0) +++ trunk/templates/cisco-4500/if_dsc/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,8 @@ +<b>Discards:</b> +TABLE: +Ifc name|Discards in|Discard rate in|Discard load in|Discards out|Discard rate out|Discard load out +{ifName}{ifAliasBox}|{ifInDiscards}|{ifInDps}|{ifInDscPct.color}{ifInDscPct}%{ifInDscPct.errors}|{ifOutDiscards}|{ifOutDps}|{ifOutDscPct.color}{ifOutDscPct}%{ifOutDscPct.errors} + +Note: +Error rates are per second. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-4500/if_dsc/oids =================================================================== --- trunk/templates/cisco-4500/if_dsc/oids (rev 0) +++ trunk/templates/cisco-4500/if_dsc/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,6 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInDiscards : .1.3.6.1.2.1.2.2.1.13 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutDiscards : .1.3.6.1.2.1.2.2.1.19 : branch Added: trunk/templates/cisco-4500/if_dsc/thresholds =================================================================== --- trunk/templates/cisco-4500/if_dsc/thresholds (rev 0) +++ trunk/templates/cisco-4500/if_dsc/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,6 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message +ifInDscPct : yellow : 5 : {ifName}{ifAliasBox} - High input discard rate. ({ifInDscPct}%) +ifInDscPct : red : 10 : {ifName}{ifAliasBox} - Very high input discard rate. ({ifInDscPct}%) +ifOutDscPct : yellow : 5 : {ifName}{ifAliasBox} - High output discard rate ({ifOutDscPct}%) +ifOutDscPct : red : 10 : {ifName}{ifAliasBox} - Very high output discard rate ({ifOutDscPct}%) Added: trunk/templates/cisco-4500/if_dsc/transforms =================================================================== --- trunk/templates/cisco-4500/if_dsc/transforms (rev 0) +++ trunk/templates/cisco-4500/if_dsc/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,14 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInDps : DELTA : {ifInDiscards} +ifOutDps : DELTA : {ifOutDiscards} +# Perform error to traffic percentage calculations +ifInDscPct : MATH : ({ifInDps} / {ifInBps}) x 100 +ifOutDscPct : MATH : ({ifOutDps} / {ifOutBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-4500/if_err/exceptions =================================================================== --- trunk/templates/cisco-4500/if_err/exceptions (rev 0) +++ trunk/templates/cisco-4500/if_err/exceptions 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-4500/if_err/message =================================================================== --- trunk/templates/cisco-4500/if_err/message (rev 0) +++ trunk/templates/cisco-4500/if_err/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,11 @@ +<b>Errors:</b> +Input errors: yellow={ifInErrPct.thresh:yellow}%, red={ifInErrPct.thresh:red}% +Output errors: yellow={ifOutErrPct.thresh:yellow}%, red={ifOutErrPct.thresh:red}% + +TABLE: +Ifc name|Errors in|Error rate in|Error load in|Errors out|Error rate out|Error load out +{ifName}{ifAliasBox}|{ifInErrors}|{ifInEps}|{ifInErrPct.color}{ifInErrPct}%{ifInErrPct.errors}|{ifOutErrors}|{ifOutEps}|{ifOutErrPct.color}{ifOutErrPct}%{ifOutErrPct.errors} + +Note: +Error rates are per second, averaged over a 60 second interval. +Load percentages are based on error/bit ratio. Added: trunk/templates/cisco-4500/if_err/oids =================================================================== --- trunk/templates/cisco-4500/if_err/oids (rev 0) +++ trunk/templates/cisco-4500/if_err/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,7 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifSpeed : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifInErrors : .1.3.6.1.2.1.2.2.1.14 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch +ifOutErrors : .1.3.6.1.2.1.2.2.1.20 : branch Added: trunk/templates/cisco-4500/if_err/thresholds =================================================================== --- trunk/templates/cisco-4500/if_err/thresholds (rev 0) +++ trunk/templates/cisco-4500/if_err/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,7 @@ +# Create thresholds for all the error rate counters +# oid name : color : limit : Error message + +ifInErrPct : yellow : 5 : {ifName}{ifAliasBox} - High input error rate ({ifInErrPct}%) +ifInErrPct : red : 10 : {ifName}{ifAliasBox} - Very high input error rate ({ifInErrPct}%) +ifOutErrPct : yellow : 5 : {ifName}{ifAliasBox} - High output error rate ({ifOutErrPct}%) +ifOutErrPct : red : 10 : {ifName}{ifAliasBox} - Very high output error rate ({ifOutErrPct}%) Added: trunk/templates/cisco-4500/if_err/transforms =================================================================== --- trunk/templates/cisco-4500/if_err/transforms (rev 0) +++ trunk/templates/cisco-4500/if_err/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,15 @@ +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Do delta transform on all error counters +ifInEps : DELTA : {ifInErrors} +ifOutEps : DELTA : {ifOutErrors} +# Perform error to traffic percentage calculations +ifInErrPct : MATH : ({ifInEps} / {ifInBps}) x 100 +ifOutErrPct : MATH : ({ifOutEps} / {ifOutBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ + Added: trunk/templates/cisco-4500/if_load/exceptions =================================================================== --- trunk/templates/cisco-4500/if_load/exceptions (rev 0) +++ trunk/templates/cisco-4500/if_load/exceptions 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-4500/if_load/message =================================================================== --- trunk/templates/cisco-4500/if_load/message (rev 0) +++ trunk/templates/cisco-4500/if_load/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,7 @@ + +<b>Interface error rates:</b> +Input load: yellow={ifInLoad.thresh:yellow}%, red={ifInLoad.thresh:red}% +Output load: yellow={ifOutLoad.thresh:yellow}%, red={ifOutLoad.thresh:red}% +TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) +Ifc name|Ifc Speed|Rate in (load %)|Rate out (load %) +{ifName}{ifAliasBox}|{ifSpeed}|{ifInLoad.color}{ifInSpeed} ({ifInLoad}%){ifInLoad.errors}|{ifOutLoad.color}{ifOutSpeed} ({ifOutLoad}%){ifOutLoad.errors} Added: trunk/templates/cisco-4500/if_load/oids =================================================================== --- trunk/templates/cisco-4500/if_load/oids (rev 0) +++ trunk/templates/cisco-4500/if_load/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifInOctets : .1.3.6.1.2.1.2.2.1.10 : branch +ifOutOctets : .1.3.6.1.2.1.2.2.1.16 : branch Added: trunk/templates/cisco-4500/if_load/thresholds =================================================================== --- trunk/templates/cisco-4500/if_load/thresholds (rev 0) +++ trunk/templates/cisco-4500/if_load/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,4 @@ +ifInLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifInLoad : red : 95 : {ifName}{ifAliasBox} load is very high +ifOutLoad : yellow : 75 : {ifName}{ifAliasBox} load is high +ifOutLoad : red : 95 : {ifName}{ifAliasBox} load is very high Added: trunk/templates/cisco-4500/if_load/transforms =================================================================== --- trunk/templates/cisco-4500/if_load/transforms (rev 0) +++ trunk/templates/cisco-4500/if_load/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,16 @@ +# Create a human-readable ifc speed +ifSpeed : SPEED : {ifBps} +# Get bit speed delta (so we dont have to provide custom delta limit) +ifInOps : DELTA : {ifInOctets} +ifOutOps : DELTA : {ifOutOctets} +# Convert our octets delta into bits per second +ifInBps : MATH : {ifInOps} x 8 +ifOutBps : MATH : {ifOutOps} x 8 +# Make some easily readable speed variables +ifInSpeed : SPEED : {ifInBps} +ifOutSpeed : SPEED : {ifOutBps} +# Now determine our percentage load, based on traffic and ifc speed +ifInLoad : MATH : ({ifInBps} / {ifBps}) x 100 +ifOutLoad : MATH : ({ifOutBps} / {ifBps}) x 100 +# Create an alias in a bracketed box, or nothing if alias is blank +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-4500/if_stat/exceptions =================================================================== --- trunk/templates/cisco-4500/if_stat/exceptions (rev 0) +++ trunk/templates/cisco-4500/if_stat/exceptions 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +ifName : alarm : Gi.+ +ifName : ignore : Nu.+|Vl.+|VLAN.+ Added: trunk/templates/cisco-4500/if_stat/message =================================================================== --- trunk/templates/cisco-4500/if_stat/message (rev 0) +++ trunk/templates/cisco-4500/if_stat/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +TABLE: +Ifc name|Ifc speed|Ifc status +{ifName}{ifAliasBox}|{ifSpeed}|{ifStat.color}{ifStat}{ifStat.errors} Added: trunk/templates/cisco-4500/if_stat/oids =================================================================== --- trunk/templates/cisco-4500/if_stat/oids (rev 0) +++ trunk/templates/cisco-4500/if_stat/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,5 @@ +ifName : .1.3.6.1.2.1.31.1.1.1.1 : branch +ifAlias : .1.3.6.1.2.1.31.1.1.1.18 : branch +ifBps : .1.3.6.1.2.1.2.2.1.5 : branch +ifAdminStatNum : .1.3.6.1.2.1.2.2.1.7 : branch +ifOperStatNum : .1.3.6.1.2.1.2.2.1.8 : branch Added: trunk/templates/cisco-4500/if_stat/thresholds =================================================================== --- trunk/templates/cisco-4500/if_stat/thresholds (rev 0) +++ trunk/templates/cisco-4500/if_stat/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,6 @@ +ifAdminStatTxt : green : admin down : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : yellow : testing : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifAdminStatTxt : red : up : Interface {ifName}{ifAliasBox} is {ifAdminStatTxt} +ifOperStatTxt : green : up : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} +ifOperStatTxt : yellow : dormant|testing|yellow|not present|layer down : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} +ifOperStatTxt : red : down : Interface {ifName}{ifAliasBox} is {ifOperStatTxt} Added: trunk/templates/cisco-4500/if_stat/transforms =================================================================== --- trunk/templates/cisco-4500/if_stat/transforms (rev 0) +++ trunk/templates/cisco-4500/if_stat/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,5 @@ +ifAdminStatTxt : SWITCH : {ifAdminStatNum} 1=up,2=admin down,3=testing +ifOperStatTxt : SWITCH : {ifOperStatNum} 1=up,2=down,3=testing,4=unknown,5=dormant,6=not present,7=lower layer down +ifStat : BEST : {ifAdminStatTxt},{ifOperStatTxt} +ifSpeed : SPEED : {ifBps} +ifAliasBox : REGSUB : {ifAlias} /(\S+.*)/ [$1]/ Added: trunk/templates/cisco-4500/memory/exceptions =================================================================== Added: trunk/templates/cisco-4500/memory/message =================================================================== --- trunk/templates/cisco-4500/memory/message (rev 0) +++ trunk/templates/cisco-4500/memory/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,7 @@ +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Added: trunk/templates/cisco-4500/memory/oids =================================================================== --- trunk/templates/cisco-4500/memory/oids (rev 0) +++ trunk/templates/cisco-4500/memory/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +mem_used : .1.3.6.1.4.1.9.9.48.1.1.1.5.1 : leaf +mem_free : .1.3.6.1.4.1.9.9.48.1.1.1.6.1 : leaf + Added: trunk/templates/cisco-4500/memory/thresholds =================================================================== --- trunk/templates/cisco-4500/memory/thresholds (rev 0) +++ trunk/templates/cisco-4500/memory/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +mem_used_per : yellow : 75 : Memory load is high +mem_used_per : red : 95 : Memory load is very high Added: trunk/templates/cisco-4500/memory/transforms =================================================================== --- trunk/templates/cisco-4500/memory/transforms (rev 0) +++ trunk/templates/cisco-4500/memory/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +mem_total : MATH : {mem_used} + {mem_free} +mem_used_per : MATH : ({mem_used} x 100) / {mem_total} : 0 +mem_free_per : MATH : ({mem_free} x 100) / {mem_total} : 0 Added: trunk/templates/cisco-4500/power/exceptions =================================================================== Added: trunk/templates/cisco-4500/power/message =================================================================== --- trunk/templates/cisco-4500/power/message (rev 0) +++ trunk/templates/cisco-4500/power/message 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +TABLE: +PSU Type|PSU state +{PsuDescr}|{PsuStatus.color}{PsuStatus} Added: trunk/templates/cisco-4500/power/oids =================================================================== --- trunk/templates/cisco-4500/power/oids (rev 0) +++ trunk/templates/cisco-4500/power/oids 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,2 @@ +PsuDescr : .1.3.6.1.4.1.9.9.13.1.5.1.2 : branch +PsuState : .1.3.6.1.4.1.9.9.13.1.5.1.3 : branch Added: trunk/templates/cisco-4500/power/thresholds =================================================================== --- trunk/templates/cisco-4500/power/thresholds (rev 0) +++ trunk/templates/cisco-4500/power/thresholds 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1,3 @@ +PsuStatus : red : critical|not functioning +PsuStatus : yellow : warning|shutdown|not present +PsuStatus : green : normal Added: trunk/templates/cisco-4500/power/transforms =================================================================== --- trunk/templates/cisco-4500/power/transforms (rev 0) +++ trunk/templates/cisco-4500/power/transforms 2008-01-31 09:53:52 UTC (rev 46) @@ -0,0 +1 @@ +PsuStatus : SWITCH : {PsuState} 1=normal,2=warning,3=critical,4=shutdown,5=not present,6=not functioning Added: trunk/templates/cisco-4500/serial/?\195?\185 =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-31 05:44:33
|
Revision: 45 http://devmon.svn.sourceforge.net/devmon/?rev=45&view=rev Author: buchanmilne Date: 2008-01-30 21:44:28 -0800 (Wed, 30 Jan 2008) Log Message: ----------- Complete the missing pieces of hobbit patch, including avoiding non-existent graphs, and virtually out-the-box per-interface graphs in if_load Modified Paths: -------------- trunk/extras/hobbit-4.2.0-devmon.patch Modified: trunk/extras/hobbit-4.2.0-devmon.patch =================================================================== --- trunk/extras/hobbit-4.2.0-devmon.patch 2008-01-30 06:15:53 UTC (rev 44) +++ trunk/extras/hobbit-4.2.0-devmon.patch 2008-01-31 05:44:28 UTC (rev 45) @@ -1,5 +1,5 @@ ---- ./hobbit-4.2.0/lib/hobbitrrd.c.devmon 2008-01-22 06:22:11.000000000 +0200 -+++ ./hobbit-4.2.0/lib/hobbitrrd.c 2008-01-25 06:09:27.000000000 +0200 +--- hobbit-4.2.0/lib/hobbitrrd.c.devmon 2008-01-22 06:22:11.000000000 +0200 ++++ hobbit-4.2.0/lib/hobbitrrd.c 2008-01-25 06:09:27.000000000 +0200 @@ -221,6 +221,9 @@ static char *hobbit_graph_text(char *hos else if ((service != NULL) && (strcmp(graphdef->hobbitrrdname, "ncv") == 0)) { sprintf(rrdservicename, "ncv:%s", service); @@ -10,24 +10,58 @@ else { strcpy(rrdservicename, graphdef->hobbitrrdname); } ---- ./hobbit-4.2.0/hobbitd/etcfiles/hobbitserver.cfg.DIST.devmon 2006-08-09 22:10:07.000000000 +0200 -+++ ./hobbit-4.2.0/hobbitd/etcfiles/hobbitserver.cfg.DIST 2008-01-25 06:28:50.000000000 +0200 +--- hobbit-4.2.0/lib/htmllog.c.devmon 2008-01-22 06:22:11.000000000 +0200 ++++ hobbit-4.2.0/lib/htmllog.c 2008-01-31 07:28:40.000000000 +0200 +@@ -318,7 +318,7 @@ void generate_html_log(char *hostname, c + } + if (rrd && graph) { + char *p, *multikey; +- if (multigraphs == NULL) multigraphs = ",disk,inode,qtree,"; ++ if (multigraphs == NULL) multigraphs = ",disk,inode,qtree,if_load,"; + + /* + * Some reports (disk) use the number of lines as a rough measure for how many +@@ -347,6 +347,11 @@ void generate_html_log(char *hostname, c + /* We found something that is not blank, so one more line */ + if (!netwarediskreport) linecount++; + } ++ if ((p+10) && *p == '<' ) { ++ /* Check if this is a devmon RRD header, reset the linecount to -2, as we will see a DS line and a Devmon banner*/ ++ if(!strncmp(p, "<!--DEVMON",10)) ++ linecount = -2; ++ } + /* Then skip forward to the EOLN */ + p = strchr(p, '\n'); + } +--- hobbit-4.2.0/hobbitd/etcfiles/hobbitserver.cfg.DIST.devmon 2006-08-09 22:10:07.000000000 +0200 ++++ hobbit-4.2.0/hobbitd/etcfiles/hobbitserver.cfg.DIST 2008-01-31 07:33:52.000000000 +0200 @@ -132,11 +132,11 @@ RRDWIDTH="576" # The RRD's contain 576 # # This is also used by the bb-hostsvc.cgi script to determine if the detailed # status view of a test should include a graph. -TEST2RRD="cpu=la,disk,inode,qtree,memory,$PINGCOLUMN=tcp,http=tcp,dns=tcp,dig=tcp,time=ntpstat,vmstat,iostat,netstat,temperature,apache,bind,sendmail,mailq,nmailq=mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,files,procs=processes,ports,clock,lines" -+TEST2RRD="cpu=la,disk,inode,qtree,memory,$PINGCOLUMN=tcp,http=tcp,dns=tcp,dig=tcp,time=ntpstat,vmstat,iostat,netstat,temperature,apache,bind,sendmail,mailq,nmailq=mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,files,procs=processes,ports,clock,lines,if_load=devmon" ++TEST2RRD="cpu=la,disk,inode,qtree,memory,$PINGCOLUMN=tcp,http=tcp,dns=tcp,dig=tcp,time=ntpstat,vmstat,iostat,netstat,temperature,apache,bind,sendmail,mailq,nmailq=mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,files,procs=processes,ports,clock,lines,if_load=devmon,temp=devmon" # This defines which RRD files to include on the "trends" column webpage, # and the order in which they appear. -GRAPHS="la,disk,inode,qtree,files,processes,memory,users,vmstat,iostat,tcp.http,tcp,ncv,netstat,ifstat,mrtg::1,ports,temperature,ntpstat,apache,bind,sendmail,mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,clock,lines" -+GRAPHS="la,disk,inode,qtree,files,processes,memory,users,vmstat,iostat,tcp.http,tcp,ncv,netstat,ifstat,mrtg::1,ports,temperature,ntpstat,apache,bind,sendmail,mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,clock,lines,devmon" ++GRAPHS="la,disk,inode,qtree,files,processes,memory,users,vmstat,iostat,tcp.http,tcp,ncv,netstat,ifstat,mrtg::1,ports,temperature,ntpstat,apache,bind,sendmail,mailq,socks,bea,iishealth,citrix,bbgen,bbtest,bbproxy,hobbitd,clock,lines,devmon::1,if_load::1,temp" # These two settings can be used to restrict what filesystems are being # tracked (i.e. have their utilisation graphed) by Hobbit. ---- ./hobbit-4.2.0/hobbitd/do_rrd.c.devmon 2006-08-09 22:10:05.000000000 +0200 -+++ ./hobbit-4.2.0/hobbitd/do_rrd.c 2008-01-25 06:23:58.000000000 +0200 +--- hobbit-4.2.0/hobbitd/etcfiles/hobbitcgi.cfg.DIST.devmon 2006-08-09 22:10:07.000000000 +0200 ++++ hobbit-4.2.0/hobbitd/etcfiles/hobbitcgi.cfg.DIST 2008-01-31 07:36:48.000000000 +0200 +@@ -11,7 +11,7 @@ CGI_HOBBITCOLUMN_OPTS="--env=@BBHOME@/et + CGI_FINDHOST_OPTS="--env=@BBHOME@/etc/hobbitserver.cfg" + + # hobbitsvc.cgi options for a normal (current) status display +-CGI_SVC_OPTS="--env=@BBHOME@/etc/hobbitserver.cfg --no-svcid --history=top" ++CGI_SVC_OPTS="--env=@BBHOME@/etc/hobbitserver.cfg --no-svcid --history=top --multigraphs=if_load" + + # bb-hist.cgi options (service history overview) + CGI_HIST_OPTS="--env=@BBHOME@/etc/hobbitserver.cfg --no-svcid" +--- hobbit-4.2.0/hobbitd/do_rrd.c.devmon 2006-08-09 22:10:05.000000000 +0200 ++++ hobbit-4.2.0/hobbitd/do_rrd.c 2008-01-25 06:23:58.000000000 +0200 @@ -309,6 +309,7 @@ static int pickdata(char *buf, pcre *exp #include "rrd/do_external.c" #include "rrd/do_filesizes.c" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-30 06:15:56
|
Revision: 44 http://devmon.svn.sourceforge.net/devmon/?rev=44&view=rev Author: buchanmilne Date: 2008-01-29 22:15:53 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Undo previous unintended commit to devmon.cfg Modified Paths: -------------- trunk/devmon.cfg Modified: trunk/devmon.cfg =================================================================== --- trunk/devmon.cfg 2008-01-30 06:09:01 UTC (rev 43) +++ trunk/devmon.cfg 2008-01-30 06:15:53 UTC (rev 44) @@ -20,8 +20,7 @@ # cluster, the only system that needs to have this set is the one that # the display server is running on; other systems can leave this at default. # (case sensitive) [DEFAULT: /home/hobbit/server/etc/bb-hosts] -#BBHOSTS=/home/hobbit/server/etc/bb-hosts -BBHOSTS=/etc/hobbit/bb-hosts +BBHOSTS=/home/hobbit/server/etc/bb-hosts # BBTAG: This is the indentifier (aka tag) that you use in your bb-hosts # which allows Devmon to determine which of the options after a host @@ -40,8 +39,7 @@ # will cause the host to determine its hostname via the 'hostname' command # (the non-FQDN name will be used). Only useful if in multinode mode. # (case sensitive) [DEFAULT: HOSTNAME] -#NODENAME=HOSTNAME -NODENAME=localhost +NODENAME=HOSTNAME # PIDFILE: Sets the full path to the Devmon process ID file. The directory # containing this file should be read/writable by the user running the Devmon @@ -53,7 +51,7 @@ # read/write privileges to the log directory (case sensitive) # To disable logging to a file, leave this value blank (i.e. 'LOGFILE=') # [DEFAULT: /var/log/devmon.log] -LOGFILE=/var/log/devmon/devmon.log +LOGFILE=/var/log/devmon.log # DBHOST: Should contain the IP or DNS name of the database server # in a multinode cluster. [DEFAULT: localhost] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-30 06:09:22
|
Revision: 43 http://devmon.svn.sourceforge.net/devmon/?rev=43&view=rev Author: buchanmilne Date: 2008-01-29 22:09:01 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Add Hobbit graph configuration for existing devmon rrd-enabled tests Modified Paths: -------------- trunk/devmon.cfg Added Paths: ----------- trunk/extras/devmon-graph.cfg Modified: trunk/devmon.cfg =================================================================== --- trunk/devmon.cfg 2008-01-30 05:20:08 UTC (rev 42) +++ trunk/devmon.cfg 2008-01-30 06:09:01 UTC (rev 43) @@ -20,7 +20,8 @@ # cluster, the only system that needs to have this set is the one that # the display server is running on; other systems can leave this at default. # (case sensitive) [DEFAULT: /home/hobbit/server/etc/bb-hosts] -BBHOSTS=/home/hobbit/server/etc/bb-hosts +#BBHOSTS=/home/hobbit/server/etc/bb-hosts +BBHOSTS=/etc/hobbit/bb-hosts # BBTAG: This is the indentifier (aka tag) that you use in your bb-hosts # which allows Devmon to determine which of the options after a host @@ -39,7 +40,8 @@ # will cause the host to determine its hostname via the 'hostname' command # (the non-FQDN name will be used). Only useful if in multinode mode. # (case sensitive) [DEFAULT: HOSTNAME] -NODENAME=HOSTNAME +#NODENAME=HOSTNAME +NODENAME=localhost # PIDFILE: Sets the full path to the Devmon process ID file. The directory # containing this file should be read/writable by the user running the Devmon @@ -51,7 +53,7 @@ # read/write privileges to the log directory (case sensitive) # To disable logging to a file, leave this value blank (i.e. 'LOGFILE=') # [DEFAULT: /var/log/devmon.log] -LOGFILE=/var/log/devmon.log +LOGFILE=/var/log/devmon/devmon.log # DBHOST: Should contain the IP or DNS name of the database server # in a multinode cluster. [DEFAULT: localhost] Added: trunk/extras/devmon-graph.cfg =================================================================== --- trunk/extras/devmon-graph.cfg (rev 0) +++ trunk/extras/devmon-graph.cfg 2008-01-30 06:09:01 UTC (rev 43) @@ -0,0 +1,37 @@ +[if_load] + FNPATTERN if_load.(.*).rrd + TITLE Network Traffic + YAXIS Bits/second + DEF:in@RRDIDX@=@RRDFN@:ds0:AVERAGE + CDEF:inbytes@RRDIDX@=in@RRDIDX@,8,* + DEF:out@RRDIDX@=@RRDFN@:ds1:AVERAGE + CDEF:outbytes@RRDIDX@=out@RRDIDX@,8,* + LINE1:inbytes@RRDIDX@#@COLOR@:@RRDPARAM@ In + GPRINT:inbytes@RRDIDX@:LAST: %8.2lf %s (cur) + GPRINT:inbytes@RRDIDX@:MAX: %8.2lf %s (max) + GPRINT:inbytes@RRDIDX@:MIN: %8.2lf %s (min) + GPRINT:inbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n + LINE1:outbytes@RRDIDX@#@COLOR@:@RRDPARAM@ Out + GPRINT:outbytes@RRDIDX@:LAST: %8.2lf %s (cur) + GPRINT:outbytes@RRDIDX@:MAX: %8.2lf %s (max) + GPRINT:outbytes@RRDIDX@:MIN: %8.2lf %s (avg) + GPRINT:outbytes@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n + -l 0 + +[temp] + FNPATTERN temp.(.*).rrd + TITLE Temperature + YAXIS Degrees Celsius + DEF:in@RRDIDX@=@RRDFN@:ds0:AVERAGE + DEF:out@RRDIDX@=@RRDFN@:ds1:AVERAGE + LINE1:in@RRDIDX@#@COLOR@:@RRDPARAM@ Temperature + GPRINT:in@RRDIDX@:LAST: %8.2lf %s (cur) + GPRINT:in@RRDIDX@:MAX: %8.2lf %s (max) + GPRINT:in@RRDIDX@:MIN: %8.2lf %s (min) + GPRINT:in@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n + #LINE1:out@RRDIDX@#@COLOR@:@RRDPARAM@ Threshold + #GPRINT:out@RRDIDX@:LAST: %8.2lf %s (cur) + #GPRINT:out@RRDIDX@:MAX: %8.2lf %s (max) + #GPRINT:out@RRDIDX@:MIN: %8.2lf %s (avg) + #GPRINT:out@RRDIDX@:AVERAGE: %8.2lf %s (avg)\n + -l 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-30 05:20:12
|
Revision: 42 http://devmon.svn.sourceforge.net/devmon/?rev=42&view=rev Author: buchanmilne Date: 2008-01-29 21:20:08 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Cover the use of the Hobbit rrd collector for devmon Modified Paths: -------------- trunk/docs/GRAPHING Modified: trunk/docs/GRAPHING =================================================================== --- trunk/docs/GRAPHING 2008-01-30 04:41:41 UTC (rev 41) +++ trunk/docs/GRAPHING 2008-01-30 05:20:08 UTC (rev 42) @@ -2,10 +2,50 @@ DEVMON GRAPHING IN HOBBIT ===================================================================== + -- Graphing tests with rrd repeater tables + ---------------------------------- + ------------------------------------------------------------------- - Here is how you need to format a template in forder to graph into hobbit + One of the useful additions to devmon 0.3 is the rrd option to + repeater tables. For example, a TABLE line such as: + + TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) + + will result in Devmon generatingan RRD header: + <!--DEVMON RRD: if_load 0 0 + + followed by the DS definitions: + DS:ds0:DERIVE:600:0:U DS:ds1:DERIVE:600:0:U + + followed by the values for each instance, e.g.: + eth0.0 3506583:637886 + + In order for Hobbit to collect the values and update the RRD files, you + need to either use a script with the --extra-script option to + hobbitd_rrd (such as extras/devmon.pl) or use the supplied devmon + rrd collector module (extras/do_devmon.c) and the patch ( + extras/hobbit-4.2.0-devmon.patch) which adds the collector to do_rrd.c. + Finally, you need to map each test for which you want to collect data + provided in the devmon format to be collected by the devmon collector, + by adding testname=devmon to TEST2RRD in hobbitserver.cfg (e.g. + if_load=devmon). + + Finally, you need a graph definition, such as the one shipped in + extras/devmon-graph.cfg. If you use the "directory" feature in + Hobbit's hobbitgraph.cfg, you can simply copy the file to the + directory specified. + + At present, most if_load tests support this method, and the compaq-server + and dell-poweredge templates support it for the 'temp' test. + --------------------------------------------------------------------- + USING HOBBIT FEATURES FROM DEVMON +===================================================================== + For specific tests, Hobbit already parses information supplied in + specific formats (typically from old BigBrother extensions). You can + (ab)use this support to have Hobbit graph values from your own templates. + ---------------------------------- -- The 'CPU' test ---------------------------------- @@ -13,11 +53,12 @@ On any device, you would like to graph CPU. - If you get a percentage: - You should add this line to the message file in the cpu directory - in your template. + If you get CPU usilisation value as a percentage, you should add + the following lines to the message file in the cpu directory in your + template: - <!-- DEVMON to RRD <br>CPU 5 min average: {CPUTotal5Min} + <!-- + <br>CPU 5 min average: {CPUTotal5Min} --> For example in: @@ -25,20 +66,19 @@ cisco-pix706/cpu/message Where CPUTotal5Min is a percentage. - Way for 2 pass, and you will get a graph + Wait for 2 passes, and you will get a graph - If you get a load: - ---------------------------------- -- The 'memory' test ---------------------------------- ------------------------------------------------------------------- - On any device, you would like to graph memory usage. - You should add this line to the message file in the memory directory - in your template. + On any device, you would like to graph memory usage. + You should add the following lines to the message file in the memory + directory in your template. - <!-- DEVMON to RRD Physical {mem_used_per}% + <!-- + Physical {mem_used_per}% --> For example in: @@ -46,18 +86,26 @@ cisco-pix706/memory/message Where mem_used_per is a percentage. - Way for 2 pass, and you will get a graph. + Way for 2 passes, and you will get a graph. ---------------------------------- - -- The 'connects' test + -- Using ncv (e.g. the 'connects' test) ---------------------------------- ------------------------------------------------------------------- - This allow you to graph the numbers of connexions. - You should add this line to the message file in the connects directory - in your template. + If you have a test where the value you want to graph is not a repeater + (so Devmon's RRD collector isn't useful), and it isn't for a test + that Hobbit already understands a specific format, then Hobbit's NCV + collector is probably the last remaining option. Add a Name-colon-value + line to your message, surrounded by HTML tags (if you want to hide the + line on the normal Hobbit display. - <!-- DEVMON to RRD connections: {totCurCon} + For example, to graph the numbers of connections you should add the + following lines to the message file in the connects directory in your + template: + + <!-- + connections: {totCurCon} --> For example in: @@ -65,53 +113,11 @@ cisco-asa/connects/message Where totCurCon is your number of connexions you want to graph. - In order to graph it, you need to either ncv ou extra-script method. - SEE extra-rrd.pl for extra-script method or this email for the ncv merthod - http://sourceforge.net/mailarchive/message.php?msg_name=4762F019.7090003%40mcclatchyinteractive.com + Then, add "connects=ncv" to TEST2RRD in hobbitserver.cfg, as well as the + RRD options for connects, via: + NCV_connects="*:GAUGE" + + Finally, you need a graph definition, such as the one shipped in + extras/connects-graph.cfg ---------------------------------- - -- The 'if_load' test - ---------------------------------- - ------------------------------------------------------------------- - - This allow you to graph the graph of all interfaces. - You should add this line to the message file in the connects directory - in your template. - - TABLE:rrd(DS:ds0:ifInOctets:COUNTER; DS:ds1:ifOutOctets:COUNTER) - - This will show data in a htmltable and add rrd information in the status page. - - For example in: - - cisco-asa/if_load/message - - In order to check, you should see RRD data information in the status page of - the service corresponding to your devmon modele when showing source html. - If not make sur you have set some alarm in the exceptions file - (See "The 'exceptions' file" in TEMPLATES). - - ifName : alarm : .+ - - For example in: - - cisco-asa/if_load/exceptions - - So intead of this: - Not alarming on any values - ... - <!--DEVMON RRD: if_load 0 0 - DS:ds0:COUNTER:600:0:U DS:ds1:COUNTER:600:0:U - --> - - You will get: - Alarming on (outside,dmz) - ... - <!--DEVMON RRD: if_load 0 0 - DS:ds0:COUNTER:600:0:U DS:ds1:COUNTER:600:0:U - outside 46501443:1513183662 - dmz 2966670253:2566709251 - --> - - In order to graph it, you need to either ncv ou extra-script method. - SEE extra-rrd.pl in the docs diretory for extra-script method This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-30 04:41:44
|
Revision: 41 http://devmon.svn.sourceforge.net/devmon/?rev=41&view=rev Author: buchanmilne Date: 2008-01-29 20:41:41 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Alarm/graph on any device name that is not explicitly ignored (so Fa.+ works on 6509, S.+ works on 7600 using 6509 template etc.) Modified Paths: -------------- trunk/templates/cisco-1700/if_col/exceptions trunk/templates/cisco-1700/if_dsc/exceptions trunk/templates/cisco-1700/if_err/exceptions trunk/templates/cisco-1700/if_load/exceptions trunk/templates/cisco-1700/if_stat/exceptions trunk/templates/cisco-1841/if_col/exceptions trunk/templates/cisco-1841/if_dsc/exceptions trunk/templates/cisco-1841/if_err/exceptions trunk/templates/cisco-1841/if_load/exceptions trunk/templates/cisco-1841/if_stat/exceptions trunk/templates/cisco-2600/if_col/exceptions trunk/templates/cisco-2600/if_dsc/exceptions trunk/templates/cisco-2600/if_err/exceptions trunk/templates/cisco-2600/if_load/exceptions trunk/templates/cisco-2801/if_col/exceptions trunk/templates/cisco-2801/if_dsc/exceptions trunk/templates/cisco-2801/if_err/exceptions trunk/templates/cisco-2801/if_load/exceptions trunk/templates/cisco-2801/if_stat/exceptions trunk/templates/cisco-2900/if_col/exceptions trunk/templates/cisco-2900/if_dsc/exceptions trunk/templates/cisco-2900/if_err/exceptions trunk/templates/cisco-2900/if_load/exceptions trunk/templates/cisco-2900/if_stat/exceptions trunk/templates/cisco-2950/if_col/exceptions trunk/templates/cisco-2950/if_dsc/exceptions trunk/templates/cisco-2950/if_err/exceptions trunk/templates/cisco-2950/if_load/exceptions trunk/templates/cisco-2950/if_stat/exceptions trunk/templates/cisco-2960/if_col/exceptions trunk/templates/cisco-2960/if_dsc/exceptions trunk/templates/cisco-2960/if_err/exceptions trunk/templates/cisco-2960/if_load/exceptions trunk/templates/cisco-2960/if_stat/exceptions trunk/templates/cisco-2970/if_col/exceptions trunk/templates/cisco-2970/if_dsc/exceptions trunk/templates/cisco-2970/if_err/exceptions trunk/templates/cisco-2970/if_load/exceptions trunk/templates/cisco-2970/if_stat/exceptions trunk/templates/cisco-3500/if_col/exceptions trunk/templates/cisco-3500/if_dsc/exceptions trunk/templates/cisco-3500/if_err/exceptions trunk/templates/cisco-3500/if_load/exceptions trunk/templates/cisco-3500/if_stat/exceptions trunk/templates/cisco-3550/if_col/exceptions trunk/templates/cisco-3550/if_dsc/exceptions trunk/templates/cisco-3550/if_err/exceptions trunk/templates/cisco-3550/if_load/exceptions trunk/templates/cisco-3550/if_stat/exceptions trunk/templates/cisco-3725/if_col/exceptions trunk/templates/cisco-3725/if_dsc/exceptions trunk/templates/cisco-3725/if_err/exceptions trunk/templates/cisco-3725/if_load/exceptions trunk/templates/cisco-3725/if_stat/exceptions trunk/templates/cisco-3750/if_col/exceptions trunk/templates/cisco-3750/if_dsc/exceptions trunk/templates/cisco-3750/if_err/exceptions trunk/templates/cisco-3750/if_load/exceptions trunk/templates/cisco-3750/if_stat/exceptions trunk/templates/cisco-6509/if_col/exceptions trunk/templates/cisco-6509/if_dsc/exceptions trunk/templates/cisco-6509/if_err/exceptions trunk/templates/cisco-6509/if_load/exceptions trunk/templates/cisco-6509/if_stat/exceptions trunk/templates/cisco-7206/if_load/exceptions trunk/templates/cisco-asa/if_dsc/exceptions trunk/templates/cisco-asa/if_err/exceptions Modified: trunk/templates/cisco-1700/if_col/exceptions =================================================================== --- trunk/templates/cisco-1700/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1700/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1700/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-1700/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1700/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1700/if_err/exceptions =================================================================== --- trunk/templates/cisco-1700/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1700/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1700/if_load/exceptions =================================================================== --- trunk/templates/cisco-1700/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1700/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1700/if_stat/exceptions =================================================================== --- trunk/templates/cisco-1700/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1700/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1841/if_col/exceptions =================================================================== --- trunk/templates/cisco-1841/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1841/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1841/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-1841/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1841/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1841/if_err/exceptions =================================================================== --- trunk/templates/cisco-1841/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1841/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1841/if_load/exceptions =================================================================== --- trunk/templates/cisco-1841/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1841/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-1841/if_stat/exceptions =================================================================== --- trunk/templates/cisco-1841/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-1841/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2600/if_col/exceptions =================================================================== --- trunk/templates/cisco-2600/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2600/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2600/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2600/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2600/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2600/if_err/exceptions =================================================================== --- trunk/templates/cisco-2600/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2600/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2600/if_load/exceptions =================================================================== --- trunk/templates/cisco-2600/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2600/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2801/if_col/exceptions =================================================================== --- trunk/templates/cisco-2801/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2801/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2801/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2801/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2801/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2801/if_err/exceptions =================================================================== --- trunk/templates/cisco-2801/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2801/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2801/if_load/exceptions =================================================================== --- trunk/templates/cisco-2801/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2801/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2801/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2801/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2801/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2900/if_col/exceptions =================================================================== --- trunk/templates/cisco-2900/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2900/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-2900/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2900/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2900/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-2900/if_err/exceptions =================================================================== --- trunk/templates/cisco-2900/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2900/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-2900/if_load/exceptions =================================================================== --- trunk/templates/cisco-2900/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2900/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-2900/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2900/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2900/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-2950/if_col/exceptions =================================================================== --- trunk/templates/cisco-2950/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2950/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2950/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2950/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2950/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2950/if_err/exceptions =================================================================== --- trunk/templates/cisco-2950/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2950/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2950/if_load/exceptions =================================================================== --- trunk/templates/cisco-2950/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2950/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2950/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2950/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2950/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2960/if_col/exceptions =================================================================== --- trunk/templates/cisco-2960/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2960/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi0/4[5-8] +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2960/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2960/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2960/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi0/4[5-8] +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2960/if_err/exceptions =================================================================== --- trunk/templates/cisco-2960/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2960/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi0/4[5-8] +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2960/if_load/exceptions =================================================================== --- trunk/templates/cisco-2960/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2960/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi0/4[5-8] +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2960/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2960/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2960/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi0/4[5-8] +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2970/if_col/exceptions =================================================================== --- trunk/templates/cisco-2970/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2970/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2970/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-2970/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2970/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2970/if_err/exceptions =================================================================== --- trunk/templates/cisco-2970/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2970/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2970/if_load/exceptions =================================================================== --- trunk/templates/cisco-2970/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2970/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-2970/if_stat/exceptions =================================================================== --- trunk/templates/cisco-2970/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-2970/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3500/if_col/exceptions =================================================================== --- trunk/templates/cisco-3500/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3500/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-3500/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-3500/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3500/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-3500/if_err/exceptions =================================================================== --- trunk/templates/cisco-3500/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3500/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-3500/if_load/exceptions =================================================================== --- trunk/templates/cisco-3500/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3500/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-3500/if_stat/exceptions =================================================================== --- trunk/templates/cisco-3500/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3500/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VL.+ Modified: trunk/templates/cisco-3550/if_col/exceptions =================================================================== --- trunk/templates/cisco-3550/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3550/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3550/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-3550/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3550/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3550/if_err/exceptions =================================================================== --- trunk/templates/cisco-3550/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3550/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3550/if_load/exceptions =================================================================== --- trunk/templates/cisco-3550/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3550/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3550/if_stat/exceptions =================================================================== --- trunk/templates/cisco-3550/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3550/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3725/if_col/exceptions =================================================================== --- trunk/templates/cisco-3725/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3725/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Fa.+|T1 +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|As.+ Modified: trunk/templates/cisco-3725/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-3725/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3725/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Fa.+|T1 +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|As.+ Modified: trunk/templates/cisco-3725/if_err/exceptions =================================================================== --- trunk/templates/cisco-3725/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3725/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Fa.+|T1 +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|As.+ Modified: trunk/templates/cisco-3725/if_load/exceptions =================================================================== --- trunk/templates/cisco-3725/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3725/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3725/if_stat/exceptions =================================================================== --- trunk/templates/cisco-3725/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3725/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3750/if_col/exceptions =================================================================== --- trunk/templates/cisco-3750/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3750/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3750/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-3750/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3750/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3750/if_err/exceptions =================================================================== --- trunk/templates/cisco-3750/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3750/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3750/if_load/exceptions =================================================================== --- trunk/templates/cisco-3750/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3750/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-3750/if_stat/exceptions =================================================================== --- trunk/templates/cisco-3750/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-3750/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-6509/if_col/exceptions =================================================================== --- trunk/templates/cisco-6509/if_col/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-6509/if_col/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VLAN.+ Modified: trunk/templates/cisco-6509/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-6509/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-6509/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VLAN.+ Modified: trunk/templates/cisco-6509/if_err/exceptions =================================================================== --- trunk/templates/cisco-6509/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-6509/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VLAN.+ Modified: trunk/templates/cisco-6509/if_load/exceptions =================================================================== --- trunk/templates/cisco-6509/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-6509/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VLAN.+ Modified: trunk/templates/cisco-6509/if_stat/exceptions =================================================================== --- trunk/templates/cisco-6509/if_stat/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-6509/if_stat/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+|VLAN.+ Modified: trunk/templates/cisco-7206/if_load/exceptions =================================================================== --- trunk/templates/cisco-7206/if_load/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-7206/if_load/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-asa/if_dsc/exceptions =================================================================== --- trunk/templates/cisco-asa/if_dsc/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-asa/if_dsc/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ Modified: trunk/templates/cisco-asa/if_err/exceptions =================================================================== --- trunk/templates/cisco-asa/if_err/exceptions 2008-01-30 04:30:42 UTC (rev 40) +++ trunk/templates/cisco-asa/if_err/exceptions 2008-01-30 04:41:41 UTC (rev 41) @@ -1,2 +1,2 @@ -ifName : alarm : Gi.+ +ifName : alarm : .+ ifName : ignore : Nu.+|Vl.+ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <buc...@us...> - 2008-01-30 04:31:00
|
Revision: 40 http://devmon.svn.sourceforge.net/devmon/?rev=40&view=rev Author: buchanmilne Date: 2008-01-29 20:30:42 -0800 (Tue, 29 Jan 2008) Log Message: ----------- Add color-tag aliases the linux-openwrt memory test so page color changes Modified Paths: -------------- trunk/templates/linux-openwrt/memory/message Modified: trunk/templates/linux-openwrt/memory/message =================================================================== --- trunk/templates/linux-openwrt/memory/message 2008-01-25 04:38:53 UTC (rev 39) +++ trunk/templates/linux-openwrt/memory/message 2008-01-30 04:30:42 UTC (rev 40) @@ -1,4 +1,4 @@ Memory Used Total Percentage -Physical {MemSizeUsed}kB {MemSize}kB {MemPerUse}% -Swap {SwapSizeUsed}kB {SwapSize}kB {SwapPerUse}% +Physical {MemSizeUsed}kB {MemSize}kB {MemPerUse}% {MemPerUse.color} +Swap {SwapSizeUsed}kB {SwapSize}kB {SwapPerUse}% {SwapPerUse.color} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: Buchan M. <bg...@st...> - 2008-01-25 13:58:20
|
On Friday 25 January 2008 12:15:12 xbgmsharp wrote: > hello, > > Great job!! > I would like to know more about do_devmon.c? > What are you planing? Well, any devmon test with RRD options on the table in the message file should be graphed by hobbit (with do_rrd.c and the patch from this commit), if you add testname=devmon to TEST2RRD in hobbitserver.cfg. No extra script is required. > When do you exept to release the beta 4? Soon. Or, maybe rc1. However, we may want to look at the issue with inequality thresholds first (which I will try and do on the weekend). > I thought we was going in a test phase. Yes, and it would be nice if people could test the hobbit. > also i am reading to commit many change on cisco template and add > other but i see than you change a bunch of CPU message in template. Why? It's in the log: "Add ciscocpu.pl-compatible lines to cpu message files for cisco devices to get cpu graphs" Regards, Buchan |