logstash-input-snmp 1.2.1 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +19 -5
- data/LICENSE +200 -9
- data/docs/index.asciidoc +12 -0
- data/lib/logstash-input-snmp_jars.rb +1 -1
- data/lib/logstash/inputs/snmp.rb +8 -1
- data/lib/logstash/inputs/snmp/base_client.rb +21 -33
- data/lib/logstash/inputs/snmp/client.rb +19 -20
- data/lib/logstash/inputs/snmp/clientv3.rb +49 -37
- data/logstash-input-snmp.gemspec +1 -1
- data/spec/inputs/snmp/base_client_spec.rb +7 -6
- data/spec/inputs/snmp_spec.rb +10 -1
- data/vendor/jar-dependencies/org/snmp4j/snmp4j/2.8.4/snmp4j-2.8.4.jar +0 -0
- metadata +3 -3
- data/vendor/jar-dependencies/org/snmp4j/snmp4j/2.5.11/snmp4j-2.5.11.jar +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 149791948ca146c248ba111642501748a2c0eacedc6b5774e4c8dd02ce9fb746
|
4
|
+
data.tar.gz: e5ac1d8d8d52481ea6b57a37ec09428a36b88c4c374c379aad3d5950c326e24a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfa32f9ecea52e10fcf38ece4ac80f2037da7a3dfed55560decba78eb80bdfc559a22952d8d85b83e44fbedcbe667b5f01d21d037406eea55a09fa5a684d4cee
|
7
|
+
data.tar.gz: ec8eca95c464381397b581260803d238d1fb1bf57bd7ae8add5d2718aa438509f0be70473592ba07bb12d19abe5a8aaff49cb5208b010aff283e92782a91c4a4
|
data/CHANGELOG.md
CHANGED
@@ -1,15 +1,30 @@
|
|
1
|
+
## 1.2.6
|
2
|
+
- Docs: example on setting IPv6 hosts [#89](https://github.com/logstash-plugins/logstash-input-snmp/pull/89)
|
3
|
+
|
4
|
+
## 1.2.5
|
5
|
+
- Updated snmp4j library to v2.8.4 [#86](https://github.com/logstash-plugins/logstash-input-snmp/pull/86)
|
6
|
+
|
7
|
+
## 1.2.4
|
8
|
+
- Fixed: support SNMPv3 multiple identical security name with different credentials [#84](https://github.com/logstash-plugins/logstash-input-snmp/pull/84)
|
9
|
+
|
10
|
+
## 1.2.3
|
11
|
+
- Fixed: multithreading problem when using multiple snmp inputs with multiple v3 credentials [#80](https://github.com/logstash-plugins/logstash-input-snmp/pull/80)
|
12
|
+
|
13
|
+
## 1.2.2
|
14
|
+
- Refactor: scope and review java_imports [#72](https://github.com/logstash-plugins/logstash-input-snmp/pull/72)
|
15
|
+
|
1
16
|
## 1.2.1
|
2
|
-
- Fixed GAUGE32 integer overflow [#65]
|
17
|
+
- Fixed GAUGE32 integer overflow [#65](https://github.com/logstash-plugins/logstash-input-snmp/pull/65)
|
3
18
|
|
4
19
|
## 1.2.0
|
5
|
-
- Adding oid_path_length config option [#59]
|
6
|
-
- Fixing bug with table support removing index value from OIDs [#60]
|
20
|
+
- Adding oid_path_length config option [#59](https://github.com/logstash-plugins/logstash-input-snmp/pull/59)
|
21
|
+
- Fixing bug with table support removing index value from OIDs [#60])https://github.com/logstash-plugins/logstash-input-snmp/issues/60)
|
7
22
|
|
8
23
|
## 1.1.1
|
9
24
|
- Added information and other improvements to documentation [#57](https://github.com/logstash-plugins/logstash-input-snmp/pull/57)
|
10
25
|
|
11
26
|
## 1.1.0
|
12
|
-
- Added support for querying SNMP tables [#49]
|
27
|
+
- Added support for querying SNMP tables [#49](https://github.com/logstash-plugins/logstash-input-snmp/pull/49)
|
13
28
|
- Changed three error messages in the base_client to include the target address for clarity in the logs.
|
14
29
|
|
15
30
|
## 1.0.1
|
@@ -36,4 +51,3 @@
|
|
36
51
|
|
37
52
|
## 0.1.0.beta1
|
38
53
|
- First beta version
|
39
|
-
|
data/LICENSE
CHANGED
@@ -1,11 +1,202 @@
|
|
1
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
2
|
-
you may not use this file except in compliance with the License.
|
3
|
-
You may obtain a copy of the License at
|
4
1
|
|
5
|
-
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
6
5
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright 2020 Elastic and contributors
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/docs/index.asciidoc
CHANGED
@@ -147,6 +147,18 @@ input {
|
|
147
147
|
}
|
148
148
|
-----
|
149
149
|
|
150
|
+
*Specifying IPv6 hosts*
|
151
|
+
|
152
|
+
[source,ruby]
|
153
|
+
-----
|
154
|
+
input {
|
155
|
+
snmp {
|
156
|
+
get => ["1.3.6.1.2.1.1.1.0"]
|
157
|
+
hosts => [{host => "udp:[::1]/161" community => "public"}, {host => "udp:[2001:db8::2:1]/161" community => "private"}]
|
158
|
+
}
|
159
|
+
}
|
160
|
+
-----
|
161
|
+
|
150
162
|
[id="plugins-{type}s-{plugin}-interval"]
|
151
163
|
===== `interval`
|
152
164
|
|
data/lib/logstash/inputs/snmp.rb
CHANGED
@@ -212,7 +212,14 @@ class LogStash::Inputs::Snmp < LogStash::Inputs::Base
|
|
212
212
|
end
|
213
213
|
end
|
214
214
|
|
215
|
-
def
|
215
|
+
def close
|
216
|
+
@client_definitions.each do |definition|
|
217
|
+
begin
|
218
|
+
definition[:client].close
|
219
|
+
rescue => e
|
220
|
+
logger.warn("error closing client on #{definition[:host_address]}, ignoring", :exception => e)
|
221
|
+
end
|
222
|
+
end
|
216
223
|
end
|
217
224
|
|
218
225
|
private
|
@@ -3,46 +3,25 @@ require "logstash-input-snmp_jars.rb"
|
|
3
3
|
|
4
4
|
require "logstash/util/loggable"
|
5
5
|
|
6
|
-
java_import "org.snmp4j.CommunityTarget"
|
7
|
-
java_import "org.snmp4j.PDU"
|
8
|
-
java_import "org.snmp4j.ScopedPDU"
|
9
|
-
java_import "org.snmp4j.Snmp"
|
10
|
-
java_import "org.snmp4j.Target"
|
11
|
-
java_import "org.snmp4j.TransportMapping"
|
12
|
-
java_import "org.snmp4j.event.ResponseEvent"
|
13
|
-
java_import "org.snmp4j.mp.SnmpConstants"
|
14
|
-
java_import "org.snmp4j.smi.Address"
|
15
|
-
java_import "org.snmp4j.smi.GenericAddress"
|
16
|
-
java_import "org.snmp4j.smi.OID"
|
17
|
-
java_import "org.snmp4j.smi.OctetString"
|
18
|
-
java_import "org.snmp4j.smi.VariableBinding"
|
19
|
-
java_import "org.snmp4j.transport.DefaultUdpTransportMapping"
|
20
|
-
java_import "org.snmp4j.transport.DefaultTcpTransportMapping"
|
21
|
-
java_import "org.snmp4j.util.TableUtils"
|
22
|
-
java_import "org.snmp4j.util.TreeUtils"
|
23
|
-
java_import "org.snmp4j.util.DefaultPDUFactory"
|
24
|
-
java_import "org.snmp4j.asn1.BER"
|
25
|
-
|
26
6
|
module LogStash
|
27
7
|
class SnmpClientError < StandardError
|
28
8
|
end
|
29
9
|
|
30
10
|
class BaseSnmpClient
|
11
|
+
java_import "org.snmp4j.TransportMapping"
|
12
|
+
java_import "org.snmp4j.mp.SnmpConstants"
|
13
|
+
java_import "org.snmp4j.smi.OID"
|
14
|
+
java_import "org.snmp4j.smi.VariableBinding"
|
15
|
+
java_import "org.snmp4j.util.TableUtils"
|
16
|
+
java_import "org.snmp4j.util.TreeUtils"
|
17
|
+
java_import "org.snmp4j.asn1.BER"
|
18
|
+
java_import "org.snmp4j.transport.DefaultUdpTransportMapping"
|
19
|
+
java_import "org.snmp4j.transport.DefaultTcpTransportMapping"
|
20
|
+
|
31
21
|
include LogStash::Util::Loggable
|
32
22
|
|
33
23
|
def initialize(protocol, address, port, retries, timeout, mib)
|
34
|
-
transport = case protocol.to_s
|
35
|
-
when "udp"
|
36
|
-
DefaultUdpTransportMapping.new
|
37
|
-
when "tcp"
|
38
|
-
DefaultTcpTransportMapping.new
|
39
|
-
else
|
40
|
-
raise(SnmpClientError, "invalid transport protocol specified '#{protocol.to_s}', expecting 'udp' or 'tcp'")
|
41
|
-
end
|
42
|
-
|
43
24
|
@mib = mib
|
44
|
-
@snmp = Snmp.new(transport)
|
45
|
-
transport.listen()
|
46
25
|
end
|
47
26
|
|
48
27
|
def get(oids, strip_root = 0, path_length = 0)
|
@@ -72,7 +51,6 @@ module LogStash
|
|
72
51
|
result
|
73
52
|
end
|
74
53
|
|
75
|
-
|
76
54
|
def walk(oid, strip_root = 0, path_length = 0)
|
77
55
|
result = {}
|
78
56
|
|
@@ -180,7 +158,6 @@ module LogStash
|
|
180
158
|
end
|
181
159
|
end
|
182
160
|
|
183
|
-
|
184
161
|
def parse_version(version)
|
185
162
|
case version.to_s
|
186
163
|
when "3"
|
@@ -196,6 +173,17 @@ module LogStash
|
|
196
173
|
|
197
174
|
private
|
198
175
|
|
176
|
+
def create_transport(protocol)
|
177
|
+
case protocol.to_s
|
178
|
+
when "udp"
|
179
|
+
DefaultUdpTransportMapping.new
|
180
|
+
when "tcp"
|
181
|
+
DefaultTcpTransportMapping.new
|
182
|
+
else
|
183
|
+
raise(SnmpClientError, "invalid transport protocol specified '#{protocol.to_s}', expecting 'udp' or 'tcp'")
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
199
187
|
def get_pdu
|
200
188
|
raise("abstract method")
|
201
189
|
end
|
@@ -2,34 +2,33 @@ require "java"
|
|
2
2
|
require "logstash-input-snmp_jars.rb"
|
3
3
|
require_relative "base_client"
|
4
4
|
|
5
|
-
java_import "org.snmp4j.CommunityTarget"
|
6
|
-
java_import "org.snmp4j.PDU"
|
7
|
-
java_import "org.snmp4j.ScopedPDU"
|
8
|
-
java_import "org.snmp4j.Snmp"
|
9
|
-
java_import "org.snmp4j.Target"
|
10
|
-
java_import "org.snmp4j.TransportMapping"
|
11
|
-
java_import "org.snmp4j.event.ResponseEvent"
|
12
|
-
java_import "org.snmp4j.mp.SnmpConstants"
|
13
|
-
java_import "org.snmp4j.smi.Address"
|
14
|
-
java_import "org.snmp4j.smi.GenericAddress"
|
15
|
-
java_import "org.snmp4j.smi.OID"
|
16
|
-
java_import "org.snmp4j.smi.OctetString"
|
17
|
-
java_import "org.snmp4j.smi.VariableBinding"
|
18
|
-
java_import "org.snmp4j.transport.DefaultUdpTransportMapping"
|
19
|
-
java_import "org.snmp4j.transport.DefaultTcpTransportMapping"
|
20
|
-
java_import "org.snmp4j.util.TreeUtils"
|
21
|
-
java_import "org.snmp4j.util.DefaultPDUFactory"
|
22
|
-
java_import "org.snmp4j.asn1.BER"
|
23
|
-
|
24
5
|
module LogStash
|
25
6
|
class SnmpClient < BaseSnmpClient
|
26
7
|
|
8
|
+
java_import "org.snmp4j.CommunityTarget"
|
9
|
+
java_import "org.snmp4j.PDU"
|
10
|
+
java_import "org.snmp4j.ScopedPDU"
|
11
|
+
java_import "org.snmp4j.Snmp"
|
12
|
+
java_import "org.snmp4j.Target"
|
13
|
+
java_import "org.snmp4j.smi.Address"
|
14
|
+
java_import "org.snmp4j.smi.GenericAddress"
|
15
|
+
java_import "org.snmp4j.smi.OctetString"
|
16
|
+
java_import "org.snmp4j.util.DefaultPDUFactory"
|
17
|
+
|
27
18
|
def initialize(protocol, address, port, community, version, retries, timeout, mib)
|
28
19
|
super(protocol, address, port, retries, timeout, mib)
|
29
|
-
raise(SnmpClientError, "SnmpClient is expecting
|
20
|
+
raise(SnmpClientError, "SnmpClient is expecting version '1' or '2c'") unless ["1", "2c"].include?(version.to_s)
|
21
|
+
|
22
|
+
@snmp = Snmp.new(create_transport(protocol))
|
23
|
+
@snmp.listen
|
24
|
+
|
30
25
|
@target = build_target("#{protocol}:#{address}/#{port}", community, version, retries, timeout)
|
31
26
|
end
|
32
27
|
|
28
|
+
def close
|
29
|
+
@snmp.close
|
30
|
+
end
|
31
|
+
|
33
32
|
private
|
34
33
|
|
35
34
|
def get_pdu
|
@@ -1,43 +1,39 @@
|
|
1
1
|
require 'java'
|
2
2
|
require 'logstash-input-snmp_jars.rb'
|
3
3
|
|
4
|
-
|
5
|
-
java_import 'org.snmp4j.PDU'
|
6
|
-
java_import 'org.snmp4j.ScopedPDU'
|
7
|
-
java_import 'org.snmp4j.Snmp'
|
8
|
-
java_import 'org.snmp4j.Target'
|
9
|
-
java_import 'org.snmp4j.TransportMapping'
|
10
|
-
java_import 'org.snmp4j.event.ResponseEvent'
|
11
|
-
java_import 'org.snmp4j.mp.MPv3'
|
12
|
-
java_import 'org.snmp4j.mp.SnmpConstants'
|
13
|
-
java_import 'org.snmp4j.security.AuthMD5'
|
14
|
-
java_import 'org.snmp4j.security.AuthSHA'
|
15
|
-
java_import 'org.snmp4j.security.AuthSHA2'
|
16
|
-
java_import 'org.snmp4j.security.AuthHMAC128SHA224'
|
17
|
-
java_import 'org.snmp4j.security.AuthHMAC192SHA256'
|
18
|
-
java_import 'org.snmp4j.security.AuthHMAC256SHA384'
|
19
|
-
java_import 'org.snmp4j.security.AuthHMAC384SHA512'
|
20
|
-
java_import 'org.snmp4j.security.Priv3DES'
|
21
|
-
java_import 'org.snmp4j.security.PrivDES'
|
22
|
-
java_import 'org.snmp4j.security.PrivAES128'
|
23
|
-
java_import 'org.snmp4j.security.PrivAES192'
|
24
|
-
java_import 'org.snmp4j.security.PrivAES256'
|
25
|
-
java_import 'org.snmp4j.security.SecurityModels'
|
26
|
-
java_import 'org.snmp4j.security.SecurityProtocols'
|
27
|
-
java_import 'org.snmp4j.security.USM'
|
28
|
-
java_import 'org.snmp4j.security.UsmUser'
|
29
|
-
java_import 'org.snmp4j.security.SecurityLevel'
|
30
|
-
java_import 'org.snmp4j.smi.Address'
|
31
|
-
java_import 'org.snmp4j.smi.GenericAddress'
|
32
|
-
java_import 'org.snmp4j.smi.OID'
|
33
|
-
java_import 'org.snmp4j.smi.OctetString'
|
34
|
-
java_import 'org.snmp4j.transport.DefaultUdpTransportMapping'
|
35
|
-
java_import 'org.snmp4j.transport.DefaultTcpTransportMapping'
|
36
|
-
java_import 'org.snmp4j.UserTarget'
|
37
|
-
java_import 'org.snmp4j.util.DefaultPDUFactory'
|
38
|
-
|
39
4
|
module LogStash
|
5
|
+
|
40
6
|
class SnmpClientV3 < BaseSnmpClient
|
7
|
+
java_import 'org.snmp4j.PDU'
|
8
|
+
java_import 'org.snmp4j.ScopedPDU'
|
9
|
+
java_import 'org.snmp4j.Snmp'
|
10
|
+
java_import 'org.snmp4j.Target'
|
11
|
+
java_import 'org.snmp4j.event.ResponseEvent'
|
12
|
+
java_import 'org.snmp4j.mp.SnmpConstants'
|
13
|
+
java_import 'org.snmp4j.security.AuthMD5'
|
14
|
+
java_import 'org.snmp4j.security.AuthSHA'
|
15
|
+
java_import 'org.snmp4j.security.AuthSHA2'
|
16
|
+
java_import 'org.snmp4j.security.AuthHMAC128SHA224'
|
17
|
+
java_import 'org.snmp4j.security.AuthHMAC192SHA256'
|
18
|
+
java_import 'org.snmp4j.security.AuthHMAC256SHA384'
|
19
|
+
java_import 'org.snmp4j.security.AuthHMAC384SHA512'
|
20
|
+
java_import 'org.snmp4j.security.Priv3DES'
|
21
|
+
java_import 'org.snmp4j.security.PrivDES'
|
22
|
+
java_import 'org.snmp4j.security.PrivAES128'
|
23
|
+
java_import 'org.snmp4j.security.PrivAES192'
|
24
|
+
java_import 'org.snmp4j.security.PrivAES256'
|
25
|
+
java_import 'org.snmp4j.security.UsmUser'
|
26
|
+
java_import 'org.snmp4j.security.SecurityLevel'
|
27
|
+
java_import 'org.snmp4j.security.SecurityModels'
|
28
|
+
java_import 'org.snmp4j.security.SecurityProtocols'
|
29
|
+
java_import 'org.snmp4j.security.USM'
|
30
|
+
java_import 'org.snmp4j.smi.Address'
|
31
|
+
java_import 'org.snmp4j.smi.GenericAddress'
|
32
|
+
java_import 'org.snmp4j.smi.OctetString'
|
33
|
+
java_import 'org.snmp4j.UserTarget'
|
34
|
+
java_import 'org.snmp4j.util.DefaultPDUFactory'
|
35
|
+
java_import 'org.snmp4j.mp.MPv3'
|
36
|
+
java_import "org.snmp4j.MessageDispatcherImpl"
|
41
37
|
|
42
38
|
def initialize(protocol, address, port, retries, timeout, mib, security_name, auth_protocol, auth_pass, priv_protocol, priv_pass, security_level)
|
43
39
|
super(protocol, address, port, retries, timeout, mib)
|
@@ -49,13 +45,29 @@ module LogStash
|
|
49
45
|
auth_pass = auth_pass.nil? ? nil : OctetString.new(auth_pass)
|
50
46
|
priv_pass = priv_pass.nil? ? nil : OctetString.new(priv_pass)
|
51
47
|
|
52
|
-
|
48
|
+
engine_id = OctetString.new(MPv3.createLocalEngineID)
|
49
|
+
|
50
|
+
security_protocols = SecurityProtocols.getInstance
|
51
|
+
security_protocols.addDefaultProtocols
|
52
|
+
|
53
|
+
usm = USM.new(security_protocols, engine_id, 0)
|
54
|
+
usm.addUser(UsmUser.new(security_name, auth_protocol, auth_pass, priv_protocol, priv_pass))
|
55
|
+
|
53
56
|
SecurityModels.getInstance.addSecurityModel(usm)
|
54
57
|
|
55
|
-
|
58
|
+
dispatcher = MessageDispatcherImpl.new
|
59
|
+
dispatcher.addMessageProcessingModel(MPv3.new(usm))
|
60
|
+
|
61
|
+
@snmp = Snmp.new(dispatcher, create_transport(protocol))
|
62
|
+
@snmp.listen
|
63
|
+
|
56
64
|
@target = build_target("#{protocol}:#{address}/#{port}", security_name, security_level, retries, timeout)
|
57
65
|
end
|
58
66
|
|
67
|
+
def close
|
68
|
+
@snmp.close
|
69
|
+
end
|
70
|
+
|
59
71
|
private
|
60
72
|
|
61
73
|
def build_target(address, name, seclevel, retries, timeout)
|
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.2.
|
3
|
+
s.version = '1.2.6'
|
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"
|
@@ -2,13 +2,14 @@
|
|
2
2
|
require "logstash/devutils/rspec/spec_helper"
|
3
3
|
require "logstash/inputs/snmp/base_client"
|
4
4
|
|
5
|
-
java_import "org.snmp4j.smi.AbstractVariable"
|
6
|
-
java_import "org.snmp4j.smi.SMIConstants"
|
7
|
-
java_import "org.snmp4j.smi.Gauge32"
|
8
|
-
java_import "org.snmp4j.smi.Integer32"
|
9
|
-
|
10
5
|
module LogStash
|
11
6
|
|
7
|
+
java_import "org.snmp4j.asn1.BER"
|
8
|
+
java_import "org.snmp4j.smi.AbstractVariable"
|
9
|
+
java_import "org.snmp4j.smi.SMIConstants"
|
10
|
+
java_import "org.snmp4j.smi.Gauge32"
|
11
|
+
java_import "org.snmp4j.smi.Integer32"
|
12
|
+
|
12
13
|
class TestableBaseSnmpClient < BaseSnmpClient
|
13
14
|
def coerce(*args)
|
14
15
|
super(*args)
|
@@ -35,7 +36,7 @@ module LogStash
|
|
35
36
|
expect(subject).to receive(:logger).exactly(1).times.and_call_original
|
36
37
|
expect(subject.coerce(v)).to eq("error: unknown variable syntax 130, EndOfMibView")
|
37
38
|
end
|
38
|
-
|
39
|
+
|
39
40
|
it "should handle max unsigned 32 bits integer GAUGE32" do
|
40
41
|
MAX_UNSIGNED_INT_32 = 4294967295
|
41
42
|
v = Gauge32.new(MAX_UNSIGNED_INT_32)
|
data/spec/inputs/snmp_spec.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require "logstash/devutils/rspec/spec_helper"
|
3
|
+
require "logstash/devutils/rspec/shared_examples"
|
3
4
|
require "logstash/inputs/snmp"
|
4
5
|
|
5
6
|
describe LogStash::Inputs::Snmp do
|
@@ -14,6 +15,8 @@ describe LogStash::Inputs::Snmp do
|
|
14
15
|
before do
|
15
16
|
expect(LogStash::SnmpClient).to receive(:new).and_return(mock_client)
|
16
17
|
expect(mock_client).to receive(:get).and_return({})
|
18
|
+
# devutils in v6 calls close on the test pipelines while it does not in v7+
|
19
|
+
expect(mock_client).to receive(:close).at_most(:once)
|
17
20
|
end
|
18
21
|
end
|
19
22
|
|
@@ -67,6 +70,10 @@ describe LogStash::Inputs::Snmp do
|
|
67
70
|
{"get" => ["1.0"], "hosts" => [{"host" => "udp:127.0.0.1/161", "version" => "1"}]},
|
68
71
|
{"get" => ["1.0"], "hosts" => [{"host" => "udp:127.0.0.1/161", "version" => "2c"}]},
|
69
72
|
{"get" => ["1.0"], "hosts" => [{"host" => "udp:127.0.0.1/161", "version" => "3"}], "security_name" => "v3user"},
|
73
|
+
|
74
|
+
{"get" => ["1.0"], "hosts" => [{"host" => "udp:[::1]/16100"}]},
|
75
|
+
{"get" => ["1.0"], "hosts" => [{"host" => "udp:[2001:db8:0:1:1:1:1:1]/16100"}]},
|
76
|
+
{"get" => ["1.0"], "hosts" => [{"host" => "udp:[2001:db8::2:1]/161"}]},
|
70
77
|
]
|
71
78
|
}
|
72
79
|
|
@@ -102,7 +109,7 @@ describe LogStash::Inputs::Snmp do
|
|
102
109
|
let(:valid_configs) {
|
103
110
|
[
|
104
111
|
{"get" => ["1.0"], "hosts" => [{"host" => "udp:127.0.0.1/161", "version" => "3"}], "security_name" => "ciscov3", "auth_protocol" => "sha", "auth_pass" => "myshapass", "priv_protocol" => "aes", "priv_pass" => "myprivpass", "security_level" => "authNoPriv"},
|
105
|
-
{"get" => ["1.0"], "hosts" => [{"host" => "udp:
|
112
|
+
{"get" => ["1.0"], "hosts" => [{"host" => "udp:[2001:db8:0:1:1:1:1:1]/1610", "version" => "3"}], "security_name" => "dellv3", "auth_protocol" => "md5", "auth_pass" => "myshapass", "priv_protocol" => "3des", "priv_pass" => "myprivpass", "security_level" => "authNoPriv"}
|
106
113
|
]
|
107
114
|
}
|
108
115
|
|
@@ -127,6 +134,8 @@ describe LogStash::Inputs::Snmp do
|
|
127
134
|
before do
|
128
135
|
expect(LogStash::SnmpClient).to receive(:new).and_return(mock_client)
|
129
136
|
expect(mock_client).to receive(:get).and_return({"foo" => "bar"})
|
137
|
+
# devutils in v6 calls close on the test pipelines while it does not in v7+
|
138
|
+
expect(mock_client).to receive(:close).at_most(:once)
|
130
139
|
end
|
131
140
|
|
132
141
|
it "shoud add @metadata fields and add default host field" do
|
Binary file
|
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.2.
|
4
|
+
version: 1.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elasticsearch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -417,7 +417,7 @@ files:
|
|
417
417
|
- spec/inputs/snmp/base_client_spec.rb
|
418
418
|
- spec/inputs/snmp/mib_spec.rb
|
419
419
|
- spec/inputs/snmp_spec.rb
|
420
|
-
- vendor/jar-dependencies/org/snmp4j/snmp4j/2.
|
420
|
+
- vendor/jar-dependencies/org/snmp4j/snmp4j/2.8.4/snmp4j-2.8.4.jar
|
421
421
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
422
422
|
licenses:
|
423
423
|
- Apache-2.0
|
Binary file
|