logstash-core 1.5.0.beta2-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.

Potentially problematic release.


This version of logstash-core might be problematic. Click here for more details.

Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/lib/logstash-event.rb +2 -0
  3. data/lib/logstash.rb +4 -0
  4. data/lib/logstash/JRUBY-PR1448.rb +32 -0
  5. data/lib/logstash/agent.rb +355 -0
  6. data/lib/logstash/bundler.rb +124 -0
  7. data/lib/logstash/codecs/base.rb +50 -0
  8. data/lib/logstash/config/config_ast.rb +508 -0
  9. data/lib/logstash/config/file.rb +39 -0
  10. data/lib/logstash/config/grammar.rb +3503 -0
  11. data/lib/logstash/config/mixin.rb +495 -0
  12. data/lib/logstash/config/registry.rb +13 -0
  13. data/lib/logstash/environment.rb +168 -0
  14. data/lib/logstash/errors.rb +12 -0
  15. data/lib/logstash/event.rb +310 -0
  16. data/lib/logstash/filters/base.rb +239 -0
  17. data/lib/logstash/gemfile.rb +175 -0
  18. data/lib/logstash/inputs/base.rb +137 -0
  19. data/lib/logstash/inputs/threadable.rb +18 -0
  20. data/lib/logstash/java_integration.rb +41 -0
  21. data/lib/logstash/json.rb +53 -0
  22. data/lib/logstash/logging.rb +91 -0
  23. data/lib/logstash/multiqueue.rb +53 -0
  24. data/lib/logstash/namespace.rb +17 -0
  25. data/lib/logstash/outputs/base.rb +124 -0
  26. data/lib/logstash/patches.rb +3 -0
  27. data/lib/logstash/patches/bugfix_jruby_2558.rb +50 -0
  28. data/lib/logstash/patches/cabin.rb +34 -0
  29. data/lib/logstash/patches/profile_require_calls.rb +47 -0
  30. data/lib/logstash/pipeline.rb +305 -0
  31. data/lib/logstash/plugin.rb +177 -0
  32. data/lib/logstash/pluginmanager.rb +17 -0
  33. data/lib/logstash/pluginmanager/install.rb +112 -0
  34. data/lib/logstash/pluginmanager/list.rb +38 -0
  35. data/lib/logstash/pluginmanager/main.rb +22 -0
  36. data/lib/logstash/pluginmanager/maven_tools_patch.rb +12 -0
  37. data/lib/logstash/pluginmanager/uninstall.rb +49 -0
  38. data/lib/logstash/pluginmanager/update.rb +50 -0
  39. data/lib/logstash/pluginmanager/util.rb +88 -0
  40. data/lib/logstash/program.rb +15 -0
  41. data/lib/logstash/runner.rb +167 -0
  42. data/lib/logstash/sized_queue.rb +8 -0
  43. data/lib/logstash/threadwatchdog.rb +37 -0
  44. data/lib/logstash/timestamp.rb +97 -0
  45. data/lib/logstash/util.rb +152 -0
  46. data/lib/logstash/util/accessors.rb +88 -0
  47. data/lib/logstash/util/buftok.rb +139 -0
  48. data/lib/logstash/util/charset.rb +35 -0
  49. data/lib/logstash/util/fieldreference.rb +68 -0
  50. data/lib/logstash/util/filetools.rb +185 -0
  51. data/lib/logstash/util/password.rb +25 -0
  52. data/lib/logstash/util/plugin_version.rb +43 -0
  53. data/lib/logstash/util/prctl.rb +11 -0
  54. data/lib/logstash/util/require-helper.rb +18 -0
  55. data/lib/logstash/util/retryable.rb +39 -0
  56. data/lib/logstash/util/socket_peer.rb +7 -0
  57. data/lib/logstash/version.rb +6 -0
  58. data/locales/en.yml +176 -0
  59. metadata +427 -0
@@ -0,0 +1,176 @@
1
+ # YAML notes
2
+ # |- means 'scalar block' useful for formatted text
3
+ # > means 'scalar block' but it chomps all newlines. Useful
4
+ # for unformatted text.
5
+ en:
6
+ oops: |-
7
+ The error reported is:
8
+ %{error}
9
+ logstash:
10
+ pipeline:
11
+ worker-error: |-
12
+ A plugin had an unrecoverable error. Will restart this plugin.
13
+ Plugin: %{plugin}
14
+ Error: %{error}
15
+ worker-error-debug: |-
16
+ A plugin had an unrecoverable error. Will restart this plugin.
17
+ Plugin: %{plugin}
18
+ Error: %{error}
19
+ Exception: %{exception}
20
+ Stack: %{stacktrace}
21
+ plugin-loading-error: >-
22
+ Couldn't find any %{type} plugin named '%{name}'. Are you
23
+ sure this is correct? Trying to load the %{name} %{type} plugin
24
+ resulted in this error: %{error}
25
+ plugin-type-loading-error: >-
26
+ Could not find any plugin type named '%{type}'. Check for typos.
27
+ Valid plugin types are 'input' 'filter' and 'output'
28
+ output-worker-unsupported: >-
29
+ %{plugin} output plugin: setting 'workers => %{worker_count}' is not
30
+ supported by this plugin. I will continue working as if you had not set
31
+ this setting.
32
+ output-worker-unsupported-with-message: >-
33
+ %{plugin} output plugin: setting 'workers => %{worker_count}' is not
34
+ supported by this plugin. I will continue working as if you had not set
35
+ this setting.
36
+ plugin:
37
+ deprecated_milestone: >-
38
+ %{plugin} plugin is using the 'milestone' method to declare the version
39
+ of the plugin this method is deprecated in favor of declaring the
40
+ version inside the gemspec.
41
+ no_version: >-
42
+ %{name} plugin doesn't have a version. This plugin isn't well
43
+ supported by the community and likely has no maintainer.
44
+ version:
45
+ 0-9-x:
46
+ Using version 0.9.x %{type} plugin '%{name}'. This plugin should work but
47
+ would benefit from use by folks like you. Please let us know if you
48
+ find bugs or have suggestions on how to improve this plugin.
49
+ 0-1-x: >-
50
+ Using version 0.1.x %{type} plugin '%{name}'. This plugin isn't well
51
+ supported by the community and likely has no maintainer.
52
+ agent:
53
+ sighup: >-
54
+ SIGHUP received.
55
+ missing-configuration: >-
56
+ No configuration file was specified. Perhaps you forgot to provide
57
+ the '-f yourlogstash.conf' flag?
58
+ error: >-
59
+ Error: %{error}
60
+ sigint: >-
61
+ SIGINT received. Shutting down the pipeline.
62
+ sigterm: >-
63
+ SIGTERM received. Shutting down the pipeline.
64
+ configtest-flag-information: |-
65
+ You may be interested in the '--configtest' flag which you can
66
+ use to validate logstash's configuration before you choose
67
+ to restart a running system.
68
+ configuration:
69
+ file-not-found: |-
70
+ No config files found: %{path}
71
+ Can you make sure this path is a logstash config file?
72
+ scheme-not-supported: |-
73
+ URI scheme not supported: %{path}
74
+ Either pass a local file path or "file|http://" URI
75
+ fetch-failed: |-
76
+ Unable to fetch config from: %{path}
77
+ Reason: %{message}
78
+ setting_missing: |-
79
+ Missing a required setting for the %{plugin} %{type} plugin:
80
+
81
+ %{type} {
82
+ %{plugin} {
83
+ %{setting} => # SETTING MISSING
84
+ ...
85
+ }
86
+ }
87
+ setting_invalid: |-
88
+ Invalid setting for %{plugin} %{type} plugin:
89
+
90
+ %{type} {
91
+ %{plugin} {
92
+ # This setting must be a %{value_type}
93
+ # %{note}
94
+ %{setting} => %{value}
95
+ ...
96
+ }
97
+ }
98
+ invalid_plugin_settings: >-
99
+ Something is wrong with your configuration.
100
+ invalid_plugin_settings_duplicate_keys: |-
101
+ Duplicate keys found in your configuration: [%{keys}]
102
+ At line: %{line}, column %{column} (byte %{byte})
103
+ after %{after}
104
+ invalid_plugin_register: >-
105
+ Cannot register %{plugin} %{type} plugin.
106
+ The error reported is:
107
+ %{error}
108
+ plugin_path_missing: >-
109
+ You specified a plugin path that does not exist: %{path}
110
+ no_plugins_found: |-
111
+ Could not find any plugins in "%{path}"
112
+ I tried to find files matching the following, but found none:
113
+ %{plugin_glob}
114
+ log_file_failed: |-
115
+ Failed to open %{path} for writing: %{error}
116
+
117
+ This is often a permissions issue, or the wrong
118
+ path was specified?
119
+ flag:
120
+ # Note: Wrap these at 45 chars so they display nicely when clamp emits
121
+ # them in an 80-character terminal
122
+ config: |+
123
+ Load the logstash config from a specific file
124
+ or directory. If a directory is given, all
125
+ files in that directory will be concatenated
126
+ in lexicographical order and then parsed as a
127
+ single config file. You can also specify
128
+ wildcards (globs) and any matched files will
129
+ be loaded in the order described above.
130
+ config-string: |+
131
+ Use the given string as the configuration
132
+ data. Same syntax as the config file. If no
133
+ input is specified, then 'stdin
134
+ { type => stdin }' is the default input.
135
+ If no output is specified, then 'stdout
136
+ { codec => rubydebug } }' is default output.
137
+ configtest: |+
138
+ Check configuration, then exit.
139
+ filterworkers: |+
140
+ Sets the number of filter workers to run.
141
+ watchdog-timeout: |+
142
+ Set the filter watchdog timeout (in seconds).
143
+ This timeout is used to detect stuck filters;
144
+ stuck filters usually symptoms of bugs.
145
+ When a filter takes longer than TIMEOUT
146
+ seconds, it will cause logstash to abort.
147
+ log: |+
148
+ Write logstash internal logs to the given
149
+ file. Without this flag, logstash will emit
150
+ logs to standard output.
151
+ verbosity: |+
152
+ Increase verbosity of logstash internal logs.
153
+ Specifying once will show 'informational'
154
+ logs. Specifying twice will show 'debug'
155
+ logs. This flag is deprecated. You should use
156
+ --verbose or --debug instead.
157
+ version: |+
158
+ Emit the version of logstash and its friends,
159
+ then exit.
160
+ pluginpath: |+
161
+ A path of where to find plugins. This flag
162
+ can be given multiple times to include
163
+ multiple paths. Plugins are expected to be
164
+ in a specific directory hierarchy:
165
+ 'PATH/logstash/TYPE/NAME.rb' where TYPE is
166
+ 'inputs' 'filters', 'outputs' or 'codecs'
167
+ and NAME is the name of the plugin.
168
+ quiet: |+
169
+ Quieter logstash logging. This causes only
170
+ errors to be emitted.
171
+ verbose: |+
172
+ More verbose logging. This causes 'info'
173
+ level logs to be emitted.
174
+ debug: |+
175
+ Most verbose logging. This causes 'debug'
176
+ level logs to be emitted.
metadata ADDED
@@ -0,0 +1,427 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: logstash-core
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.0.beta2
5
+ platform: java
6
+ authors:
7
+ - Jordan Sissel
8
+ - Pete Fritchman
9
+ - Elasticsearch
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2015-02-26 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: cabin
17
+ version_requirements: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.7.0
22
+ requirement: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.7.0
27
+ prerelease: false
28
+ type: :runtime
29
+ - !ruby/object:Gem::Dependency
30
+ name: pry
31
+ version_requirements: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ prerelease: false
42
+ type: :runtime
43
+ - !ruby/object:Gem::Dependency
44
+ name: stud
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - '>='
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirement: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ prerelease: false
56
+ type: :runtime
57
+ - !ruby/object:Gem::Dependency
58
+ name: clamp
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ prerelease: false
70
+ type: :runtime
71
+ - !ruby/object:Gem::Dependency
72
+ name: filesize
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirement: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ prerelease: false
84
+ type: :runtime
85
+ - !ruby/object:Gem::Dependency
86
+ name: treetop
87
+ version_requirements: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ~>
90
+ - !ruby/object:Gem::Version
91
+ version: 1.4.0
92
+ requirement: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 1.4.0
97
+ prerelease: false
98
+ type: :runtime
99
+ - !ruby/object:Gem::Dependency
100
+ name: i18n
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - '='
104
+ - !ruby/object:Gem::Version
105
+ version: 0.6.9
106
+ requirement: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 0.6.9
111
+ prerelease: false
112
+ type: :runtime
113
+ - !ruby/object:Gem::Dependency
114
+ name: ftw
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ~>
118
+ - !ruby/object:Gem::Version
119
+ version: 0.0.40
120
+ requirement: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ version: 0.0.40
125
+ prerelease: false
126
+ type: :runtime
127
+ - !ruby/object:Gem::Dependency
128
+ name: mime-types
129
+ version_requirements: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirement: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ prerelease: false
140
+ type: :runtime
141
+ - !ruby/object:Gem::Dependency
142
+ name: rack
143
+ version_requirements: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - '>='
146
+ - !ruby/object:Gem::Version
147
+ version: '0'
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ prerelease: false
154
+ type: :runtime
155
+ - !ruby/object:Gem::Dependency
156
+ name: sinatra
157
+ version_requirements: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - '>='
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ requirement: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ prerelease: false
168
+ type: :runtime
169
+ - !ruby/object:Gem::Dependency
170
+ name: jar-dependencies
171
+ version_requirements: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - '='
174
+ - !ruby/object:Gem::Version
175
+ version: 0.1.7
176
+ requirement: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - '='
179
+ - !ruby/object:Gem::Version
180
+ version: 0.1.7
181
+ prerelease: false
182
+ type: :runtime
183
+ - !ruby/object:Gem::Dependency
184
+ name: ruby-maven
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - '='
188
+ - !ruby/object:Gem::Version
189
+ version: 3.1.1.0.8
190
+ requirement: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - '='
193
+ - !ruby/object:Gem::Version
194
+ version: 3.1.1.0.8
195
+ prerelease: false
196
+ type: :runtime
197
+ - !ruby/object:Gem::Dependency
198
+ name: maven-tools
199
+ version_requirements: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - '='
202
+ - !ruby/object:Gem::Version
203
+ version: 1.0.7
204
+ requirement: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - '='
207
+ - !ruby/object:Gem::Version
208
+ version: 1.0.7
209
+ prerelease: false
210
+ type: :runtime
211
+ - !ruby/object:Gem::Dependency
212
+ name: minitar
213
+ version_requirements: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - '>='
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
218
+ requirement: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ prerelease: false
224
+ type: :runtime
225
+ - !ruby/object:Gem::Dependency
226
+ name: file-dependencies
227
+ version_requirements: !ruby/object:Gem::Requirement
228
+ requirements:
229
+ - - '='
230
+ - !ruby/object:Gem::Version
231
+ version: 0.1.6
232
+ requirement: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - '='
235
+ - !ruby/object:Gem::Version
236
+ version: 0.1.6
237
+ prerelease: false
238
+ type: :runtime
239
+ - !ruby/object:Gem::Dependency
240
+ name: jruby-httpclient
241
+ version_requirements: !ruby/object:Gem::Requirement
242
+ requirements:
243
+ - - '>='
244
+ - !ruby/object:Gem::Version
245
+ version: '0'
246
+ requirement: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - '>='
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
251
+ prerelease: false
252
+ type: :runtime
253
+ - !ruby/object:Gem::Dependency
254
+ name: jrjackson
255
+ version_requirements: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - '>='
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ requirement: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - '>='
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ prerelease: false
266
+ type: :runtime
267
+ - !ruby/object:Gem::Dependency
268
+ name: rspec
269
+ version_requirements: !ruby/object:Gem::Requirement
270
+ requirements:
271
+ - - ~>
272
+ - !ruby/object:Gem::Version
273
+ version: 2.14.0
274
+ requirement: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - ~>
277
+ - !ruby/object:Gem::Version
278
+ version: 2.14.0
279
+ prerelease: false
280
+ type: :development
281
+ - !ruby/object:Gem::Dependency
282
+ name: logstash-devutils
283
+ version_requirements: !ruby/object:Gem::Requirement
284
+ requirements:
285
+ - - '>='
286
+ - !ruby/object:Gem::Version
287
+ version: '0'
288
+ requirement: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - '>='
291
+ - !ruby/object:Gem::Version
292
+ version: '0'
293
+ prerelease: false
294
+ type: :development
295
+ - !ruby/object:Gem::Dependency
296
+ name: ci_reporter
297
+ version_requirements: !ruby/object:Gem::Requirement
298
+ requirements:
299
+ - - '='
300
+ - !ruby/object:Gem::Version
301
+ version: 1.9.3
302
+ requirement: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - '='
305
+ - !ruby/object:Gem::Version
306
+ version: 1.9.3
307
+ prerelease: false
308
+ type: :development
309
+ - !ruby/object:Gem::Dependency
310
+ name: simplecov
311
+ version_requirements: !ruby/object:Gem::Requirement
312
+ requirements:
313
+ - - '>='
314
+ - !ruby/object:Gem::Version
315
+ version: '0'
316
+ requirement: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - '>='
319
+ - !ruby/object:Gem::Version
320
+ version: '0'
321
+ prerelease: false
322
+ type: :development
323
+ - !ruby/object:Gem::Dependency
324
+ name: coveralls
325
+ version_requirements: !ruby/object:Gem::Requirement
326
+ requirements:
327
+ - - '>='
328
+ - !ruby/object:Gem::Version
329
+ version: '0'
330
+ requirement: !ruby/object:Gem::Requirement
331
+ requirements:
332
+ - - '>='
333
+ - !ruby/object:Gem::Version
334
+ version: '0'
335
+ prerelease: false
336
+ type: :development
337
+ description: The core components of logstash, the scalable log and event management tool
338
+ email:
339
+ - jls@semicomplete.com
340
+ - petef@databits.net
341
+ - info@elasticsearch.com
342
+ executables: []
343
+ extensions: []
344
+ extra_rdoc_files: []
345
+ files:
346
+ - lib/logstash-event.rb
347
+ - lib/logstash.rb
348
+ - lib/logstash/JRUBY-PR1448.rb
349
+ - lib/logstash/agent.rb
350
+ - lib/logstash/bundler.rb
351
+ - lib/logstash/codecs/base.rb
352
+ - lib/logstash/config/config_ast.rb
353
+ - lib/logstash/config/file.rb
354
+ - lib/logstash/config/grammar.rb
355
+ - lib/logstash/config/mixin.rb
356
+ - lib/logstash/config/registry.rb
357
+ - lib/logstash/environment.rb
358
+ - lib/logstash/errors.rb
359
+ - lib/logstash/event.rb
360
+ - lib/logstash/filters/base.rb
361
+ - lib/logstash/gemfile.rb
362
+ - lib/logstash/inputs/base.rb
363
+ - lib/logstash/inputs/threadable.rb
364
+ - lib/logstash/java_integration.rb
365
+ - lib/logstash/json.rb
366
+ - lib/logstash/logging.rb
367
+ - lib/logstash/multiqueue.rb
368
+ - lib/logstash/namespace.rb
369
+ - lib/logstash/outputs/base.rb
370
+ - lib/logstash/patches.rb
371
+ - lib/logstash/patches/bugfix_jruby_2558.rb
372
+ - lib/logstash/patches/cabin.rb
373
+ - lib/logstash/patches/profile_require_calls.rb
374
+ - lib/logstash/pipeline.rb
375
+ - lib/logstash/plugin.rb
376
+ - lib/logstash/pluginmanager.rb
377
+ - lib/logstash/pluginmanager/install.rb
378
+ - lib/logstash/pluginmanager/list.rb
379
+ - lib/logstash/pluginmanager/main.rb
380
+ - lib/logstash/pluginmanager/maven_tools_patch.rb
381
+ - lib/logstash/pluginmanager/uninstall.rb
382
+ - lib/logstash/pluginmanager/update.rb
383
+ - lib/logstash/pluginmanager/util.rb
384
+ - lib/logstash/program.rb
385
+ - lib/logstash/runner.rb
386
+ - lib/logstash/sized_queue.rb
387
+ - lib/logstash/threadwatchdog.rb
388
+ - lib/logstash/timestamp.rb
389
+ - lib/logstash/util.rb
390
+ - lib/logstash/util/accessors.rb
391
+ - lib/logstash/util/buftok.rb
392
+ - lib/logstash/util/charset.rb
393
+ - lib/logstash/util/fieldreference.rb
394
+ - lib/logstash/util/filetools.rb
395
+ - lib/logstash/util/password.rb
396
+ - lib/logstash/util/plugin_version.rb
397
+ - lib/logstash/util/prctl.rb
398
+ - lib/logstash/util/require-helper.rb
399
+ - lib/logstash/util/retryable.rb
400
+ - lib/logstash/util/socket_peer.rb
401
+ - lib/logstash/version.rb
402
+ - locales/en.yml
403
+ homepage: http://logstash.net/
404
+ licenses:
405
+ - Apache License (2.0)
406
+ metadata: {}
407
+ post_install_message:
408
+ rdoc_options: []
409
+ require_paths:
410
+ - lib
411
+ required_ruby_version: !ruby/object:Gem::Requirement
412
+ requirements:
413
+ - - '>='
414
+ - !ruby/object:Gem::Version
415
+ version: '0'
416
+ required_rubygems_version: !ruby/object:Gem::Requirement
417
+ requirements:
418
+ - - '>'
419
+ - !ruby/object:Gem::Version
420
+ version: 1.3.1
421
+ requirements: []
422
+ rubyforge_project:
423
+ rubygems_version: 2.4.5
424
+ signing_key:
425
+ specification_version: 4
426
+ summary: logstash-core - The core components of logstash
427
+ test_files: []