# 07 ------------------------------------------------------------------------ # # Data to graph: Cisco memory check # # Service type: memory-check # # Nagios plugin: check_snmp_mem.pl # # Nagios output: ||Processor:50%,I/O:21% : 44% : : OK|| # # ||Processor:87%,I/O:21% : 72% : > 80 : WARNING|| # # IOS 12.2(35)SE5: # # ||Driver text:0%,Processor:17%,I/O:39% : 18% : : OK|| # # --------------------------------------------------------------------------- # /output:.*Processor:(\d+)\%,I\/O:(\d+)\% : (\d+)\% :/ and push @s, [ memory, [ cpu, GAUGE, $1 ], [ io, GAUGE, $2 ], [ all, GAUGE, $3 ] ];