logstash-integration-snmp 4.0.1-java → 4.0.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a118e564c156abe1ca3e7eee83028f8cd73610823de9eca7873db7c41196398c
|
|
4
|
+
data.tar.gz: 06c610f49f21d97fe75fadddbdd9aed4824ff36f34970649bdc2afd539992993
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93fa035596764f1f4de22df4a9696c11aeaeba327c7897fb0cf40a08246f6d1624218e68161d9100bbd04f77733aa3b9b74721bd0ee677e8fd8fe85ae19f7012
|
|
7
|
+
data.tar.gz: 1da5fefbbc3d7ac39a244f5361ed25ade680e2656286f79491bd89202f130a66e105f12c20451bcf32d6fafd9b06d16eb2b2d0bfe8d7b9d36fdb5d96975c643f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 4.0.2
|
|
2
|
+
- Fixed `input-snmp` `tables` event mapping to remove the "index" value from the OID field (backward compatibility) [#61](https://github.com/logstash-plugins/logstash-integration-snmp/pull/61)
|
|
3
|
+
|
|
1
4
|
## 4.0.1
|
|
2
5
|
- [DOC] Add technical preview banner and reimplement cross-doc links [#57](https://github.com/logstash-plugins/logstash-integration-snmp/pull/57)
|
|
3
6
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.0.
|
|
1
|
+
4.0.2
|
|
@@ -130,7 +130,7 @@ describe LogStash::Inputs::Snmp, :integration => true do
|
|
|
130
130
|
expect(table).to be_a(Array)
|
|
131
131
|
|
|
132
132
|
(0..9).each do |index|
|
|
133
|
-
expect(table[index]["iso.org.dod.internet.mgmt.mib-2.system.sysORTable.sysOREntry.sysORUpTime
|
|
133
|
+
expect(table[index]["iso.org.dod.internet.mgmt.mib-2.system.sysORTable.sysOREntry.sysORUpTime"]).to be_a Integer
|
|
134
134
|
expect(table[index]['index']).to be_a(String)
|
|
135
135
|
end
|
|
136
136
|
end
|
|
@@ -192,7 +192,7 @@ describe LogStash::Inputs::Snmp, :integration => true do
|
|
|
192
192
|
expect(table.length).to be(1)
|
|
193
193
|
|
|
194
194
|
table_oid_data = table[0]
|
|
195
|
-
expect(table_oid_data['iso.org.dod.internet.mgmt.mib-2.system.sysName
|
|
195
|
+
expect(table_oid_data['iso.org.dod.internet.mgmt.mib-2.system.sysName']).to be_a String
|
|
196
196
|
expect(table_oid_data['index']).to be_a String
|
|
197
197
|
end
|
|
198
198
|
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-snmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-05-
|
|
11
|
+
date: 2024-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -483,7 +483,7 @@ files:
|
|
|
483
483
|
- spec/unit/inputs/common_spec.rb
|
|
484
484
|
- spec/unit/inputs/snmp_spec.rb
|
|
485
485
|
- spec/unit/inputs/snmptrap_spec.rb
|
|
486
|
-
- vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.
|
|
486
|
+
- vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.2/plugin-4.0.2.jar
|
|
487
487
|
- vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar
|
|
488
488
|
- vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar
|
|
489
489
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|