mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-25 02:18:08 +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,7 +32,7 @@
|
|||
# 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.
|
||||
# * gwiaStatBytesIn - 1.3.6.1.4.1.23.2.70.1.6.
|
||||
|
@ -40,31 +40,31 @@
|
|||
#
|
||||
# Usage:
|
||||
# --------------
|
||||
# Link this file snmp__gwia_bytes_ to your nodes servicedir [/etc/munin/plugins]
|
||||
# Link this file snmp__gwia_bytes_ to your nodes servicedir [/etc/munin/plugins]
|
||||
#
|
||||
# as:
|
||||
# snmp_<host>_gwia_bytes_<pos>
|
||||
# as:
|
||||
# snmp_<host>_gwia_bytes_<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_bytes_ \
|
||||
# /etc/munin/plugins/snmp_foo.example.com_gwia_bytes_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_bytes_*]
|
||||
# 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:
|
||||
|
@ -96,8 +96,8 @@ my $GRAPH_VLABEL = "bytes per $GRAPH_PERIOD in(-) / out(+)";
|
|||
my $BYTES_LABEL='Bytes';
|
||||
|
||||
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.6. [\\d*]\n"; # gwiaStatBytesIn
|
||||
print "require 1.3.6.1.4.1.23.2.70.1.5. [\\d*]\n"; # gwiaStatBytesOut
|
||||
|
||||
|
@ -129,8 +129,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
|
||||
graph_category mail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue