From: <buc...@us...> - 2011-01-22 22:41:04
|
Revision: 201 http://devmon.svn.sourceforge.net/devmon/?rev=201&view=rev Author: buchanmilne Date: 2011-01-22 22:40:57 +0000 (Sat, 22 Jan 2011) Log Message: ----------- Commit some files missed in previous commits renamed messages file to message in netscreen-5gt Added Paths: ----------- trunk/templates/cisco-1600/cpu/exceptions trunk/templates/cisco-2811/if_col/ trunk/templates/cisco-2811/if_col/exceptions trunk/templates/cisco-2811/if_col/message trunk/templates/cisco-2811/if_col/oids trunk/templates/cisco-2811/if_col/thresholds trunk/templates/cisco-2811/if_col/transforms trunk/templates/cisco-2811/memory/ trunk/templates/cisco-2811/memory/exceptions trunk/templates/cisco-2811/memory/message trunk/templates/cisco-2811/memory/oids trunk/templates/cisco-2811/memory/thresholds trunk/templates/cisco-2811/memory/transforms trunk/templates/cisco-2811/serial/ trunk/templates/cisco-2811/serial/exceptions trunk/templates/cisco-2811/serial/message trunk/templates/cisco-2811/serial/oids trunk/templates/cisco-2811/serial/thresholds trunk/templates/cisco-2811/serial/transforms trunk/templates/cisco-2811/temp/ trunk/templates/cisco-2811/temp/exceptions trunk/templates/cisco-2811/temp/message trunk/templates/cisco-2811/temp/oids trunk/templates/cisco-2811/temp/thresholds trunk/templates/cisco-2811/temp/transforms trunk/templates/netscreen-5gt/memory/message trunk/templates/vmware-esx4/cpu/exceptions trunk/templates/vmware-esx4/guests/transforms trunk/templates/vmware-esx4/memory/exceptions Removed Paths: ------------- trunk/templates/netscreen-5gt/memory/messages Added: trunk/templates/cisco-1600/cpu/exceptions =================================================================== Added: trunk/templates/cisco-2811/if_col/exceptions =================================================================== --- trunk/templates/cisco-2811/if_col/exceptions (rev 0) +++ trunk/templates/cisco-2811/if_col/exceptions 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,2 @@ +ifName : alarm : .+ +ifName : ignore : Nu.+|Vl.+ Added: trunk/templates/cisco-2811/if_col/message =================================================================== --- trunk/templates/cisco-2811/if_col/message (rev 0) +++ trunk/templates/cisco-2811/if_col/message 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/if_col/oids =================================================================== --- trunk/templates/cisco-2811/if_col/oids (rev 0) +++ trunk/templates/cisco-2811/if_col/oids 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/if_col/thresholds =================================================================== --- trunk/templates/cisco-2811/if_col/thresholds (rev 0) +++ trunk/templates/cisco-2811/if_col/thresholds 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/if_col/transforms =================================================================== --- trunk/templates/cisco-2811/if_col/transforms (rev 0) +++ trunk/templates/cisco-2811/if_col/transforms 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/memory/exceptions =================================================================== Added: trunk/templates/cisco-2811/memory/message =================================================================== --- trunk/templates/cisco-2811/memory/message (rev 0) +++ trunk/templates/cisco-2811/memory/message 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/memory/oids =================================================================== --- trunk/templates/cisco-2811/memory/oids (rev 0) +++ trunk/templates/cisco-2811/memory/oids 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/memory/thresholds =================================================================== --- trunk/templates/cisco-2811/memory/thresholds (rev 0) +++ trunk/templates/cisco-2811/memory/thresholds 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/memory/transforms =================================================================== --- trunk/templates/cisco-2811/memory/transforms (rev 0) +++ trunk/templates/cisco-2811/memory/transforms 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/serial/exceptions =================================================================== --- trunk/templates/cisco-2811/serial/exceptions (rev 0) +++ trunk/templates/cisco-2811/serial/exceptions 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,2 @@ +entPhysicalDescr : ignore : Nu.+|Vl.+|Gi.+|.*AIM.*|.*DaughterCard.*|.*Gt96k.* +entPhysicalDescr : alarm : Nothingtoworryabout Added: trunk/templates/cisco-2811/serial/message =================================================================== --- trunk/templates/cisco-2811/serial/message (rev 0) +++ trunk/templates/cisco-2811/serial/message 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/serial/oids =================================================================== --- trunk/templates/cisco-2811/serial/oids (rev 0) +++ trunk/templates/cisco-2811/serial/oids 2011-01-22 22:40:57 UTC (rev 201) @@ -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-2811/serial/thresholds =================================================================== Added: trunk/templates/cisco-2811/serial/transforms =================================================================== Added: trunk/templates/cisco-2811/temp/exceptions =================================================================== Added: trunk/templates/cisco-2811/temp/message =================================================================== --- trunk/templates/cisco-2811/temp/message (rev 0) +++ trunk/templates/cisco-2811/temp/message 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,5 @@ + +Thermal sensors: +TABLE: noalarmsmsg,rrd(DS:ds0:ciscoEnvMonTemperatureStatusValue:GAUGE; DS:ds1:ciscoEnvMonTemperatureThreshold:GAUGE) +ID|Sensor Location|Temp|Threshold|Condition +{ciscoEnvMonTemperatureId}|{ciscoEnvMonTemperatureStatusDescr}|{ciscoEnvMonTemperatureStatusValue}|{ciscoEnvMonTemperatureThreshold}|{ciscoEnvMonTemperatureState.color}{ciscoEnvMonTemperatureStateTxt} Added: trunk/templates/cisco-2811/temp/oids =================================================================== --- trunk/templates/cisco-2811/temp/oids (rev 0) +++ trunk/templates/cisco-2811/temp/oids 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,4 @@ +ciscoEnvMonTemperatureStatusDescr: 1.3.6.1.4.1.9.9.13.1.3.1.2 : branch +ciscoEnvMonTemperatureStatusValue: 1.3.6.1.4.1.9.9.13.1.3.1.3 : branch +ciscoEnvMonTemperatureThreshold : 1.3.6.1.4.1.9.9.13.1.3.1.4 : branch +ciscoEnvMonTemperatureState: 1.3.6.1.4.1.9.9.13.1.3.1.6 : branch Added: trunk/templates/cisco-2811/temp/thresholds =================================================================== --- trunk/templates/cisco-2811/temp/thresholds (rev 0) +++ trunk/templates/cisco-2811/temp/thresholds 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,4 @@ +ciscoEnvMonTemperatureStateTxt : green : normal +ciscoEnvMonTemperatureStateTxt : yellow : warning|shutdown|notFunctioning +ciscoEnvMonTemperatureStateTxt : red : critical +ciscoEnvMonTemperatureStateTxt : clear : nonPresent Added: trunk/templates/cisco-2811/temp/transforms =================================================================== --- trunk/templates/cisco-2811/temp/transforms (rev 0) +++ trunk/templates/cisco-2811/temp/transforms 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,2 @@ +ciscoEnvMonTemperatureStateTxt : SWITCH : {ciscoEnvMonTemperatureState} 1=normal,2=warning,3=critical,4=shutdown,5=nonPresent,6=notFunctioning +ciscoEnvMonTemperatureId : REGSUB : {ciscoEnvMonTemperatureStatusDescr} /(\S+) (\S+) (\S+)( \((.*)\))?(( (\S+))?)( \(.*\))? temp.*/$1$2$3$8/ Copied: trunk/templates/netscreen-5gt/memory/message (from rev 193, trunk/templates/netscreen-5gt/memory/messages) =================================================================== --- trunk/templates/netscreen-5gt/memory/message (rev 0) +++ trunk/templates/netscreen-5gt/memory/message 2011-01-22 22:40:57 UTC (rev 201) @@ -0,0 +1,9 @@ +{mem_used_per.errors} +Free memory: {mem_free} bytes ({mem_free_per}%) +Used memory: {mem_used} bytes ({mem_used_per}%) {mem_used_per.color} +------------- ---------------- +Total memory: {mem_total} bytes (100%) + +Alarm threshold: yellow={mem_used_per.thresh:yellow}%, red={mem_used_per.thresh:red}% +<!-- DEVMON to RRD Physical {mem_used_per}% +--> Deleted: trunk/templates/netscreen-5gt/memory/messages =================================================================== --- trunk/templates/netscreen-5gt/memory/messages 2011-01-22 22:29:21 UTC (rev 200) +++ trunk/templates/netscreen-5gt/memory/messages 2011-01-22 22:40:57 UTC (rev 201) @@ -1,9 +0,0 @@ -{mem_used_per.errors} -Free memory: {mem_free} bytes ({mem_free_per}%) -Used memory: {mem_used} bytes ({mem_used_per}%) {mem_used_per.color} -------------- ---------------- -Total memory: {mem_total} bytes (100%) - -Alarm threshold: yellow={mem_used_per.thresh:yellow}%, red={mem_used_per.thresh:red}% -<!-- DEVMON to RRD Physical {mem_used_per}% ---> Added: trunk/templates/vmware-esx4/cpu/exceptions =================================================================== Added: trunk/templates/vmware-esx4/guests/transforms =================================================================== Added: trunk/templates/vmware-esx4/memory/exceptions =================================================================== This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |