logstash-input-rabbitmq 5.2.3 → 5.2.4

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
  SHA1:
3
- metadata.gz: 158655501a87fa5ca7beb4a9f5ef3819851a0d30
4
- data.tar.gz: 05ed03e1cc8fdeae916bc6d5d2c6016236b7de37
3
+ metadata.gz: 09207ef32c43501fb59cbebdf97800821a9a20d8
4
+ data.tar.gz: 6787d85646fc0c2981aa6ec89b65c138274c1a41
5
5
  SHA512:
6
- metadata.gz: f5af5e745f43667b28c668a8083b91c1b915f43929abd874f042fb88e8e1e223cb15c8f31ccd1502e77f367b9b8897494641a70ef3f4e9fbe53b973f26ba6f13
7
- data.tar.gz: 19f8415dadf49ecc52db3827cfe2e55352979e20dba60bd6023f87a21d18a658d2c0901897cc7a06f9bea5032d18e3d1d31738d6f98dc6a84b3f85c1b519cbda
6
+ metadata.gz: 2c32da7acbd2222fc489ddd874127ec685ec91cc47a2021a77ed429024f652bf2840639af8fabf3178d9a378837b21f2fd292591c5c1f501d82f8038328cf4f9
7
+ data.tar.gz: bc6c2bd5afb2b175e513128bc4d24ce69e454eb455a588ad4b29ab2737952be1991bd66cee8e0b1d1cbaca666e78048ba7ea53741ea206522e5ce560c8a20c77
@@ -1,3 +1,6 @@
1
+ ## 5.2.4
2
+ - Require v4.3.0 of rabbitmq-connection_mixin which bumps the major version of the java rabbitmq lib
3
+
1
4
  ## 5.2.3
2
5
  - Fix metadata decoration so that `add_field` and friends aren't overwritten by headers and properties
3
6
 
data/Gemfile CHANGED
@@ -1,4 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in logstash-mass_effect.gemspec
4
3
  gemspec
4
+
5
+ logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
6
+ use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
7
+
8
+ if Dir.exist?(logstash_path) && use_logstash_source
9
+ gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
10
+ gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
11
+ end
@@ -0,0 +1,415 @@
1
+ :plugin: rabbitmq
2
+ :type: input
3
+
4
+ ///////////////////////////////////////////
5
+ START - GENERATED VARIABLES, DO NOT EDIT!
6
+ ///////////////////////////////////////////
7
+ :version: %VERSION%
8
+ :release_date: %RELEASE_DATE%
9
+ :changelog_url: %CHANGELOG_URL%
10
+ :include_path: ../../../../logstash/docs/include
11
+ ///////////////////////////////////////////
12
+ END - GENERATED VARIABLES, DO NOT EDIT!
13
+ ///////////////////////////////////////////
14
+
15
+ [id="plugins-{type}-{plugin}"]
16
+
17
+ === Rabbitmq input plugin
18
+
19
+ include::{include_path}/plugin_header.asciidoc[]
20
+
21
+ ==== Description
22
+
23
+ Pull events from a http://www.rabbitmq.com/[RabbitMQ] queue.
24
+
25
+ The default settings will create an entirely transient queue and listen for all messages by default.
26
+ If you need durability or any other advanced settings, please set the appropriate options
27
+
28
+ This plugin uses the http://rubymarchhare.info/[March Hare] library
29
+ for interacting with the RabbitMQ server. Most configuration options
30
+ map directly to standard RabbitMQ and AMQP concepts. The
31
+ https://www.rabbitmq.com/amqp-0-9-1-reference.html[AMQP 0-9-1 reference guide]
32
+ and other parts of the RabbitMQ documentation are useful for deeper
33
+ understanding.
34
+
35
+ The properties of messages received will be stored in the
36
+ `[@metadata][rabbitmq_properties]` field if the `@metadata_enabled` setting is checked.
37
+ Note that storing metadata may degrade performance.
38
+ The following properties may be available (in most cases dependent on whether
39
+ they were set by the sender):
40
+
41
+ * app-id
42
+ * cluster-id
43
+ * consumer-tag
44
+ * content-encoding
45
+ * content-type
46
+ * correlation-id
47
+ * delivery-mode
48
+ * exchange
49
+ * expiration
50
+ * message-id
51
+ * priority
52
+ * redeliver
53
+ * reply-to
54
+ * routing-key
55
+ * timestamp
56
+ * type
57
+ * user-id
58
+
59
+ For example, to get the RabbitMQ message's timestamp property
60
+ into the Logstash event's `@timestamp` field, use the date
61
+ filter to parse the `[@metadata][rabbitmq_properties][timestamp]`
62
+ field:
63
+ [source,ruby]
64
+ filter {
65
+ if [@metadata][rabbitmq_properties][timestamp] {
66
+ date {
67
+ match => ["[@metadata][rabbitmq_properties][timestamp]", "UNIX"]
68
+ }
69
+ }
70
+ }
71
+
72
+ Additionally, any message headers will be saved in the
73
+ `[@metadata][rabbitmq_headers]` field.
74
+
75
+ [id="plugins-{type}s-{plugin}-options"]
76
+ ==== Rabbitmq Input Configuration Options
77
+
78
+ This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
79
+
80
+ [cols="<,<,<",options="header",]
81
+ |=======================================================================
82
+ |Setting |Input type|Required
83
+ | <<plugins-{type}s-{plugin}-ack>> |<<boolean,boolean>>|No
84
+ | <<plugins-{type}s-{plugin}-arguments>> |<<array,array>>|No
85
+ | <<plugins-{type}s-{plugin}-auto_delete>> |<<boolean,boolean>>|No
86
+ | <<plugins-{type}s-{plugin}-automatic_recovery>> |<<boolean,boolean>>|No
87
+ | <<plugins-{type}s-{plugin}-connect_retry_interval>> |<<number,number>>|No
88
+ | <<plugins-{type}s-{plugin}-connection_timeout>> |<<number,number>>|No
89
+ | <<plugins-{type}s-{plugin}-durable>> |<<boolean,boolean>>|No
90
+ | <<plugins-{type}s-{plugin}-exchange>> |<<string,string>>|No
91
+ | <<plugins-{type}s-{plugin}-exchange_type>> |<<string,string>>|No
92
+ | <<plugins-{type}s-{plugin}-exclusive>> |<<boolean,boolean>>|No
93
+ | <<plugins-{type}s-{plugin}-heartbeat>> |<<number,number>>|No
94
+ | <<plugins-{type}s-{plugin}-host>> |<<string,string>>|Yes
95
+ | <<plugins-{type}s-{plugin}-key>> |<<string,string>>|No
96
+ | <<plugins-{type}s-{plugin}-metadata_enabled>> |<<boolean,boolean>>|No
97
+ | <<plugins-{type}s-{plugin}-passive>> |<<boolean,boolean>>|No
98
+ | <<plugins-{type}s-{plugin}-password>> |<<password,password>>|No
99
+ | <<plugins-{type}s-{plugin}-port>> |<<number,number>>|No
100
+ | <<plugins-{type}s-{plugin}-prefetch_count>> |<<number,number>>|No
101
+ | <<plugins-{type}s-{plugin}-queue>> |<<string,string>>|No
102
+ | <<plugins-{type}s-{plugin}-ssl>> |<<boolean,boolean>>|No
103
+ | <<plugins-{type}s-{plugin}-ssl_certificate_password>> |<<string,string>>|No
104
+ | <<plugins-{type}s-{plugin}-ssl_certificate_path>> |a valid filesystem path|No
105
+ | <<plugins-{type}s-{plugin}-ssl_version>> |<<string,string>>|No
106
+ | <<plugins-{type}s-{plugin}-subscription_retry_interval_seconds>> |<<number,number>>|Yes
107
+ | <<plugins-{type}s-{plugin}-threads>> |<<number,number>>|No
108
+ | <<plugins-{type}s-{plugin}-user>> |<<string,string>>|No
109
+ | <<plugins-{type}s-{plugin}-vhost>> |<<string,string>>|No
110
+ |=======================================================================
111
+
112
+ Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
113
+ input plugins.
114
+
115
+ &nbsp;
116
+
117
+ [id="plugins-{type}s-{plugin}-ack"]
118
+ ===== `ack`
119
+
120
+ * Value type is <<boolean,boolean>>
121
+ * Default value is `true`
122
+
123
+ Enable message acknowledgements. With acknowledgements
124
+ messages fetched by Logstash but not yet sent into the
125
+ Logstash pipeline will be requeued by the server if Logstash
126
+ shuts down. Acknowledgements will however hurt the message
127
+ throughput.
128
+
129
+ This will only send an ack back every `prefetch_count` messages.
130
+ Working in batches provides a performance boost here.
131
+
132
+ [id="plugins-{type}s-{plugin}-arguments"]
133
+ ===== `arguments`
134
+
135
+ * Value type is <<array,array>>
136
+ * Default value is `{}`
137
+
138
+ Extra queue arguments as an array.
139
+ To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
140
+
141
+ [id="plugins-{type}s-{plugin}-auto_delete"]
142
+ ===== `auto_delete`
143
+
144
+ * Value type is <<boolean,boolean>>
145
+ * Default value is `false`
146
+
147
+ Should the queue be deleted on the broker when the last consumer
148
+ disconnects? Set this option to `false` if you want the queue to remain
149
+ on the broker, queueing up messages until a consumer comes along to
150
+ consume them.
151
+
152
+ [id="plugins-{type}s-{plugin}-automatic_recovery"]
153
+ ===== `automatic_recovery`
154
+
155
+ * Value type is <<boolean,boolean>>
156
+ * Default value is `true`
157
+
158
+ Set this to automatically recover from a broken connection. You almost certainly don't want to override this!!!
159
+
160
+ [id="plugins-{type}s-{plugin}-connect_retry_interval"]
161
+ ===== `connect_retry_interval`
162
+
163
+ * Value type is <<number,number>>
164
+ * Default value is `1`
165
+
166
+ Time in seconds to wait before retrying a connection
167
+
168
+ [id="plugins-{type}s-{plugin}-connection_timeout"]
169
+ ===== `connection_timeout`
170
+
171
+ * Value type is <<number,number>>
172
+ * There is no default value for this setting.
173
+
174
+ The default connection timeout in milliseconds. If not specified the timeout is infinite.
175
+
176
+ [id="plugins-{type}s-{plugin}-durable"]
177
+ ===== `durable`
178
+
179
+ * Value type is <<boolean,boolean>>
180
+ * Default value is `false`
181
+
182
+ Is this queue durable? (aka; Should it survive a broker restart?)
183
+
184
+ [id="plugins-{type}s-{plugin}-exchange"]
185
+ ===== `exchange`
186
+
187
+ * Value type is <<string,string>>
188
+ * There is no default value for this setting.
189
+
190
+ The name of the exchange to bind the queue to. Specify `exchange_type`
191
+ as well to declare the exchange if it does not exist
192
+
193
+ [id="plugins-{type}s-{plugin}-exchange_type"]
194
+ ===== `exchange_type`
195
+
196
+ * Value type is <<string,string>>
197
+ * There is no default value for this setting.
198
+
199
+ The type of the exchange to bind to. Specifying this will cause this plugin
200
+ to declare the exchange if it does not exist.
201
+
202
+ [id="plugins-{type}s-{plugin}-exclusive"]
203
+ ===== `exclusive`
204
+
205
+ * Value type is <<boolean,boolean>>
206
+ * Default value is `false`
207
+
208
+ Is the queue exclusive? Exclusive queues can only be used by the connection
209
+ that declared them and will be deleted when it is closed (e.g. due to a Logstash
210
+ restart).
211
+
212
+ [id="plugins-{type}s-{plugin}-heartbeat"]
213
+ ===== `heartbeat`
214
+
215
+ * Value type is <<number,number>>
216
+ * There is no default value for this setting.
217
+
218
+ Heartbeat delay in seconds. If unspecified no heartbeats will be sent
219
+
220
+ [id="plugins-{type}s-{plugin}-host"]
221
+ ===== `host`
222
+
223
+ * This is a required setting.
224
+ * Value type is <<string,string>>
225
+ * There is no default value for this setting.
226
+
227
+ Common functionality for the rabbitmq input/output
228
+ RabbitMQ server address(es)
229
+ host can either be a single host, or a list of hosts
230
+ i.e.
231
+ host => "localhost"
232
+ or
233
+ host => ["host01", "host02]
234
+
235
+ if multiple hosts are provided on the initial connection and any subsequent
236
+ recovery attempts of the hosts is chosen at random and connected to.
237
+ Note that only one host connection is active at a time.
238
+
239
+ [id="plugins-{type}s-{plugin}-key"]
240
+ ===== `key`
241
+
242
+ * Value type is <<string,string>>
243
+ * Default value is `"logstash"`
244
+
245
+ The routing key to use when binding a queue to the exchange.
246
+ This is only relevant for direct or topic exchanges.
247
+
248
+ * Routing keys are ignored on fanout exchanges.
249
+ * Wildcards are not valid on direct exchanges.
250
+
251
+ [id="plugins-{type}s-{plugin}-metadata_enabled"]
252
+ ===== `metadata_enabled`
253
+
254
+ * Value type is <<boolean,boolean>>
255
+ * Default value is `false`
256
+
257
+ Enable the storage of message headers and properties in `@metadata`. This may impact performance
258
+
259
+ [id="plugins-{type}s-{plugin}-passive"]
260
+ ===== `passive`
261
+
262
+ * Value type is <<boolean,boolean>>
263
+ * Default value is `false`
264
+
265
+ If true the queue will be passively declared, meaning it must
266
+ already exist on the server. To have Logstash create the queue
267
+ if necessary leave this option as false. If actively declaring
268
+ a queue that already exists, the queue options for this plugin
269
+ (durable etc) must match those of the existing queue.
270
+
271
+ [id="plugins-{type}s-{plugin}-password"]
272
+ ===== `password`
273
+
274
+ * Value type is <<password,password>>
275
+ * Default value is `"guest"`
276
+
277
+ RabbitMQ password
278
+
279
+ [id="plugins-{type}s-{plugin}-port"]
280
+ ===== `port`
281
+
282
+ * Value type is <<number,number>>
283
+ * Default value is `5672`
284
+
285
+ RabbitMQ port to connect on
286
+
287
+ [id="plugins-{type}s-{plugin}-prefetch_count"]
288
+ ===== `prefetch_count`
289
+
290
+ * Value type is <<number,number>>
291
+ * Default value is `256`
292
+
293
+ Prefetch count. If acknowledgements are enabled with the `ack`
294
+ option, specifies the number of outstanding unacknowledged
295
+ messages allowed.
296
+
297
+ [id="plugins-{type}s-{plugin}-queue"]
298
+ ===== `queue`
299
+
300
+ * Value type is <<string,string>>
301
+ * Default value is `""`
302
+
303
+ The properties to extract from each message and store in a
304
+ @metadata field.
305
+
306
+ Technically the exchange, redeliver, and routing-key
307
+ properties belong to the envelope and not the message but we
308
+ ignore that distinction here. However, we extract the
309
+ headers separately via get_headers even though the header
310
+ table technically is a message property.
311
+
312
+ Freezing all strings so that code modifying the event's
313
+ @metadata field can't touch them.
314
+
315
+ If updating this list, remember to update the documentation
316
+ above too.
317
+ The default codec for this plugin is JSON. You can override this to suit your particular needs however.
318
+ The name of the queue Logstash will consume events from. If
319
+ left empty, a transient queue with an randomly chosen name
320
+ will be created.
321
+
322
+ [id="plugins-{type}s-{plugin}-ssl"]
323
+ ===== `ssl`
324
+
325
+ * Value type is <<boolean,boolean>>
326
+ * There is no default value for this setting.
327
+
328
+ Enable or disable SSL.
329
+ Note that by default remote certificate verification is off.
330
+ Specify ssl_certificate_path and ssl_certificate_password if you need
331
+ certificate verification
332
+
333
+ [id="plugins-{type}s-{plugin}-ssl_certificate_password"]
334
+ ===== `ssl_certificate_password`
335
+
336
+ * Value type is <<string,string>>
337
+ * There is no default value for this setting.
338
+
339
+ Password for the encrypted PKCS12 (.p12) certificate file specified in ssl_certificate_path
340
+
341
+ [id="plugins-{type}s-{plugin}-ssl_certificate_path"]
342
+ ===== `ssl_certificate_path`
343
+
344
+ * Value type is <<path,path>>
345
+ * There is no default value for this setting.
346
+
347
+ Path to an SSL certificate in PKCS12 (.p12) format used for verifying the remote host
348
+
349
+ [id="plugins-{type}s-{plugin}-ssl_version"]
350
+ ===== `ssl_version`
351
+
352
+ * Value type is <<string,string>>
353
+ * Default value is `"TLSv1.2"`
354
+
355
+ Version of the SSL protocol to use.
356
+
357
+ [id="plugins-{type}s-{plugin}-subscription_retry_interval_seconds"]
358
+ ===== `subscription_retry_interval_seconds`
359
+
360
+ * This is a required setting.
361
+ * Value type is <<number,number>>
362
+ * Default value is `5`
363
+
364
+ Amount of time in seconds to wait after a failed subscription request
365
+ before retrying. Subscribes can fail if the server goes away and then comes back.
366
+
367
+ [id="plugins-{type}s-{plugin}-threads"]
368
+ ===== `threads`
369
+
370
+ * Value type is <<number,number>>
371
+ * Default value is `1`
372
+
373
+
374
+
375
+ [id="plugins-{type}s-{plugin}-tls_certificate_password"]
376
+ ===== `tls_certificate_password` (DEPRECATED)
377
+
378
+ * DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
379
+ * Value type is <<string,string>>
380
+ * There is no default value for this setting.
381
+
382
+ TLS certificate password
383
+
384
+ [id="plugins-{type}s-{plugin}-tls_certificate_path"]
385
+ ===== `tls_certificate_path` (DEPRECATED)
386
+
387
+ * DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
388
+ * Value type is <<path,path>>
389
+ * There is no default value for this setting.
390
+
391
+ TLS certifcate path
392
+
393
+ [id="plugins-{type}s-{plugin}-user"]
394
+ ===== `user`
395
+
396
+ * Value type is <<string,string>>
397
+ * Default value is `"guest"`
398
+
399
+ RabbitMQ username
400
+
401
+ [id="plugins-{type}s-{plugin}-vhost"]
402
+ ===== `vhost`
403
+
404
+ * Value type is <<string,string>>
405
+ * Default value is `"/"`
406
+
407
+ The vhost (virtual host) to use. If you don't know what this
408
+ is, leave the default. With the exception of the default
409
+ vhost ("/"), names of vhosts should not begin with a forward
410
+ slash.
411
+
412
+
413
+
414
+ [id="plugins-{type}s-{plugin}-common-options"]
415
+ include::{include_path}/{type}.asciidoc[]
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-rabbitmq'
3
- s.version = '5.2.3'
3
+ s.version = '5.2.4'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Pull events from a RabbitMQ exchange."
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"
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.require_paths = ["lib"]
11
11
 
12
12
  # Files
13
- s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
13
+ s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
14
14
 
15
15
  # Tests
16
16
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  # Gem dependencies
22
22
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
23
- s.add_runtime_dependency "logstash-mixin-rabbitmq_connection", '>= 4.2.2', '< 5.0.0'
23
+ s.add_runtime_dependency "logstash-mixin-rabbitmq_connection", '>= 4.3.0', '< 5.0.0'
24
24
 
25
25
  s.add_runtime_dependency 'logstash-codec-json'
26
26
 
metadata CHANGED
@@ -1,25 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-rabbitmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3
4
+ version: 5.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-21 00:00:00.000000000 Z
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: logstash-core-plugin-api
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '1.60'
20
- - - "<="
21
- - !ruby/object:Gem::Version
22
- version: '2.99'
23
14
  requirement: !ruby/object:Gem::Requirement
24
15
  requirements:
25
16
  - - ">="
@@ -28,70 +19,79 @@ dependencies:
28
19
  - - "<="
29
20
  - !ruby/object:Gem::Version
30
21
  version: '2.99'
22
+ name: logstash-core-plugin-api
31
23
  prerelease: false
32
24
  type: :runtime
33
- - !ruby/object:Gem::Dependency
34
- name: logstash-mixin-rabbitmq_connection
35
25
  version_requirements: !ruby/object:Gem::Requirement
36
26
  requirements:
37
27
  - - ">="
38
28
  - !ruby/object:Gem::Version
39
- version: 4.2.2
40
- - - "<"
29
+ version: '1.60'
30
+ - - "<="
41
31
  - !ruby/object:Gem::Version
42
- version: 5.0.0
32
+ version: '2.99'
33
+ - !ruby/object:Gem::Dependency
43
34
  requirement: !ruby/object:Gem::Requirement
44
35
  requirements:
45
36
  - - ">="
46
37
  - !ruby/object:Gem::Version
47
- version: 4.2.2
38
+ version: 4.3.0
48
39
  - - "<"
49
40
  - !ruby/object:Gem::Version
50
41
  version: 5.0.0
42
+ name: logstash-mixin-rabbitmq_connection
51
43
  prerelease: false
52
44
  type: :runtime
53
- - !ruby/object:Gem::Dependency
54
- name: logstash-codec-json
55
45
  version_requirements: !ruby/object:Gem::Requirement
56
46
  requirements:
57
47
  - - ">="
58
48
  - !ruby/object:Gem::Version
59
- version: '0'
49
+ version: 4.3.0
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: 5.0.0
53
+ - !ruby/object:Gem::Dependency
60
54
  requirement: !ruby/object:Gem::Requirement
61
55
  requirements:
62
56
  - - ">="
63
57
  - !ruby/object:Gem::Version
64
58
  version: '0'
59
+ name: logstash-codec-json
65
60
  prerelease: false
66
61
  type: :runtime
67
- - !ruby/object:Gem::Dependency
68
- name: logstash-devutils
69
62
  version_requirements: !ruby/object:Gem::Requirement
70
63
  requirements:
71
64
  - - ">="
72
65
  - !ruby/object:Gem::Version
73
66
  version: '0'
67
+ - !ruby/object:Gem::Dependency
74
68
  requirement: !ruby/object:Gem::Requirement
75
69
  requirements:
76
70
  - - ">="
77
71
  - !ruby/object:Gem::Version
78
72
  version: '0'
73
+ name: logstash-devutils
79
74
  prerelease: false
80
75
  type: :development
81
- - !ruby/object:Gem::Dependency
82
- name: logstash-codec-plain
83
76
  version_requirements: !ruby/object:Gem::Requirement
84
77
  requirements:
85
78
  - - ">="
86
79
  - !ruby/object:Gem::Version
87
80
  version: '0'
81
+ - !ruby/object:Gem::Dependency
88
82
  requirement: !ruby/object:Gem::Requirement
89
83
  requirements:
90
84
  - - ">="
91
85
  - !ruby/object:Gem::Version
92
86
  version: '0'
87
+ name: logstash-codec-plain
93
88
  prerelease: false
94
89
  type: :development
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
95
  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
96
96
  email: info@elastic.co
97
97
  executables: []
@@ -104,6 +104,7 @@ files:
104
104
  - LICENSE
105
105
  - NOTICE.TXT
106
106
  - README.md
107
+ - docs/index.asciidoc
107
108
  - lib/logstash/inputs/rabbitmq.rb
108
109
  - logstash-input-rabbitmq.gemspec
109
110
  - spec/inputs/rabbitmq_spec.rb