Skip to content

Commit 035955d

Browse files
Max Schubertschwern
Max Schubert
authored andcommitted
import Nagios-Plugin-SNMP 1.2 from CPAN
git-cpan-module: Nagios-Plugin-SNMP git-cpan-version: 1.2 git-cpan-authorid: MAXSCHUBE git-cpan-file: authors/id/M/MA/MAXSCHUBE/Nagios-Plugin-SNMP-1.2.tgz
1 parent 8fcbd38 commit 035955d

File tree

5 files changed

+969
-64
lines changed

5 files changed

+969
-64
lines changed

Changes

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Version 1.0
2+
===========
3+
* First release
4+
5+
Version 1.2
6+
===========
7+
* Many bug fixes and performance enhancements
8+
* Add delta processing using Cache::Memcache (optional). Delta processing
9+
allows you to insert your own delta processing logic easily; the module
10+
comes with a very simplistic built in delta processing routine as well.
11+
* Add cluster aware polling. If you know one of N servers will have
12+
a certain OID, you can specify alternate servers that the plugin
13+
should try if it cannot reach the primary server specified with
14+
-H or --hostname using multiple -A or --alt-server options
15+

MANIFEST

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
Makefile.PL
1+
Changes
22
MANIFEST
3+
Makefile.PL
34
README
4-
t/Nagios-Plugin-SNMP.t
5-
lib/Nagios/Plugin/SNMP.pm
65
examples/check_bluecoat_net.pl
6+
lib/Nagios/Plugin/SNMP.pm
7+
t/Nagios-Plugin-SNMP.t

Makefile.PL

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ WriteMakefile(
66
NAME => 'Nagios::Plugin::SNMP',
77
VERSION_FROM => 'lib/Nagios/Plugin/SNMP.pm',
88
PREREQ_PM => {
9-
'Exporter' => '1.0',
10-
'Net::SNMP' => '1.0',
11-
'Nagios::Plugin' => '1.0'
9+
'Exporter' => '0',
10+
'Net::SNMP' => '0',
11+
'Nagios::Plugin' => '0'
1212
},
1313
($] >= 5.005 ? ## Add these new keywords supported since 5.005
1414
(ABSTRACT_FROM => 'lib/Nagios/Plugin/SNMP.pm', # retrieve abstract from module

README

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Nagios-Plugin-SNMP version 1.0
1+
Nagios-Plugin-SNMP version 1.2
22
===============================
33

44
This module extends Nagios::Plugin with methods to help developers
@@ -20,6 +20,9 @@ to include parsing and setting of these options:
2020
* --auth-password: Auth password for SNMP v3
2121
* --auth-protocol: Auth protocol for SNMP v3 (defaults to md5)
2222

23+
This version supports delta processing and clustered queries
24+
(see perldoc for more information).
25+
2326
The module uses Net::SNMP for SNMP transport, so it works with
2427
SNMP version 1, 2c, and 3.
2528

0 commit comments

Comments
 (0)