File tree 5 files changed +969
-64
lines changed
5 files changed +969
-64
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 1
- Makefile.PL
1
+ Changes
2
2
MANIFEST
3
+ Makefile.PL
3
4
README
4
- t/Nagios-Plugin-SNMP.t
5
- lib/Nagios/Plugin/SNMP.pm
6
5
examples/check_bluecoat_net.pl
6
+ lib/Nagios/Plugin/SNMP.pm
7
+ t/Nagios-Plugin-SNMP.t
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ WriteMakefile(
6
6
NAME => ' Nagios::Plugin::SNMP' ,
7
7
VERSION_FROM => ' lib/Nagios/Plugin/SNMP.pm' ,
8
8
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'
12
12
},
13
13
($] >= 5.005 ? # # Add these new keywords supported since 5.005
14
14
(ABSTRACT_FROM => ' lib/Nagios/Plugin/SNMP.pm' , # retrieve abstract from module
Original file line number Diff line number Diff line change 1
- Nagios-Plugin-SNMP version 1.0
1
+ Nagios-Plugin-SNMP version 1.2
2
2
===============================
3
3
4
4
This module extends Nagios::Plugin with methods to help developers
@@ -20,6 +20,9 @@ to include parsing and setting of these options:
20
20
* --auth-password: Auth password for SNMP v3
21
21
* --auth-protocol: Auth protocol for SNMP v3 (defaults to md5)
22
22
23
+ This version supports delta processing and clustered queries
24
+ (see perldoc for more information).
25
+
23
26
The module uses Net::SNMP for SNMP transport, so it works with
24
27
SNMP version 1, 2c, and 3.
25
28
You can’t perform that action at this time.
0 commit comments