root / plugins / router / snmp_zyxel_zywall__ram @ 5061ef1d
Historique | Voir | Annoter | Télécharger (2,51 ko)
| 1 | bbdfbe67 | Branislav Bozgai | #!/usr/bin/perl -w |
|---|---|---|---|
| 2 | # |
||
| 3 | # Copyright (C) 2009 Branislav Bozgai |
||
| 4 | # |
||
| 5 | # Munin plugin to monitor ZyXel ZyWall series routers RAM utilization. |
||
| 6 | # Based on snmp__if_ plugin. |
||
| 7 | # |
||
| 8 | # This program is free software; you can redistribute it and/or |
||
| 9 | # modify it under the terms of the GNU General Public License |
||
| 10 | # as published by the Free Software Foundation; version 2 dated June, |
||
| 11 | # 1991. |
||
| 12 | # |
||
| 13 | # This program is distributed in the hope that it will be useful, |
||
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 16 | # GNU General Public License for more details. |
||
| 17 | # |
||
| 18 | # You should have received a copy of the GNU General Public License |
||
| 19 | # along with this program; if not, write to the Free Software |
||
| 20 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||
| 21 | |||
| 22 | |||
| 23 | #%# family=snmpauto |
||
| 24 | #%# capabilities=snmpconf |
||
| 25 | |||
| 26 | use strict; |
||
| 27 | use Net::SNMP; |
||
| 28 | |||
| 29 | my $DEBUG = 0; |
||
| 30 | |||
| 31 | my $host = $ENV{host} || undef;
|
||
| 32 | my $port = $ENV{port} || 161;
|
||
| 33 | my $community = $ENV{community} || "public";
|
||
| 34 | |||
| 35 | my $response; |
||
| 36 | |||
| 37 | if (defined $ARGV[0] and $ARGV[0] eq "snmpconf") |
||
| 38 | {
|
||
| 39 | print "require 1.3.6.1.4.1.890.1.6.1.1.3.0 \n"; |
||
| 40 | exit 0; |
||
| 41 | } |
||
| 42 | |||
| 43 | if ($0 =~ /^(?:|.*\/)snmp_zyxel_zywall_([^_]+)_ram$/) |
||
| 44 | {
|
||
| 45 | $host = $1; |
||
| 46 | if ($host =~ /^([^:]+):(\d+)$/) |
||
| 47 | {
|
||
| 48 | $host = $1; |
||
| 49 | $port = $2; |
||
| 50 | } |
||
| 51 | } |
||
| 52 | elsif (!defined($host)) |
||
| 53 | {
|
||
| 54 | print "# Debug: $0 -- $1\n" if $DEBUG; |
||
| 55 | die "# Error: couldn't understand what I'm supposed to monitor."; |
||
| 56 | } |
||
| 57 | |||
| 58 | my $sysRAMUsage = "1.3.6.1.4.1.890.1.6.1.1.3.0"; |
||
| 59 | |||
| 60 | my ($session, $error) = Net::SNMP->session( |
||
| 61 | -hostname => $host, |
||
| 62 | -community => $community, |
||
| 63 | -port => $port |
||
| 64 | ); |
||
| 65 | |||
| 66 | |||
| 67 | if (!defined ($session)) |
||
| 68 | {
|
||
| 69 | die "Croaking: $error"; |
||
| 70 | } |
||
| 71 | |||
| 72 | |||
| 73 | if ($ARGV[0] and $ARGV[0] eq "config") |
||
| 74 | {
|
||
| 75 | print "host_name $host\n"; |
||
| 76 | if (!defined ($response = $session->get_request($sysRAMUsage))) |
||
| 77 | {
|
||
| 78 | die "Croaking: " . $session->error(); |
||
| 79 | } |
||
| 80 | print "graph_title RAM usage\n"; |
||
| 81 | e777037d | dipohl | print "graph_category memory\n"; |
| 82 | bbdfbe67 | Branislav Bozgai | print "graph_args --base 1000 -r --lower-limit 0 --upper-limit 100\n"; |
| 83 | print "graph_vlabel %\n"; |
||
| 84 | print "graph_scale no\n"; |
||
| 85 | print "graph_period second\n"; |
||
| 86 | print "graph_info RAM usage\n"; |
||
| 87 | print "sysRAMUsage.label RAM Usage\n"; |
||
| 88 | print "sysRAMUsage.draw AREA\n"; |
||
| 89 | exit 0; |
||
| 90 | } |
||
| 91 | |||
| 92 | |||
| 93 | if (defined ($response = $session->get_request($sysRAMUsage))) |
||
| 94 | {
|
||
| 95 | print "sysRAMUsage.value ", $response->{$sysRAMUsage}, "\n";
|
||
| 96 | } |
||
| 97 | else |
||
| 98 | {
|
||
| 99 | print "sysRAMUsage.value U\n"; |
||
| 100 | } |
||
| 101 | |||
| 102 | # vim:syntax=perl |
