logstash-core 5.0.0.alpha2.snapshot2-java → 5.0.0.alpha3-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.
- checksums.yaml +4 -4
- data/lib/logstash-core/version.rb +1 -1
- data/lib/logstash/agent.rb +48 -31
- data/lib/logstash/api/{lib/helpers/app_helpers.rb → app_helpers.rb} +0 -0
- data/lib/logstash/api/command_factory.rb +34 -0
- data/lib/logstash/api/commands/base.rb +25 -0
- data/lib/logstash/api/commands/stats.rb +105 -0
- data/lib/logstash/api/commands/system/basicinfo_command.rb +23 -0
- data/lib/logstash/api/commands/system/plugins_command.rb +35 -0
- data/lib/logstash/api/modules/base.rb +43 -0
- data/lib/logstash/api/modules/node.rb +24 -0
- data/lib/logstash/api/modules/node_stats.rb +59 -0
- data/lib/logstash/api/modules/plugins.rb +15 -0
- data/lib/logstash/api/modules/root.rb +15 -0
- data/lib/logstash/api/modules/stats.rb +63 -0
- data/lib/logstash/api/rack_app.rb +33 -0
- data/lib/logstash/api/service.rb +73 -0
- data/lib/logstash/config/config_ast.rb +23 -18
- data/lib/logstash/config/loader.rb +4 -4
- data/lib/logstash/config/mixin.rb +10 -21
- data/lib/logstash/environment.rb +29 -0
- data/lib/logstash/filters/base.rb +2 -2
- data/lib/logstash/inputs/base.rb +2 -2
- data/lib/logstash/instrument/collector.rb +1 -1
- data/lib/logstash/instrument/metric_store.rb +11 -1
- data/lib/logstash/instrument/periodic_poller/base.rb +2 -0
- data/lib/logstash/instrument/periodic_poller/jvm.rb +47 -2
- data/lib/logstash/logging/json.rb +21 -0
- data/lib/logstash/output_delegator.rb +2 -2
- data/lib/logstash/patches/clamp.rb +69 -0
- data/lib/logstash/pipeline.rb +36 -69
- data/lib/logstash/plugin.rb +1 -1
- data/lib/logstash/runner.rb +171 -146
- data/lib/logstash/settings.rb +267 -0
- data/lib/logstash/util/decorators.rb +6 -6
- data/lib/logstash/util/java_version.rb +1 -10
- data/lib/logstash/util/thread_dump.rb +55 -0
- data/lib/logstash/util/worker_threads_default_printer.rb +2 -2
- data/lib/logstash/version.rb +1 -1
- data/lib/logstash/webserver.rb +15 -49
- data/locales/en.yml +22 -25
- data/logstash-core.gemspec +3 -3
- data/spec/api/lib/api/node_spec.rb +2 -2
- data/spec/api/lib/api/node_stats_spec.rb +32 -57
- data/spec/api/lib/api/plugins_spec.rb +3 -3
- data/spec/api/lib/api/root_spec.rb +2 -2
- data/spec/api/lib/api/support/resource_dsl_methods.rb +47 -0
- data/spec/api/lib/commands/stats.rb +47 -0
- data/spec/api/spec_helper.rb +21 -21
- data/spec/conditionals_spec.rb +113 -113
- data/spec/logstash/agent_spec.rb +85 -68
- data/spec/logstash/config/config_ast_spec.rb +4 -2
- data/spec/logstash/config/mixin_spec.rb +33 -7
- data/spec/logstash/filters/base_spec.rb +16 -16
- data/spec/logstash/inputs/base_spec.rb +8 -8
- data/spec/logstash/instrument/periodic_poller/jvm_spec.rb +45 -0
- data/spec/logstash/output_delegator_spec.rb +2 -0
- data/spec/logstash/pipeline_reporter_spec.rb +5 -1
- data/spec/logstash/pipeline_spec.rb +75 -30
- data/spec/logstash/plugin_spec.rb +2 -2
- data/spec/logstash/runner_spec.rb +112 -25
- data/spec/logstash/setting_spec.rb +130 -0
- data/spec/logstash/settings_spec.rb +62 -0
- metadata +37 -43
- data/lib/logstash/api/init.ru +0 -31
- data/lib/logstash/api/lib/app.rb +0 -40
- data/lib/logstash/api/lib/app/command.rb +0 -29
- data/lib/logstash/api/lib/app/command_factory.rb +0 -29
- data/lib/logstash/api/lib/app/commands/stats/events_command.rb +0 -13
- data/lib/logstash/api/lib/app/commands/stats/hotthreads_command.rb +0 -120
- data/lib/logstash/api/lib/app/commands/stats/memory_command.rb +0 -25
- data/lib/logstash/api/lib/app/commands/system/basicinfo_command.rb +0 -15
- data/lib/logstash/api/lib/app/commands/system/plugins_command.rb +0 -28
- data/lib/logstash/api/lib/app/modules/node.rb +0 -25
- data/lib/logstash/api/lib/app/modules/node_stats.rb +0 -51
- data/lib/logstash/api/lib/app/modules/plugins.rb +0 -15
- data/lib/logstash/api/lib/app/modules/stats.rb +0 -21
- data/lib/logstash/api/lib/app/root.rb +0 -13
- data/lib/logstash/api/lib/app/service.rb +0 -61
- data/lib/logstash/api/lib/app/stats.rb +0 -56
- data/lib/logstash/util/defaults_printer.rb +0 -31
- data/spec/api/lib/api/stats_spec.rb +0 -19
- data/spec/api/lib/commands/events_spec.rb +0 -17
- data/spec/api/lib/commands/jvm_spec.rb +0 -45
- data/spec/logstash/util/defaults_printer_spec.rb +0 -50
- data/spec/logstash/util/worker_threads_default_printer_spec.rb +0 -45
data/locales/en.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# YAML notes
|
2
2
|
# |- means 'scalar block' useful for formatted text
|
3
|
-
# > means 'scalar block' but it chomps all newlines. Useful
|
3
|
+
# > means 'scalar block' but it chomps all newlines. Useful
|
4
4
|
# for unformatted text.
|
5
5
|
en:
|
6
6
|
oops: |-
|
@@ -71,16 +71,12 @@ en:
|
|
71
71
|
non_reloadable_config_reload: >-
|
72
72
|
Unable to reload configuration because it does not support dynamic reloading
|
73
73
|
non_reloadable_config_register: |-
|
74
|
-
Logstash
|
75
|
-
dynamic reloading and -r or --auto-reload flag was enabled
|
74
|
+
Logstash is not able to start since configuration auto reloading was enabled but the configuration contains plugins that don't support it. Quitting...
|
76
75
|
web_api:
|
77
|
-
flag:
|
78
|
-
http_host: Web API binding host
|
79
|
-
http_port: Web API http port
|
80
76
|
hot_threads:
|
81
77
|
title: |-
|
82
78
|
::: {%{hostname}}
|
83
|
-
|
79
|
+
Hot threads at %{time}, busiestThreads=%{top_count}:
|
84
80
|
thread_title: |-
|
85
81
|
%{percent_of_cpu_time} % of cpu usage by %{thread_state} thread named '%{thread_name}'
|
86
82
|
runner:
|
@@ -145,18 +141,18 @@ en:
|
|
145
141
|
after %{after}
|
146
142
|
invalid_plugin_register: >-
|
147
143
|
Cannot register %{plugin} %{type} plugin.
|
148
|
-
The error reported is:
|
144
|
+
The error reported is:
|
149
145
|
%{error}
|
150
146
|
plugin_path_missing: >-
|
151
147
|
You specified a plugin path that does not exist: %{path}
|
152
148
|
no_plugins_found: |-
|
153
149
|
Could not find any plugins in "%{path}"
|
154
|
-
I tried to find files matching the following, but found none:
|
150
|
+
I tried to find files matching the following, but found none:
|
155
151
|
%{plugin_glob}
|
156
152
|
log_file_failed: |-
|
157
153
|
Failed to open %{path} for writing: %{error}
|
158
154
|
|
159
|
-
This is often a permissions issue, or the wrong
|
155
|
+
This is often a permissions issue, or the wrong
|
160
156
|
path was specified?
|
161
157
|
flag:
|
162
158
|
# Note: Wrap these at 55 chars so they display nicely when clamp emits
|
@@ -182,10 +178,8 @@ en:
|
|
182
178
|
the empty string for the '-e' flag.
|
183
179
|
configtest: |+
|
184
180
|
Check configuration for valid syntax and then exit.
|
185
|
-
|
186
|
-
|
187
|
-
values. Instances of "${VAR}" in strings will be replaced
|
188
|
-
with the respective environment variable value named "VAR".
|
181
|
+
http_host: Web API binding host
|
182
|
+
http_port: Web API http port
|
189
183
|
pipeline-workers: |+
|
190
184
|
Sets the number of pipeline workers to run.
|
191
185
|
pipeline-batch-size: |+
|
@@ -193,6 +187,9 @@ en:
|
|
193
187
|
pipeline-batch-delay: |+
|
194
188
|
When creating pipeline batches, how long to wait while polling
|
195
189
|
for the next event.
|
190
|
+
path_settings: |+
|
191
|
+
Directory containing logstash.yml file. This can also be
|
192
|
+
set through the LS_SETTINGS_DIR environment variable.
|
196
193
|
auto_reload: |+
|
197
194
|
Monitor configuration changes and reload
|
198
195
|
whenever it is changed.
|
@@ -221,15 +218,12 @@ en:
|
|
221
218
|
'PATH/logstash/TYPE/NAME.rb' where TYPE is
|
222
219
|
'inputs' 'filters', 'outputs' or 'codecs'
|
223
220
|
and NAME is the name of the plugin.
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
debug: |+
|
231
|
-
Most verbose logging. This causes 'debug'
|
232
|
-
level logs to be emitted.
|
221
|
+
log_level: |+
|
222
|
+
Set the log level for logstash. Possible values are:
|
223
|
+
- quiet => :error
|
224
|
+
- verbose => :info
|
225
|
+
- debug => :debug
|
226
|
+
- warn => :warn
|
233
227
|
unsafe_shutdown: |+
|
234
228
|
Force logstash to exit during shutdown even
|
235
229
|
if there are still inflight events in memory.
|
@@ -243,7 +237,10 @@ en:
|
|
243
237
|
it will default to the current hostname.
|
244
238
|
agent: |+
|
245
239
|
Specify an alternate agent plugin name.
|
246
|
-
|
240
|
+
config_debug: |+
|
247
241
|
Print the compiled config ruby code out as a debug log (you must also have --debug enabled).
|
248
242
|
WARNING: This will include any 'password' options passed to plugin configs as plaintext, and may result
|
249
|
-
in plaintext passwords appearing in your logs!
|
243
|
+
in plaintext passwords appearing in your logs!
|
244
|
+
log_format: |+
|
245
|
+
Specify if Logstash should write its own logs in JSON form (one
|
246
|
+
event per line) or in plain text (using Ruby's Object#inspect)
|
data/logstash-core.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.require_paths = ["lib"]
|
18
18
|
gem.version = LOGSTASH_CORE_VERSION.gsub(/-/, '.')
|
19
19
|
|
20
|
-
gem.add_runtime_dependency "logstash-core-event-java", "
|
20
|
+
gem.add_runtime_dependency "logstash-core-event-java", "5.0.0.alpha3"
|
21
21
|
|
22
22
|
gem.add_runtime_dependency "cabin", "~> 0.8.0" #(Apache 2.0 license)
|
23
23
|
gem.add_runtime_dependency "pry", "~> 0.10.1" #(Ruby license)
|
@@ -27,10 +27,10 @@ Gem::Specification.new do |gem|
|
|
27
27
|
gem.add_runtime_dependency "gems", "~> 0.8.3" #(MIT license)
|
28
28
|
gem.add_runtime_dependency "concurrent-ruby", "1.0.0"
|
29
29
|
gem.add_runtime_dependency "sinatra", '~> 1.4', '>= 1.4.6'
|
30
|
-
gem.add_runtime_dependency 'puma', '~> 2.16'
|
30
|
+
gem.add_runtime_dependency 'puma', '~> 2.16'
|
31
31
|
gem.add_runtime_dependency "jruby-openssl", "0.9.16" # >= 0.9.13 Required to support TLSv1.2
|
32
32
|
gem.add_runtime_dependency "chronic_duration", "0.10.6"
|
33
|
-
gem.add_runtime_dependency "
|
33
|
+
gem.add_runtime_dependency "jrmonitor", '~> 0.4.2'
|
34
34
|
|
35
35
|
# TODO(sissel): Treetop 1.5.x doesn't seem to work well, but I haven't
|
36
36
|
# investigated what the cause might be. -Jordan
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require_relative "../../spec_helper"
|
3
3
|
require "sinatra"
|
4
|
-
require "
|
4
|
+
require "logstash/api/modules/node"
|
5
5
|
require "logstash/json"
|
6
6
|
|
7
|
-
describe LogStash::Api::Node do
|
7
|
+
describe LogStash::Api::Modules::Node do
|
8
8
|
|
9
9
|
include Rack::Test::Methods
|
10
10
|
|
@@ -1,68 +1,43 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require_relative "../../spec_helper"
|
3
3
|
require "sinatra"
|
4
|
-
require "
|
4
|
+
require "logstash/api/modules/node_stats"
|
5
5
|
require "logstash/json"
|
6
6
|
|
7
|
-
describe LogStash::Api::NodeStats do
|
8
|
-
|
7
|
+
describe LogStash::Api::Modules::NodeStats do
|
9
8
|
include Rack::Test::Methods
|
9
|
+
extend ResourceDSLMethods
|
10
10
|
|
11
|
-
def app()
|
11
|
+
def app() # Used by Rack::Test::Methods
|
12
12
|
described_class
|
13
13
|
end
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
expect(last_response).to be_ok
|
44
|
-
end
|
45
|
-
|
46
|
-
it "contains events information" do
|
47
|
-
expect(payload).to include("events")
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
context "#jvm" do
|
52
|
-
|
53
|
-
let(:payload) { LogStash::Json.load(last_response.body) }
|
54
|
-
|
55
|
-
before(:all) do
|
56
|
-
do_request { get "/jvm" }
|
57
|
-
end
|
58
|
-
|
59
|
-
it "respond OK" do
|
60
|
-
expect(last_response).to be_ok
|
61
|
-
end
|
62
|
-
|
63
|
-
it "contains memory information" do
|
64
|
-
expect(payload).to include("mem")
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
15
|
+
# DSL describing response structure
|
16
|
+
root_structure = {
|
17
|
+
"events"=>{
|
18
|
+
"in"=>Numeric,
|
19
|
+
"filtered"=>Numeric,
|
20
|
+
"out"=>Numeric
|
21
|
+
},
|
22
|
+
"jvm"=>{
|
23
|
+
"threads"=>{
|
24
|
+
"count"=>Numeric,
|
25
|
+
"peak_count"=>Numeric
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"process"=>{
|
29
|
+
"peak_open_file_descriptors"=>Numeric,
|
30
|
+
"max_file_descriptors"=>Numeric,
|
31
|
+
"open_file_descriptors"=>Numeric,
|
32
|
+
"mem"=>{
|
33
|
+
"total_virtual_in_bytes"=>Numeric
|
34
|
+
},
|
35
|
+
"cpu"=>{
|
36
|
+
"total_in_millis"=>Numeric,
|
37
|
+
"percent"=>Numeric
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
test_api_and_resources(root_structure)
|
68
43
|
end
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require_relative "../../spec_helper"
|
3
3
|
require "sinatra"
|
4
|
-
require "
|
4
|
+
require "logstash/api/modules/plugins"
|
5
5
|
require "logstash/json"
|
6
6
|
|
7
|
-
describe LogStash::Api::Plugins do
|
7
|
+
describe LogStash::Api::Modules::Plugins do
|
8
8
|
|
9
9
|
include Rack::Test::Methods
|
10
10
|
|
@@ -23,7 +23,7 @@ describe LogStash::Api::Plugins do
|
|
23
23
|
end
|
24
24
|
|
25
25
|
it "return valid json content type" do
|
26
|
-
expect(last_response.content_type).to eq("application/json")
|
26
|
+
expect(last_response.content_type).to eq("application/json"), "Did not get json, got #{last_response.content_type} / #{last_response.body}"
|
27
27
|
end
|
28
28
|
|
29
29
|
context "#schema" do
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require_relative "../../spec_helper"
|
3
3
|
require "sinatra"
|
4
|
-
require "
|
4
|
+
require "logstash/api/modules/root"
|
5
5
|
require "logstash/json"
|
6
6
|
|
7
|
-
describe LogStash::Api::Root do
|
7
|
+
describe LogStash::Api::Modules::Root do
|
8
8
|
|
9
9
|
include Rack::Test::Methods
|
10
10
|
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module ResourceDSLMethods
|
2
|
+
# Convert a nested hash to a mapping of key paths to expected classes
|
3
|
+
def hash_to_mapping(h, path=[], mapping={})
|
4
|
+
h.each do |k,v|
|
5
|
+
if v.is_a?(Hash)
|
6
|
+
hash_to_mapping(v, path + [k], mapping)
|
7
|
+
else
|
8
|
+
full_path = path + [k]
|
9
|
+
mapping[full_path] = v
|
10
|
+
end
|
11
|
+
end
|
12
|
+
mapping
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_api(expected, path)
|
16
|
+
context "GET #{path}" do
|
17
|
+
let(:payload) { LogStash::Json.load(last_response.body) }
|
18
|
+
|
19
|
+
before(:all) do
|
20
|
+
do_request { get path }
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should respond OK" do
|
24
|
+
expect(last_response).to be_ok
|
25
|
+
end
|
26
|
+
|
27
|
+
hash_to_mapping(expected).each do |path,klass|
|
28
|
+
dotted = path.join(".")
|
29
|
+
|
30
|
+
it "should set '#{dotted}' to be a '#{klass}'" do
|
31
|
+
path_value = path.reduce(payload) {|acc,v| acc[v]}
|
32
|
+
expect(path_value).to be_a(klass), "could not find '#{dotted}' in #{payload}"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
yield if block_given? # Add custom expectations
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_api_and_resources(expected)
|
41
|
+
test_api(expected, "/")
|
42
|
+
|
43
|
+
expected.keys.each do |key|
|
44
|
+
test_api({key => expected[key]}, "/#{key}")
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require_relative "../../spec_helper"
|
3
|
+
|
4
|
+
describe LogStash::Api::Commands::Stats do
|
5
|
+
|
6
|
+
let(:report_method) { :run }
|
7
|
+
subject(:report) { do_request { report_class.new.send(report_method) } }
|
8
|
+
|
9
|
+
let(:report_class) { described_class }
|
10
|
+
|
11
|
+
describe "#events" do
|
12
|
+
let(:report_method) { :events }
|
13
|
+
|
14
|
+
it "return events information" do
|
15
|
+
expect(report.keys).to include(:in, :filtered, :out)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
describe "#hot_threads" do
|
20
|
+
let(:report_method) { :hot_threads }
|
21
|
+
|
22
|
+
it "should return hot threads information as a string" do
|
23
|
+
expect(report.to_s).to be_a(String)
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should return hot threads info as a hash" do
|
27
|
+
expect(report.to_hash).to be_a(Hash)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe "memory stats" do
|
32
|
+
let(:report_method) { :memory }
|
33
|
+
|
34
|
+
it "return hot threads information" do
|
35
|
+
expect(report).not_to be_empty
|
36
|
+
end
|
37
|
+
|
38
|
+
it "return heap information" do
|
39
|
+
expect(report.keys).to include(:heap_used_in_bytes)
|
40
|
+
end
|
41
|
+
|
42
|
+
it "return non heap information" do
|
43
|
+
expect(report.keys).to include(:non_heap_used_in_bytes)
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
end
|
data/spec/api/spec_helper.rb
CHANGED
@@ -1,16 +1,18 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
API_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "lib", "logstash", "api"))
|
3
3
|
|
4
|
+
|
5
|
+
|
4
6
|
require "logstash/devutils/rspec/spec_helper"
|
5
7
|
|
8
|
+
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
|
9
|
+
require "lib/api/support/resource_dsl_methods"
|
10
|
+
|
11
|
+
require "logstash/settings"
|
6
12
|
require 'rack/test'
|
7
13
|
require 'rspec'
|
8
14
|
require "json"
|
9
15
|
|
10
|
-
ENV['RACK_ENV'] = 'test'
|
11
|
-
|
12
|
-
Rack::Builder.parse_file(File.join(API_ROOT, 'init.ru'))
|
13
|
-
|
14
16
|
def read_fixture(name)
|
15
17
|
path = File.join(File.dirname(__FILE__), "fixtures", name)
|
16
18
|
File.read(path)
|
@@ -37,26 +39,24 @@ class LogStashRunner
|
|
37
39
|
attr_reader :config_str, :agent, :pipeline_settings
|
38
40
|
|
39
41
|
def initialize
|
40
|
-
args = [
|
41
|
-
:logger => Cabin::Channel.get(LogStash),
|
42
|
-
:auto_reload => false,
|
43
|
-
:collect_metric => true,
|
44
|
-
:debug => false,
|
45
|
-
:node_name => "test_agent",
|
46
|
-
:web_api_http_port => rand(9600..9700)
|
47
|
-
]
|
48
|
-
|
49
42
|
@config_str = "input { generator {count => 0} } output { }"
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
43
|
+
args = {
|
44
|
+
"config.reload.automatic" => false,
|
45
|
+
"metric.collect" => true,
|
46
|
+
"log.level" => "debug",
|
47
|
+
"node.name" => "test_agent",
|
48
|
+
"http.port" => rand(9600..9700),
|
49
|
+
"config.string" => @config_str,
|
50
|
+
"pipeline.batch.size" => 1,
|
51
|
+
"pipeline.workers" => 1
|
52
|
+
}
|
53
|
+
@settings = ::LogStash::SETTINGS.clone.merge(args)
|
54
|
+
|
55
|
+
@agent = LogStash::DummyAgent.new(@settings)
|
56
56
|
end
|
57
57
|
|
58
58
|
def start
|
59
|
-
agent.register_pipeline("main",
|
59
|
+
agent.register_pipeline("main", @settings)
|
60
60
|
@runner = Thread.new(agent) do |_agent|
|
61
61
|
_agent.execute
|
62
62
|
end
|
@@ -81,7 +81,7 @@ end
|
|
81
81
|
|
82
82
|
##
|
83
83
|
# Method used to wrap up a request in between of a running
|
84
|
-
# pipeline, this makes the
|
84
|
+
# pipeline, this makes the whole execution model easier and
|
85
85
|
# more contained as some threads might go wild.
|
86
86
|
##
|
87
87
|
def do_request(&block)
|