mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-08-02 22:28:24 +00:00
Whitespace cleanup
* remove trailing whitespace * remove empty lines at the end of files
This commit is contained in:
parent
ef851f0c34
commit
17f784270a
604 changed files with 2927 additions and 2945 deletions
|
@ -23,8 +23,8 @@
|
|||
# ------------------------------------------------------------
|
||||
# Plugin to monitor Novell Groupwise Internet Agent (GWIA)
|
||||
# ------------------------------------------------------------
|
||||
#
|
||||
# Management Information Base (MIB) GWIAMIB
|
||||
#
|
||||
# Management Information Base (MIB) GWIAMIB
|
||||
#
|
||||
# Naming Tree: 1.3.6.1.4.1.23
|
||||
# iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) novell(23)
|
||||
|
@ -32,43 +32,43 @@
|
|||
# To see all values available for your GWIA, type
|
||||
# snmpwalk -v1 -c public -m GWIAMIB <HOST> gwia
|
||||
#
|
||||
# This plugin fetches:
|
||||
# This plugin fetches:
|
||||
#
|
||||
# * gwiaGatewayName - 1.3.6.1.4.1.23.2.70.1.1.
|
||||
# * gwiaStatMsgsOut - 1.3.6.1.4.1.23.2.70.1.7.
|
||||
# * gwiaStatMsgsIn - 1.3.6.1.4.1.23.2.70.1.8.
|
||||
# * gwiaStatStatusesOut - 1.3.6.1.4.1.23.2.70.1.9.
|
||||
# * gwiaStatStatusesIn - 1.3.6.1.4.1.23.2.70.1.10.
|
||||
# * gwiaStatErrorsOut - 1.3.6.1.4.1.23.2.70.1.11.
|
||||
# * gwiaStatStatusesIn - 1.3.6.1.4.1.23.2.70.1.10.
|
||||
# * gwiaStatErrorsOut - 1.3.6.1.4.1.23.2.70.1.11.
|
||||
# * gwiaStatErrorsIn - 1.3.6.1.4.1.23.2.70.1.12.
|
||||
#
|
||||
# Usage:
|
||||
# --------------
|
||||
# Link this file snmp__gwia_msgs_ to your nodes servicedir [/etc/munin/plugins]
|
||||
# Link this file snmp__gwia_msgs_ to your nodes servicedir [/etc/munin/plugins]
|
||||
#
|
||||
# as:
|
||||
# snmp_<host>_gwia_msgs_<pos>
|
||||
# as:
|
||||
# snmp_<host>_gwia_msgs_<pos>
|
||||
#
|
||||
# with:
|
||||
# <host> = Name or IP-Number of host
|
||||
# <host> = Name or IP-Number of host
|
||||
# <pos> = table index of the GWIA Object
|
||||
#
|
||||
#
|
||||
# E.g.
|
||||
# ln -s /usr/share/munin/plugins/snmp__gwia_msgs_ \
|
||||
# /etc/munin/plugins/snmp_foo.example.com_gwia_msgs_0
|
||||
# ...will monitor a single GWIA object on host foo.example.com.
|
||||
# ...will monitor a single GWIA object on host foo.example.com.
|
||||
#
|
||||
# Parameters
|
||||
# community - Specify wich community string to use (Default: public)
|
||||
# port - Specify which port to read from (Default: 161)
|
||||
# host - Specify which host to monitor (Default: Read from link in servicedir)
|
||||
# pos - Specify which table Object to read (Default: Read from link in servicedir,
|
||||
#
|
||||
# pos - Specify which table Object to read (Default: Read from link in servicedir,
|
||||
#
|
||||
# You may adjust settings to your need via configuration in plugin-conf.d/munin-node:
|
||||
# [snmp_*_gwia_msgs_*]
|
||||
# env.port <your_port_number>
|
||||
# env.community <your SNMP community string>
|
||||
# env.pos <your objects table position. Values: 0,1,2,..>
|
||||
# env.pos <your objects table position. Values: 0,1,2,..>
|
||||
# env.host <name or IP of your host>
|
||||
#
|
||||
# Parameters can also be specified on a per GWIA basis, eg:
|
||||
|
@ -104,8 +104,8 @@ my $ERRORS_LABEL='Errors';
|
|||
my $ERRORS_CRITICAL=10;
|
||||
|
||||
if (defined $ARGV[0] and $ARGV[0] eq "snmpconf")
|
||||
{
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.1. [.*]\n"; # gwiaGatewayName
|
||||
{
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.1. [.*]\n"; # gwiaGatewayName
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.7. [\\d*]\n"; # gwiaStatMsgsOut
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.8. [\\d*]\n"; # gwiaStatMsgsIn
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.11. [\\d*]\n"; # gwiaStatErrorsOut
|
||||
|
@ -141,8 +141,8 @@ if (!defined ($session))
|
|||
if (defined $ARGV[0] and $ARGV[0] eq "config")
|
||||
{
|
||||
|
||||
# get name of Internet Agent
|
||||
my $gwname = &get_single ($session, "1.3.6.1.4.1.23.2.70.1.1.$pos"); # gwiaGatewayName
|
||||
# get name of Internet Agent
|
||||
my $gwname = &get_single ($session, "1.3.6.1.4.1.23.2.70.1.1.$pos"); # gwiaGatewayName
|
||||
|
||||
# output to munin
|
||||
print "host_name $host
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue