commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-09-11 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-09-12 00:12:20

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.4249 
(New)


Package is "monitoring-plugins-nwc_health"

Sat Sep 12 00:12:20 2020 rev:7 rq:833740 version:7.12.1.3

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-07-18 21:03:42.947657451 +0200
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.4249/monitoring-plugins-nwc_health.changes
2020-09-12 00:13:09.193250922 +0200
@@ -1,0 +2,6 @@
+Tue Sep  8 18:49:49 UTC 2020 - Martin Hauke 
+
+- Update to version 7.12.1.3
+  * fix a bug in mode count-routes, update glplugin
+
+---

Old:

  check_nwc_health-7.12.1.2.tar.gz

New:

  check_nwc_health-7.12.1.3.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.AaZFsS/_old  2020-09-12 00:13:11.037252687 +0200
+++ /var/tmp/diff_new_pack.AaZFsS/_new  2020-09-12 00:13:11.037252687 +0200
@@ -19,7 +19,7 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.12.1.2
+Version:7.12.1.3
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
 # https://github.com/lausser/check_nwc_health

++ check_nwc_health-7.12.1.2.tar.gz -> check_nwc_health-7.12.1.3.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.12.1.2/ChangeLog 
new/check_nwc_health-7.12.1.3/ChangeLog
--- old/check_nwc_health-7.12.1.2/ChangeLog 2020-07-13 13:19:17.067282200 
+0200
+++ new/check_nwc_health-7.12.1.3/ChangeLog 2020-09-08 14:59:40.745065600 
+0200
@@ -1,3 +1,5 @@
+* 2020-09-08 7.12.1.3
+  fix a bug in mode count-routes, update glplugin
 * 2020-07-13 7.12.1.2
   improve output for connect-vips
 * 2020-07-13 7.12.1.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm 
new/check_nwc_health-7.12.1.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm
--- old/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm  
2020-07-13 13:19:18.46120 +0200
+++ new/check_nwc_health-7.12.1.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm  
2020-09-08 14:59:42.353679300 +0200
@@ -224,6 +224,15 @@
   decode => "rfc3986",
   );
   $self->add_arg(
+  spec => '--join-communities',
+  help => '--join-communities
+   It --community2 is used, run the query with community, then community2
+   and add up both results. The default is to use community for the initial
+   handshake and community2 for querying (bgp and ospf)',
+  required => 0,
+  default => 0,
+  );
+  $self->add_arg(
   spec => 'snmpwalk=s',
   help => '--snmpwalk
A file with the output of a snmpwalk (used for simulation)
@@ -1148,7 +1157,11 @@
 } else {
   my $max_msg_size = $session->max_msg_size();
   #$session->max_msg_size(4 * $max_msg_size);
-  $Monitoring::GLPlugin::SNMP::maxrepetitions = 20;
+  if ($self->opts->protocol eq "1") {
+$Monitoring::GLPlugin::SNMP::maxrepetitions = 0;
+  } else {
+$Monitoring::GLPlugin::SNMP::maxrepetitions = 20;
+  }
   $Monitoring::GLPlugin::SNMP::max_msg_size = $max_msg_size;
   $Monitoring::GLPlugin::SNMP::session = $session;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin.pm 
new/check_nwc_health-7.12.1.3/GLPlugin/lib/Monitoring/GLPlugin.pm
--- old/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin.pm   
2020-07-13 13:19:18.489199600 +0200
+++ new/check_nwc_health-7.12.1.3/GLPlugin/lib/Monitoring/GLPlugin.pm   
2020-09-08 14:59:42.391276700 +0200
@@ -20,7 +20,7 @@
   $Data::Dumper::Sparseseen = 1;
 };
 our $AUTOLOAD;
-*VERSION = \'3.2.25';
+*VERSION = \'3.2.26.2';
 
 use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
 
@@ -1453,7 +1453,8 @@
 # if the device gives us an clearly wrong value, simply use the last value.
 my $laststate = $self->load_state(name => 'protect_'.$ident.'_'.$key);
 $self->debug(sprintf "self->{%s} is %s and invalid for the %dth time",
-$key, $self->{$key}, $laststate->{exception} + 1);
+$key, defined $self->{$key} ? $self->{$key} : "",
+ $laststate->{exception} + 1);
 if 

commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-07-18 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-07-18 21:03:21

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3592 
(New)


Package is "monitoring-plugins-nwc_health"

Sat Jul 18 21:03:21 2020 rev:6 rq:821651 version:7.12.1.2

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-06-09 00:06:40.729719502 +0200
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3592/monitoring-plugins-nwc_health.changes
2020-07-18 21:03:42.947657451 +0200
@@ -1,0 +2,11 @@
+Mon Jul 13 18:53:38 UTC 2020 - Martin Hauke 
+
+- Update to version 7.12.1.2
+* 2020-07-13 7.12.1.2
+  * improve output for connect-vips
+- Update to version 7.12.1.1
+  * bugfix in UCD-MIB swap
+- Update to version 7.12.1
+  * try to fallback to ucd if neither sysUptime nor sysDescr exist
+
+---

Old:

  check_nwc_health-7.12.tar.gz

New:

  check_nwc_health-7.12.1.2.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.XxC78S/_old  2020-07-18 21:03:44.367658977 +0200
+++ /var/tmp/diff_new_pack.XxC78S/_new  2020-07-18 21:03:44.371658982 +0200
@@ -19,7 +19,7 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.12
+Version:7.12.1.2
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
 # https://github.com/lausser/check_nwc_health

++ check_nwc_health-7.12.tar.gz -> check_nwc_health-7.12.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.12/ChangeLog 
new/check_nwc_health-7.12.1.2/ChangeLog
--- old/check_nwc_health-7.12/ChangeLog 2020-06-04 11:34:33.703040600 +0200
+++ new/check_nwc_health-7.12.1.2/ChangeLog 2020-07-13 13:19:17.067282200 
+0200
@@ -1,3 +1,9 @@
+* 2020-07-13 7.12.1.2
+  improve output for connect-vips
+* 2020-07-13 7.12.1.1
+  bugfix in UCD-MIB swap
+* 2020-07-10 7.12.1
+  try to fallback to ucd if neither sysUptime nor sysDescr exist
 * 2020-06-04 7.12
   add mode watch-vips and connect-vips for F5
 * 2020-06-02 7.11.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.12/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm 
new/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm
--- old/check_nwc_health-7.12/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm  
2020-06-04 11:34:35.264273600 +0200
+++ new/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin/SNMP.pm  
2020-07-13 13:19:18.46120 +0200
@@ -824,7 +824,8 @@
 my $confirmed = {};
 foreach my $mib (keys 
%{$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids}) {
   foreach my $sym (keys 
%{$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{$mib}}) {
-if (my $obj = $self->get_snmp_object($mib, $sym)) {
+my $obj = $self->get_snmp_object($mib, $sym);
+if (defined $obj) {
   my $oid = 
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{$mib}->{$sym};
   if (exists $unknowns->{$oid}) {
 $confirmed->{$oid} = sprintf '%s::%s = %s', $mib, $sym, $obj;
@@ -2740,6 +2741,8 @@
   $mo->{$symoid} = 'unknown_'.$result->{$oid};
   # oder 
$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{$mib}->{$symoid.'Definition'}?
 }
+  } else {
+$mo->{$symoid} = $result->{$oid};
   }
 }
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.12/GLPlugin/lib/Monitoring/GLPlugin.pm 
new/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin.pm
--- old/check_nwc_health-7.12/GLPlugin/lib/Monitoring/GLPlugin.pm   
2020-06-04 11:34:35.288859800 +0200
+++ new/check_nwc_health-7.12.1.2/GLPlugin/lib/Monitoring/GLPlugin.pm   
2020-07-13 13:19:18.489199600 +0200
@@ -20,7 +20,7 @@
   $Data::Dumper::Sparseseen = 1;
 };
 our $AUTOLOAD;
-*VERSION = \'3.2.23.1';
+*VERSION = \'3.2.25';
 
 use constant { OK => 0, WARNING => 1, CRITICAL => 2, UNKNOWN => 3 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.12/configure 
new/check_nwc_health-7.12.1.2/configure
--- old/check_nwc_health-7.12/configure 2020-06-04 11:34:24.412773900 +0200
+++ new/check_nwc_health-7.12.1.2/configure 2020-07-13 13:19:08.470763600 
+0200
@@ -1,7 +1,7 @@
 #! 

commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-06-08 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-06-09 00:05:03

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3606 
(New)


Package is "monitoring-plugins-nwc_health"

Tue Jun  9 00:05:03 2020 rev:5 rq:812368 version:7.12

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-05-26 17:50:39.120055664 +0200
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3606/monitoring-plugins-nwc_health.changes
2020-06-09 00:06:40.729719502 +0200
@@ -1,0 +2,7 @@
+Thu Jun  4 09:55:30 UTC 2020 - Martin Hauke 
+
+- Update to version 7.12
+  * add mode watch-vips and connect-vips for F5
+  * check the number of nodes in a Fortigate cluster
+
+---

Old:

  check_nwc_health-7.11.tar.gz

New:

  check_nwc_health-7.12.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.Xyr0wu/_old  2020-06-09 00:06:42.525725874 +0200
+++ /var/tmp/diff_new_pack.Xyr0wu/_new  2020-06-09 00:06:42.529725888 +0200
@@ -19,7 +19,7 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.11
+Version:7.12
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
 # https://github.com/lausser/check_nwc_health

++ check_nwc_health-7.11.tar.gz -> check_nwc_health-7.12.tar.gz ++
 3267 lines of diff (skipped)




commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-05-26 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-05-26 17:50:35

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.2738 
(New)


Package is "monitoring-plugins-nwc_health"

Tue May 26 17:50:35 2020 rev:4 rq:808847 version:7.11

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-03-22 14:18:32.902109877 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.2738/monitoring-plugins-nwc_health.changes
2020-05-26 17:50:39.120055664 +0200
@@ -1,0 +2,20 @@
+Fri May 22 06:21:18 UTC 2020 - Martin Hauke 
+
+- Update to version 7.11
+  * add bgp4 modes for arista, use 2nd context for cisco bgp4
+
+---
+Tue May 19 17:15:22 UTC 2020 - Martin Hauke 
+
+- Update to version 7.10.4.1
+  * fix a typo
+
+---
+Mon May 18 16:33:08 UTC 2020 - Martin Hauke 
+
+- Update to version 7.10.4
+  * check increase of sessions for Cisco (detect freeze with
+--mode vpn-sessions --criticalx sessions_per_sec=0.001:)
+  * add AVM 7580
+
+---

Old:

  check_nwc_health-7.10.3.tar.gz

New:

  check_nwc_health-7.11.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.2PHfi9/_old  2020-05-26 17:50:39.728056996 +0200
+++ /var/tmp/diff_new_pack.2PHfi9/_new  2020-05-26 17:50:39.728056996 +0200
@@ -19,7 +19,7 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.10.3
+Version:7.11
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
 # https://github.com/lausser/check_nwc_health

++ check_nwc_health-7.10.3.tar.gz -> check_nwc_health-7.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.10.3/ChangeLog 
new/check_nwc_health-7.11/ChangeLog
--- old/check_nwc_health-7.10.3/ChangeLog   2020-03-20 14:55:36.487989100 
+0100
+++ new/check_nwc_health-7.11/ChangeLog 2020-05-21 22:07:55.707973800 +0200
@@ -1,3 +1,11 @@
+* 2020-05-21 7.11
+  add bgp4 modes for arista, use 2nd context for cisco bgp4
+* 2020-05-19 7.10.4.1
+  fix a typo
+* 2020-05-05 7.10.4
+  check increase of sessions for Cisco
+  (detect freeze with  --mode vpn-sessions --criticalx sessions_per_sec=0.001:)
+  add AVM 7580
 * 2020-03-20 7.10.3
   add mode vpn-sessions (IOS and ASA)
 * 2020-03-16 7.10.2.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/ARISTABGP4V2MIB.pm
 
new/check_nwc_health-7.11/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/ARISTABGP4V2MIB.pm
--- 
old/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/ARISTABGP4V2MIB.pm
1970-01-01 01:00:00.0 +0100
+++ 
new/check_nwc_health-7.11/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/ARISTABGP4V2MIB.pm
  2020-05-21 22:07:55.888267200 +0200
@@ -0,0 +1,159 @@
+package Monitoring::GLPlugin::SNMP::MibsAndOids::ARISTABGP4V2MIB;
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'ARISTA-BGP4V2-MIB'} = {
+  url => '',
+  name => 'ARISTA-BGP4V2-MIB',
+};
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'ARISTA-BGP4V2-MIB'} =
+'1.3.6.1.4.1.30065.4.1';
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'ARISTA-BGP4V2-MIB'} 
= {
+  aristaBgp4V2 => '1.3.6.1.4.1.30065.4.1',
+  aristaBgp4V2Notifications => '1.3.6.1.4.1.30065.4.1.0',
+  aristaBgp4V2Objects => '1.3.6.1.4.1.30065.4.1.1',
+  aristaBgp4V2DiscontinuityTable => '1.3.6.1.4.1.30065.4.1.1.1',
+  aristaBgp4V2DiscontinuityEntry => '1.3.6.1.4.1.30065.4.1.1.1.1',
+  aristaBgp4V2DiscontinuityTime => '1.3.6.1.4.1.30065.4.1.1.1.1.1',
+  aristaBgp4V2PeerTable => '1.3.6.1.4.1.30065.4.1.1.2',
+  aristaBgp4V2PeerEntry => '1.3.6.1.4.1.30065.4.1.1.2.1',
+  aristaBgp4V2PeerInstance => '1.3.6.1.4.1.30065.4.1.1.2.1.1',
+  aristaBgp4V2PeerLocalAddrType => '1.3.6.1.4.1.30065.4.1.1.2.1.2',
+  aristaBgp4V2PeerLocalAddrTypeDefinition => 
'INET-ADDRESS-MIB::InetAddressType',
+  aristaBgp4V2PeerLocalAddr => '1.3.6.1.4.1.30065.4.1.1.2.1.3',
+  aristaBgp4V2PeerLocalAddrDefinition => 
'INET-ADDRESS-MIB::InetAddress(aristaBgp4V2PeerLocalAddrType)',
+  aristaBgp4V2PeerRemoteAddrType => '1.3.6.1.4.1.30065.4.1.1.2.1.4',
+  aristaBgp4V2PeerRemoteAddrTypeDefinition => 

commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-03-22 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-03-22 14:18:31

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3160 
(New)


Package is "monitoring-plugins-nwc_health"

Sun Mar 22 14:18:31 2020 rev:3 rq:787128 version:7.10.3

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-01-22 22:46:08.376571662 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.3160/monitoring-plugins-nwc_health.changes
2020-03-22 14:18:32.902109877 +0100
@@ -1,0 +2,10 @@
+Fri Mar 20 16:40:59 UTC 2020 - Martin Hauke 
+
+- Update to version 7.10.3
+  * add mode vpn-sessions (IOS and ASA)
+  * blacklist nfs-mounts in hrDeviceDiskStorage
+  * fix HP Aruba checks, add nore from ENTITY-SENSOR-MIB
+  * fix a bug in interface-etherstats for
+OLD-CISCO-INTERFACES-MIB
+
+---

Old:

  check_nwc_health-7.10.1.8.tar.gz

New:

  check_nwc_health-7.10.3.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.HGNEHN/_old  2020-03-22 14:18:33.362110172 +0100
+++ /var/tmp/diff_new_pack.HGNEHN/_new  2020-03-22 14:18:33.366110175 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package monitoring-plugins-nwc_health
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.10.1.8
+Version:7.10.3
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
 # https://github.com/lausser/check_nwc_health

++ check_nwc_health-7.10.1.8.tar.gz -> check_nwc_health-7.10.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.10.1.8/ChangeLog 
new/check_nwc_health-7.10.3/ChangeLog
--- old/check_nwc_health-7.10.1.8/ChangeLog 2020-01-21 15:41:08.955207800 
+0100
+++ new/check_nwc_health-7.10.3/ChangeLog   2020-03-20 14:55:36.487989100 
+0100
@@ -1,3 +1,11 @@
+* 2020-03-20 7.10.3
+  add mode vpn-sessions (IOS and ASA)
+* 2020-03-16 7.10.2.1
+  blacklist nfs-mounts in hrDeviceDiskStorage
+* 2020-03-10 7.10.2
+  fix HP Aruba checks, add nore from ENTITY-SENSOR-MIB
+* 2020-02-20 7.10.1.9
+  fix a bug in interface-etherstats for OLD-CISCO-INTERFACES-MIB
 * 2020-01-21 7.10.1.8
   fix a bug in Cisco memory, for Cisco emulation mode of Bel VPN Gate
 * 2020-01-18 7.10.1.7
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/Item.pm 
new/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/Item.pm
--- old/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/Item.pm  
2020-01-21 15:41:09.054522700 +0100
+++ new/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/Item.pm
2020-03-20 14:55:36.583643200 +0100
@@ -54,7 +54,7 @@
   s/^\s+|\s+$//g;
   $_;
   } split /,/, $self->opts->subsystem
