logstash-input-snmp 1.0.0 → 1.0.1
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/docs/index.asciidoc +20 -8
- data/logstash-input-snmp.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33e68f50e2d8dce7148c80ccc3a90029b4a0cc1f1039ae72a99be1525df17d89
|
|
4
|
+
data.tar.gz: 75d01ff55607a5e0aa31251bcdb91d94d75c3009acae39ac82c4dfb0a09feaa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2e8ae4ba872e2f55451be69e62108572ff27ea9380eaa29330cd80a42dbfc39cba4bfb4a1f11ef6e087c66f8e4c0d927484a02f093c742c666c6ede031f8cfc
|
|
7
|
+
data.tar.gz: 7347cab038cb7d1efbee0c8d60c5fe3a13dcedd2986f399ae150feeaa8758f34f0c0a32740f94685b13e172868a52d340f121bcdde81ffb193f9902985722932
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 1.0.1
|
|
2
|
+
- Added no_codec condition to the documentation and bumped version [#39](https://github.com/logstash-plugins/logstash-input-snmp/pull/39)
|
|
3
|
+
- Changed docs to improve options layout [#38](https://github.com/logstash-plugins/logstash-input-snmp/pull/38)
|
|
4
|
+
|
|
1
5
|
## 1.0.0
|
|
2
6
|
- Added improved syntax coercion [#32](https://github.com/logstash-plugins/logstash-input-snmp/pull/32)
|
|
3
7
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
:plugin: snmp
|
|
2
2
|
:type: input
|
|
3
|
-
:
|
|
4
|
-
|
|
5
|
-
// TO DO: VERIFY default codec!
|
|
3
|
+
:no_codec:
|
|
6
4
|
|
|
7
5
|
///////////////////////////////////////////
|
|
8
6
|
START - GENERATED VARIABLES, DO NOT EDIT!
|
|
@@ -26,6 +24,8 @@ include::{include_path}/plugin_header.asciidoc[]
|
|
|
26
24
|
The SNMP input polls network devices using Simple Network Management Protocol (SNMP)
|
|
27
25
|
to gather information related to the current state of the devices operation.
|
|
28
26
|
|
|
27
|
+
The SNMP input plugin supports SNMP v1, v2c, and v3 over UDP and TCP transport protocols.
|
|
28
|
+
|
|
29
29
|
[id="plugins-{type}s-{plugin}-import-mibs"]
|
|
30
30
|
==== Importing MIBs
|
|
31
31
|
|
|
@@ -55,20 +55,31 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
55
55
|
[cols="<,<,<",options="header",]
|
|
56
56
|
|=======================================================================
|
|
57
57
|
|Setting |Input type|Required
|
|
58
|
-
| <<plugins-{type}s-{plugin}-auth_pass>> |<<password,password>>|No
|
|
59
|
-
| <<plugins-{type}s-{plugin}-auth_protocol>> |<<string,string>>, one of `["md5", "sha", "sha2", "hmac128sha224", "hmac192sha256", "hmac256sha384", "hmac384sha512"]`|No
|
|
60
58
|
| <<plugins-{type}s-{plugin}-get>> |<<array,array>>|No
|
|
61
59
|
| <<plugins-{type}s-{plugin}-hosts>> |<<array,array>>|No
|
|
62
60
|
| <<plugins-{type}s-{plugin}-interval>> |<<number,number>>|No
|
|
63
61
|
| <<plugins-{type}s-{plugin}-mib_paths>> |<<path,path>>|No
|
|
64
62
|
| <<plugins-{type}s-{plugin}-oid_root_skip>> |<<boolean,boolean>>|No
|
|
63
|
+
| <<plugins-{type}s-{plugin}-walk>> |<<array,array>>|No
|
|
64
|
+
|=======================================================================
|
|
65
|
+
|
|
66
|
+
==== SNMPv3 Authentication Options
|
|
67
|
+
|
|
68
|
+
This plugin supports the following SNMPv3 authentication options.
|
|
69
|
+
|
|
70
|
+
[cols="<,<,<",options="header",]
|
|
71
|
+
|=======================================================================
|
|
72
|
+
|Setting |Input type|Required
|
|
73
|
+
| <<plugins-{type}s-{plugin}-auth_pass>> |<<password,password>>|No
|
|
74
|
+
| <<plugins-{type}s-{plugin}-auth_protocol>> |<<string,string>>, one of `["md5", "sha", "sha2", "hmac128sha224", "hmac192sha256", "hmac256sha384", "hmac384sha512"]`|No
|
|
65
75
|
| <<plugins-{type}s-{plugin}-priv_pass>> |<<password,password>>|No
|
|
66
76
|
| <<plugins-{type}s-{plugin}-priv_protocol>> |<<string,string>>, one of `["des", "3des", "aes", "aes128", "aes192", "aes256"]`|No
|
|
67
77
|
| <<plugins-{type}s-{plugin}-security_level>> |<<string,string>>, one of `["noAuthNoPriv", "authNoPriv", "authPriv"]`|No
|
|
68
78
|
| <<plugins-{type}s-{plugin}-security_name>> |<<string,string>>|No
|
|
69
|
-
| <<plugins-{type}s-{plugin}-walk>> |<<array,array>>|No
|
|
70
79
|
|=======================================================================
|
|
71
80
|
|
|
81
|
+
==== SNMP Input Configuration Options
|
|
82
|
+
|
|
72
83
|
Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
|
|
73
84
|
input plugins.
|
|
74
85
|
|
|
@@ -219,9 +230,10 @@ The `priv_pass` option specifies the SNMPv3 encryption password
|
|
|
219
230
|
[id="plugins-{type}s-{plugin}-priv_protocol"]
|
|
220
231
|
===== `priv_protocol`
|
|
221
232
|
|
|
222
|
-
The `priv_protocol` option specifies the SNMPv3 privacy/encryption protocol
|
|
233
|
+
The `priv_protocol` option specifies the SNMPv3 privacy/encryption protocol.
|
|
223
234
|
|
|
224
235
|
* Value can be any of: `des`, `3des`, `aes`, `aes128`, `aes192`, `aes256`
|
|
236
|
+
* Note that `aes` and `aes128` are equivalent
|
|
225
237
|
* There is no default value for this setting
|
|
226
238
|
|
|
227
239
|
[id="plugins-{type}s-{plugin}-security_name"]
|
|
@@ -306,4 +318,4 @@ input {
|
|
|
306
318
|
[id="plugins-{type}s-{plugin}-common-options"]
|
|
307
319
|
include::{include_path}/{type}.asciidoc[]
|
|
308
320
|
|
|
309
|
-
:
|
|
321
|
+
:no_codec!:
|
data/logstash-input-snmp.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-snmp'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.1'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "SNMP input plugin"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-snmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elasticsearch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|