Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

munin::node::snmpconfig(3pm) [debian man page]

Munin::Node::SNMPConfig(3pm)				User Contributed Perl Documentation			      Munin::Node::SNMPConfig(3pm)

NAME
Munin::Node::SNMPConfig - Subroutines providing munin-node-configure's SNMP scanning capabilities. SYNOPSIS
my $snmp = Munin::Node::SNMPConfig->new( community => 'secret', version => 1, ); $snmp->probe_hosts(\%plugins); SUBROUTINES
new(%arguments) Constructor. Valid arguments are: hosts The list of hosts to scan, in a format understood by Munin::Node::Configure::HostEnumeration. Required. port Port to connect to. Default is 161. version The SNMP version to use. Default is '2c'. community The community string to use for SNMP version 1 or 2c. Default is 'public'. username The SNMPv3 username to use. authpassword SNMPv3 Authentication password. Optional when encryption is also enabled, in which case defaults to the privacy password ("privpassword"). The password is sent encrypted (one way hash) over the network. authprotocol SNMPv3 Authentication protocol. One of 'md5' or 'sha' (HMAC-MD5-96, RFC1321 and SHA-1/HMAC-SHA-96, NIST FIPS PIB 180, RFC2264). The default is 'md5'. privpassword SNMPv3 Privacy password to enable encryption. An empty ('') password is considered as no password and will not enable encryption. Privacy requires a v3privprotocol as well as a v3authprotocol and a v3authpassword, but all of these are defaulted (to 'des', 'md5', and the v3privpassword value, respectively) and may therefore be left unspecified. privprotocol If the v3privpassword is set this setting controls what kind of encryption is used to achive privacy in the session. Only the very weak 'des' encryption method is supported officially. The default is 'des'. The implementing perl module (Net::SNMP) also supports '3des' (CBC-3DES-EDE aka Triple-DES, NIST FIPS 46-3) as specified in IETF draft-reeder-snmpv3-usm-3desede. Whether or not this works with any particular device, we do not know. run_probes($plugins) Connects to each host in turn, and checks which plugins it supports, based on the OIDs they reported during snmpconf. If all the requirements are fulfilled, it will added to the corresponding plugin's suggestions list. $plugins should be a Munin::Node::Configure::PluginList object. perl v5.14.2 2013-11-12 Munin::Node::SNMPConfig(3pm)

Check Out this Related Man Page

2004-04-16

      mailping

      0.0.4

MAILPING-LATENCY(1)						     Mailping						       MAILPING-LATENCY(1)

NAME
mailping-latency - Munin plugin to graph latency of mail deliveries SYNOPSIS
/usr/share/mailping/munin-plugins/mailping-latency {[config] | ['']} DESCRIPTION
mailping-latency is a Munin plugin that monitors the time spent between email submit and it's delivery. Configuration output When passed config, it outputs Munin configuration information. If there are no circuits defined (no subdirectories in /etc/mailping), it specifies that Munin should draw no graph either. If configuration files /etc/mailping/circuit/warnlatency and /etc/mailping/circuit/faillatency exist, the values in them are passed on to Munin, for use in Nagios alert integration. Value output When passed an empty string '', mailping-latency outputs latency of last successful probe message, for each configured circuit. FILES
/etc/mailping/ List of circuits that exist; each subdirectory is a circuit. /etc/mailping/circuit/warnlatency If latency is greater than this many seconds, a Nagios warning is triggered by Munin (assuming it has been configured to do that). Default: no warnings. /etc/mailping/circuit/faillatency If latency is greater than this many seconds, a Nagios alert is triggered by Munin (assuming it has been configured to do that). Default: no alerts. /var/lib/mailping/state/circuit/latency Amount of latency in seconds of the last successful probe for circuit. ENVIRONMENT
MAILPING_CONFIGDIR Override the location of the configuration directory. Default: /etc/mailping MAILPING_STATEDIR Override the location of the state directory. Circuit states are stored in the state subdirectory of this directory, in subdirectories named after the circuit name. Default: /var/lib/mailping SEE ALSO
mailping-success(1), mailping-cron(1), mailping-store(1), munin-run(8), munin-node(8) AUTHOR
Tommi Virtanen <tv@havoc.fi> Havoc Consulting Author. COPYRIGHT
Copyright (C) 2004 Havoc Consulting mailping 0. 2004-04-16 MAILPING-LATENCY(1)
Man Page