-  ));
+  )) if $self->opts->subsystem;
 }
 
 sub dump_subsystems {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/CISCOREMOTEACCESSMONITORMIB.pm
 
new/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/CISCOREMOTEACCESSMONITORMIB.pm
--- 
old/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/CISCOREMOTEACCESSMONITORMIB.pm
  1970-01-01 01:00:00.0 +0100
+++ 
new/check_nwc_health-7.10.3/GLPlugin/lib/Monitoring/GLPlugin/SNMP/MibsAndOids/CISCOREMOTEACCESSMONITORMIB.pm
2020-03-20 14:55:37.048271500 +0100
@@ -0,0 +1,230 @@
+package Monitoring::GLPlugin::SNMP::MibsAndOids::CISCOREMOTEACCESSMONITORMIB;
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::origin->{'CISCO-REMOTE-ACCESS-MONITOR-MIB'}
 = {
+  url => '',
+  name => 'CISCO-REMOTE-ACCESS-MONITOR-MIB',
+};
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::mib_ids->{'CISCO-REMOTE-ACCESS-MONITOR-MIB'}
 =
+'1.3.6.1.4.1.9.9.392';
+
+$Monitoring::GLPlugin::SNMP::MibsAndOids::mibs_and_oids->{'CISCO-REMOTE-ACCESS-MONITOR-MIB'}
 = {
+  ciscoRemoteAccessMonitorMIB => '1.3.6.1.4.1.9.9.392',
+  ciscoRasMonitorMIBNotifs => '1.3.6.1.4.1.9.9.392.0',
+  ciscoRasMonitorMIBObjects => 

commit monitoring-plugins-nwc_health for openSUSE:Factory

2020-01-22 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-nwc_health for 
openSUSE:Factory checked in at 2020-01-22 22:45:53

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.26092 
(New)


Package is "monitoring-plugins-nwc_health"

Wed Jan 22 22:45:53 2020 rev:2 rq:766202 version:7.10.1.8

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-nwc_health/monitoring-plugins-nwc_health.changes
  2020-01-19 20:58:23.552080348 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-nwc_health.new.26092/monitoring-plugins-nwc_health.changes
   2020-01-22 22:46:08.376571662 +0100
@@ -1,0 +2,14 @@
+Tue Jan 21 18:18:09 UTC 2020 - Martin Hauke 
+
+- Update to version 7.10.1.8
+  * fix a bug in Cisco memory, for Cisco emulation mode of
+Bel VPN Gate
+
+---
+Mon Jan 20 21:48:42 UTC 2020 - Martin Hauke 
+
+- Update to version 7.10.1.7
+  * fix redundant argument in sprintf
+  * fix operstatus in linuxlocal
+
+---

Old:

  check_nwc_health-7.10.1.6.tar.gz

New:

  check_nwc_health-7.10.1.8.tar.gz



Other differences:
--
++ monitoring-plugins-nwc_health.spec ++
--- /var/tmp/diff_new_pack.eD1rnG/_old  2020-01-22 22:46:09.676572317 +0100
+++ /var/tmp/diff_new_pack.eD1rnG/_new  2020-01-22 22:46:09.684572320 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package monitoring-plugins-nwc_health
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2017, Martin Hauke 
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,12 +19,12 @@
 
 %define realname check_nwc_health
 Name:   monitoring-plugins-nwc_health
-Version:7.10.1.6
+Version:7.10.1.8
 Release:0
 Summary:This plugin checks the health of network components and 
interfaces
+# https://github.com/lausser/check_nwc_health
 License:GPL-2.0-or-later
 Group:  System/Monitoring
-# https://github.com/lausser/check_nwc_health
 URL:https://labs.consol.de/nagios/check_nwc_health/
 Source: 
https://labs.consol.de/assets/downloads/nagios/%{realname}-%{version}.tar.gz
 # 
https://raw.githubusercontent.com/lausser/check_nwc_health/master/check_nwc_health.php

++ check_nwc_health-7.10.1.6.tar.gz -> check_nwc_health-7.10.1.8.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/check_nwc_health-7.10.1.6/ChangeLog 
new/check_nwc_health-7.10.1.8/ChangeLog
--- old/check_nwc_health-7.10.1.6/ChangeLog 2020-01-16 15:11:50.936567100 
+0100
+++ new/check_nwc_health-7.10.1.8/ChangeLog 2020-01-21 15:41:08.955207800 
+0100
@@ -1,3 +1,8 @@
+* 2020-01-21 7.10.1.8
+  fix a bug in Cisco memory, for Cisco emulation mode of Bel VPN Gate
+* 2020-01-18 7.10.1.7
+  issue #229 fix redundant argument in sprintf
+  issue #228 fix operstatus in linuxlocal
 * 2020-01-16 7.10.1.6
   fix a bug in verbose mode if --nosensors is used
 * 2019-12-06 7.10.1.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/check_nwc_health-7.10.1.6/GLPlugin/lib/Monitoring/GLPlugin/Item.pm 
new/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/Item.pm
--- old/check_nwc_health-7.10.1.6/GLPlugin/lib/Monitoring/GLPlugin/Item.pm  
2020-01-16 15:11:51.052151000 +0100
+++ new/check_nwc_health-7.10.1.8/GLPlugin/lib/Monitoring/GLPlugin/Item.pm  
2020-01-21 15:41:09.054522700 +0100
@@ -27,6 +27,44 @@
   }
 }
 
+sub init_subsystems {
+  my ($self, $subsysref) = @_;
+  foreach (@{$subsysref}) {
+my ($subsys, $class) = @{$_};
+$self->{$subsys} = $class->new()
+if (! $self->opts->subsystem || grep {
+$_ eq $subsys;
+} map {
+s/^\s+|\s+$//g;
+$_;
+} split /,/, $self->opts->subsystem);
+  }
+}
+
+sub check_subsystems {
+  my ($self) = @_;
+  my @subsystems = grep { $_ =~ /.*_subsystem$/ } keys %{$self};
+  foreach (@subsystems) {
+$self->{$_}->check();
+  }
+  $self->reduce_messages_short(join(", ",
+  map {
+  sprintf "%s working fine", $_;
+  } map {
+  s/^\s+|\s+$//g;
+  $_;
+  } split /,/, $self->opts->subsystem
+  ));
+}
+
+sub dump_subsystems {
+  my ($self) = @_;
+  my @subsystems = grep { $_ =~ /.*_subsystem$/ } keys %{$self};
+  foreach (@subsystems) {
+$self->{$_}->dump();
+  }
+}
+
 1;
 
 __END__
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore'