root / plugins / router / snmp__juniper @ 7cf2dda9
Historique | Voir | Annoter | Télécharger (5,86 ko)
| 1 | 7cf2dda9 | Lars Kruse | #!/usr/bin/env python3 |
|---|---|---|---|
| 2 | c255203d | Johann Schmitz | """ |
| 3 | =head1 NAME |
||
| 4 | |||
| 5 | snmp__juniper - Health monitoring plugin for Juniper firewalls. |
||
| 6 | |||
| 7 | =head1 CONFIGURATION |
||
| 8 | |||
| 9 | Make sure your Juniper device is accessible via SNMP (e.g. via snmpwalk) and the munin-node |
||
| 10 | f78847fb | Johann Schmitz | has been configured correctly. |
| 11 | c255203d | Johann Schmitz | |
| 12 | =head1 VERSION |
||
| 13 | |||
| 14 | 0.0.1 |
||
| 15 | |||
| 16 | =head1 BUGS |
||
| 17 | |||
| 18 | Open a ticket at https://github.com/ercpe/contrib if you find one. |
||
| 19 | |||
| 20 | =head1 AUTHOR |
||
| 21 | |||
| 22 | 7cf2dda9 | Lars Kruse | Copyright (C) 2014 Johann Schmitz <johann@j-schmitz.net> |
| 23 | |||
| 24 | c255203d | Johann Schmitz | |
| 25 | =head1 LICENSE |
||
| 26 | |||
| 27 | 7cf2dda9 | Lars Kruse | This program is free software; you can redistribute it and/or modify |
| 28 | it under the terms of the GNU Library General Public License as published by |
||
| 29 | the Free Software Foundation; version 2 only |
||
| 30 | |||
| 31 | This program is distributed in the hope that it will be useful, |
||
| 32 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 33 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 34 | GNU Library General Public License for more details. |
||
| 35 | |||
| 36 | You should have received a copy of the GNU Library General Public License |
||
| 37 | along with this program; if not, write to the Free Software |
||
| 38 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||
| 39 | |||
| 40 | SPDX-License-Identifier: GPL-2.0-only |
||
| 41 | |||
| 42 | |||
| 43 | =head1 MAGIC MARKERS |
||
| 44 | |||
| 45 | #%# family=snmpauto |
||
| 46 | #%# capabilities=snmpconf |
||
| 47 | c255203d | Johann Schmitz | |
| 48 | =cut |
||
| 49 | """ |
||
| 50 | |||
| 51 | import re |
||
| 52 | import sys |
||
| 53 | import os |
||
| 54 | 2fff9d6b | Johann Schmitz | import logging |
| 55 | |||
| 56 | from pysnmp.entity.rfc3413.oneliner import cmdgen |
||
| 57 | c255203d | Johann Schmitz | |
| 58 | host = None |
||
| 59 | f78847fb | Johann Schmitz | port = os.getenv('port', 161)
|
| 60 | c255203d | Johann Schmitz | community = os.getenv('community', None)
|
| 61 | |||
| 62 | f78847fb | Johann Schmitz | debug = bool(os.getenv('MUNIN_DEBUG', os.getenv('DEBUG', 0)))
|
| 63 | |||
| 64 | if debug: |
||
| 65 | 7cf2dda9 | Lars Kruse | logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)-7s %(message)s') |
| 66 | f78847fb | Johann Schmitz | |
| 67 | c255203d | Johann Schmitz | try: |
| 68 | 7cf2dda9 | Lars Kruse | match = re.search(r"^(?:|.*/)snmp_([^_]+)_juniper$", sys.argv[0]) |
| 69 | host = match.group(1) |
||
| 70 | request = match.group(2) |
||
| 71 | match = re.search(r"^([^:]+):(\d+)$", host) |
||
| 72 | if match is not None: |
||
| 73 | host = match.group(1) |
||
| 74 | port = match.group(2) |
||
| 75 | except Exception: |
||
| 76 | pass |
||
| 77 | c255203d | Johann Schmitz | |
| 78 | 2fff9d6b | Johann Schmitz | jnxOperatingTable = '1.3.6.1.4.1.2636.3.1.13.1.5' |
| 79 | |||
| 80 | jnxOperatingTemp = '1.3.6.1.4.1.2636.3.1.13.1.7' |
||
| 81 | jnxOperatingCPU = '1.3.6.1.4.1.2636.3.1.13.1.8' |
||
| 82 | jnxOperatingBuffer = '1.3.6.1.4.1.2636.3.1.13.1.11' |
||
| 83 | |||
| 84 | 7cf2dda9 | Lars Kruse | |
| 85 | 2fff9d6b | Johann Schmitz | class JunOSSnmpClient(object): |
| 86 | 7cf2dda9 | Lars Kruse | def __init__(self, host, port, community): |
| 87 | self.hostname = host |
||
| 88 | self.transport = cmdgen.UdpTransportTarget((host, int(port))) |
||
| 89 | self.auth = cmdgen.CommunityData('test-agent', community)
|
||
| 90 | self.gen = cmdgen.CommandGenerator() |
||
| 91 | |||
| 92 | def get_devices(self): |
||
| 93 | errorIndication, errorStatus, errorIndex, varBindTable = self.gen.bulkCmd( |
||
| 94 | self.auth, |
||
| 95 | self.transport, |
||
| 96 | 0, 20, |
||
| 97 | jnxOperatingTable) |
||
| 98 | # the following line is only available with pysnmp >= 4.2.4 (?) |
||
| 99 | # ignoreNonIncreasingOids=True) |
||
| 100 | |||
| 101 | if errorIndication: |
||
| 102 | logging.error("SNMP bulkCmd for devices failed: %s, %s, %s"
|
||
| 103 | % (errorIndication, errorStatus, errorIndex)) |
||
| 104 | return {}
|
||
| 105 | |||
| 106 | devices = {}
|
||
| 107 | for row in varBindTable: |
||
| 108 | for name, value in row: |
||
| 109 | if not str(name).startswith(jnxOperatingTable): |
||
| 110 | continue |
||
| 111 | |||
| 112 | if 'Routing Engine' in str(value): |
||
| 113 | devices[str(name)[len(jnxOperatingTable):]] = re.sub( |
||
| 114 | r"[^\w]", '_', str(value).replace(' Routing Engine', ''))
|
||
| 115 | return devices |
||
| 116 | |||
| 117 | def get_one(self, prefix_oid, suffix): |
||
| 118 | oid = prefix_oid + suffix |
||
| 119 | errorIndication, errorStatus, errorIndex, varBindTable = self.gen.getCmd( |
||
| 120 | self.auth, |
||
| 121 | self.transport, |
||
| 122 | oid) |
||
| 123 | |||
| 124 | if errorIndication: |
||
| 125 | logging.error("SNMP getCmd for %s failed: %s, %s, %s"
|
||
| 126 | % (oid, errorIndication, errorStatus, errorIndex)) |
||
| 127 | return None |
||
| 128 | |||
| 129 | return int(varBindTable[0][1]) |
||
| 130 | |||
| 131 | def get_data(self): |
||
| 132 | devs = self.get_devices() |
||
| 133 | |||
| 134 | return {
|
||
| 135 | 'temp': dict([(name, self.get_one(jnxOperatingTemp, suffix)) |
||
| 136 | for suffix, name in devs.items()]), |
||
| 137 | 'cpu': dict([(name, self.get_one(jnxOperatingCPU, suffix)) |
||
| 138 | for suffix, name in devs.items()]), |
||
| 139 | 'buffer': dict([(name, self.get_one(jnxOperatingBuffer, suffix)) |
||
| 140 | for suffix, name in devs.items()]), |
||
| 141 | } |
||
| 142 | |||
| 143 | def print_config(self): |
||
| 144 | devices = self.get_devices() |
||
| 145 | |||
| 146 | data_def = [ |
||
| 147 | ('temp', self.hostname, 'System temperature', '--base 1000',
|
||
| 148 | 'System temperature in C'), |
||
| 149 | ('cpu', self.hostname, 'CPU usage', '--base 1000 -l 0 --upper-limit 100',
|
||
| 150 | 'CPU usage in %'), |
||
| 151 | ('buffer', self.hostname, 'Buffer usage', '--base 1000 -l 0 --upper-limit 100',
|
||
| 152 | 'Buffer usage in %'), |
||
| 153 | ] |
||
| 154 | |||
| 155 | for datarow, hostname, title, args, vlabel in data_def: |
||
| 156 | print("""multigraph juniper_{datarow}
|
||
| 157 | f78847fb | Johann Schmitz | host_name {hostname}
|
| 158 | graph_title {title}
|
||
| 159 | graph_vlabel {vlabel}
|
||
| 160 | graph_args {args}
|
||
| 161 | 6c59a897 | Lars Kruse | graph_category fw |
| 162 | 7cf2dda9 | Lars Kruse | graph_info {title}""".format(datarow=datarow, hostname=hostname, title=title, args=args,
|
| 163 | vlabel=vlabel)) |
||
| 164 | f78847fb | Johann Schmitz | |
| 165 | 7cf2dda9 | Lars Kruse | for suffix, node in devices.items(): |
| 166 | ident = "%s_%s" % (datarow, node) |
||
| 167 | print("""{label}.info {title} on {node}
|
||
| 168 | f78847fb | Johann Schmitz | {label}.label {node}
|
| 169 | ee0d7b38 | Johann Schmitz | {label}.type GAUGE
|
| 170 | 7cf2dda9 | Lars Kruse | {label}.min 0""".format(title=title, label=ident, node=node))
|
| 171 | |||
| 172 | def execute(self): |
||
| 173 | data = self.get_data() |
||
| 174 | 2fff9d6b | Johann Schmitz | |
| 175 | 7cf2dda9 | Lars Kruse | for pre, values in data.items(): |
| 176 | print("multigraph juniper_%s" % pre)
|
||
| 177 | for node, value in values.items(): |
||
| 178 | print("%s_%s.value %s" % (pre, node, value))
|
||
| 179 | 2fff9d6b | Johann Schmitz | |
| 180 | c255203d | Johann Schmitz | |
| 181 | 2fff9d6b | Johann Schmitz | c = JunOSSnmpClient(host, port, community) |
| 182 | f78847fb | Johann Schmitz | |
| 183 | 7cf2dda9 | Lars Kruse | |
| 184 | f78847fb | Johann Schmitz | if "snmpconf" in sys.argv[1:]: |
| 185 | 7cf2dda9 | Lars Kruse | print("require 1.3.6.1.4.1.2636.3.1.13.1.5")
|
| 186 | sys.exit(0) |
||
| 187 | c255203d | Johann Schmitz | else: |
| 188 | 7cf2dda9 | Lars Kruse | if not (host and port and community): |
| 189 | print("# Bad configuration. Cannot run with Host=%s, port=%s and community=%s"
|
||
| 190 | % (host, port, community), file=sys.stderr) |
||
| 191 | sys.exit(1) |
||
| 192 | |||
| 193 | if "config" in sys.argv[1:]: |
||
| 194 | c.print_config() |
||
| 195 | else: |
||
| 196 | c.execute() |
