Skip to content

Commit 6ed6587

Browse files
authored
SCTASK0104379 - Merge pull request #133 from GlobalNOC/poller_multisession
SCTASK0104379 - Version 1.11.0 Release
2 parents 9e84ec5 + 2c673a2 commit 6ed6587

14 files changed

Lines changed: 732 additions & 589 deletions

File tree

CHANGES.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
# Simp ChangeLog
1+
# SIMP ChangeLog
2+
3+
## 1.11.0 - Dec 22, 2022
4+
* Added simp-poller support for multiple host configurations for a single host
5+
* Added simp-poller support for all Net::SNMP parameters
6+
* Added simp-poller support for logging group worker configuration parameters at startup
7+
* Improved simp-poller worker configuration handling
8+
* Improved simp-poller worker balancing in preparation for automatic worker scaling
9+
* Fixed issue where simp-poller would not allow remote Redis server configuration
10+
* Fixed issue where simp-poller would not properly identify failing SNMP requests for status monitoring
11+
* Fixed issue where simp-poller would discard status monitoring data for hosts with multiple SNMP configurations
12+
* Fixed issue where simp-poller would spawn zombie workers with no hosts configured for their group
13+
* Fixed issue where simp-poller would ignore additional configurations for the same host
14+
* Fixed issue where simp-tsds would fail while encoding JSON
15+
* Deprecated simp-poller "use_unix_socket" flag, now implied by the specification of a "unix_socket"
216

317
## 1.10.0 - Aug 22, 2022
418
* Added IPv6 SNMP support to Poller

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME=simp
2-
VERSION=1.10.0
2+
VERSION=1.11.0
33

44
.PHONY: dist
55

conf/poller/config.xsd

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
<!-- Required Child Elements -->
1818
<xsd:complexType name="REDIS_CONFIG">
19-
<xsd:attribute name="ip" type="IP_ADDR" use="optional" />
20-
<xsd:attribute name="port" type="xsd:integer" use="optional" />
21-
<xsd:attribute name="reconnect" type="xsd:integer" use="required" />
22-
<xsd:attribute name="reconnect_every" type="xsd:integer" use="required" />
23-
<xsd:attribute name="read_timeout" type="xsd:integer" use="required" />
24-
<xsd:attribute name="write_timeout" type="xsd:integer" use="required" />
25-
<xsd:attribute name="use_unix_socket" type="xsd:integer" use="required" />
26-
<xsd:attribute name="unix_socket" type="xsd:string" use="optional" />
19+
<xsd:attribute name="ip" type="IP_ADDR" use="optional" />
20+
<xsd:attribute name="port" type="xsd:integer" use="optional" />
21+
<xsd:attribute name="reconnect" type="xsd:integer" use="required" />
22+
<xsd:attribute name="reconnect_every" type="xsd:integer" use="required" />
23+
<xsd:attribute name="read_timeout" type="xsd:integer" use="required" />
24+
<xsd:attribute name="write_timeout" type="xsd:integer" use="required" />
25+
<xsd:attribute name="use_unix_socket" type="xsd:integer" use="optional" />
26+
<xsd:attribute name="unix_socket" type="xsd:string" use="optional" />
2727
</xsd:complexType>
2828

2929
<xsd:complexType name="PURGE_INTERVAL">

lib/GRNOC/Simp/Comp.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use GRNOC::Config;
1515
use GRNOC::Log;
1616
use GRNOC::Simp::Comp::Worker;
1717

18-
our $VERSION = '1.10.0';
18+
our $VERSION = '1.11.0';
1919

2020
### REQUIRED ATTRIBUTES ###
2121

lib/GRNOC/Simp/Data.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use GRNOC::Config;
1313
use GRNOC::Log;
1414
use GRNOC::Simp::Data::Worker;
1515

16-
our $VERSION = '1.10.0';
16+
our $VERSION = '1.11.0';
1717

1818
=head2 public attributes
1919
=over 12

0 commit comments

Comments
 (0)