logstash-input-snmp 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e8dd0042c7e0a91cfda117ab654b9633159d398e7cd13170a6e301a6de95fc8
4
- data.tar.gz: 553989d20b7c2bd9bea0194f7513088dbf8629d2f59a9fbc2a7653af472a6c0a
3
+ metadata.gz: 33e68f50e2d8dce7148c80ccc3a90029b4a0cc1f1039ae72a99be1525df17d89
4
+ data.tar.gz: 75d01ff55607a5e0aa31251bcdb91d94d75c3009acae39ac82c4dfb0a09feaa4
5
5
  SHA512:
6
- metadata.gz: '0130086878a261d29b22b9bdb35b1607ac7fb7af1ef56207d9b690a7bbbf3416e98336071c06262e5268373834c96037e4175d87e59b6e9a25b4ccb7854afd2e'
7
- data.tar.gz: bf4dfa3e025ebabd1eb4f9f064f9fccc79a62b9aab6971b593a4f7a68d6d389881df6069cc2c4a715b9b2e9db2552126068dc6148d1a9a1bc4f162dd6bb26086
6
+ metadata.gz: e2e8ae4ba872e2f55451be69e62108572ff27ea9380eaa29330cd80a42dbfc39cba4bfb4a1f11ef6e087c66f8e4c0d927484a02f093c742c666c6ede031f8cfc
7
+ data.tar.gz: 7347cab038cb7d1efbee0c8d60c5fe3a13dcedd2986f399ae150feeaa8758f34f0c0a32740f94685b13e172868a52d340f121bcdde81ffb193f9902985722932
@@ -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
 
@@ -1,8 +1,6 @@
1
1
  :plugin: snmp
2
2
  :type: input
3
- :default_codec: plain
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
- :default_codec!:
321
+ :no_codec!:
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-snmp'
3
- s.version = '1.0.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.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-10-24 00:00:00.000000000 Z
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