Class: LogStash::PipelineAction::Reload
- Inherits:
-
Base
- Object
- Base
- LogStash::PipelineAction::Reload
show all
- Includes:
- Util::Loggable
- Defined in:
- lib/logstash/pipeline_action/reload.rb
Instance Method Summary
collapse
Methods inherited from Base
#<=>, #execution_priority, #inspect
Constructor Details
#initialize(pipeline_config, metric) ⇒ Reload
Returns a new instance of Reload.
10
11
12
13
|
# File 'lib/logstash/pipeline_action/reload.rb', line 10
def initialize(pipeline_config, metric)
@pipeline_config = pipeline_config
@metric = metric
end
|
Instance Method Details
#execute(agent, pipelines) ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'lib/logstash/pipeline_action/reload.rb', line 23
def execute(agent, pipelines)
old_pipeline = pipelines[pipeline_id]
if !old_pipeline.reloadable?
return LogStash::ConvergeResult::FailedAction.new("Cannot reload pipeline, because the existing pipeline is not reloadable")
end
begin
pipeline_validator =
if @pipeline_config.settings.get_value("pipeline.java_execution")
LogStash::JavaBasePipeline.new(@pipeline_config, nil, logger, nil)
else
agent.exclusive do
LogStash::BasePipeline.new(@pipeline_config)
end
end
rescue => e
return LogStash::ConvergeResult::FailedAction.from_exception(e)
end
if !pipeline_validator.reloadable?
return LogStash::ConvergeResult::FailedAction.new("Cannot reload pipeline, because the new pipeline is not reloadable")
end
logger.info("Reloading pipeline", "pipeline.id" => pipeline_id)
pipelines.compute(pipeline_id) do |_,pipeline|
status = Stop.new(pipeline_id).execute(agent, pipelines)
if status
return Create.new(@pipeline_config, @metric).execute(agent, pipelines)
else
return status
end
pipeline
end
end
|
#pipeline_id ⇒ Object
15
16
17
|
# File 'lib/logstash/pipeline_action/reload.rb', line 15
def pipeline_id
@pipeline_config.pipeline_id
end
|
#to_s ⇒ Object
19
20
21
|
# File 'lib/logstash/pipeline_action/reload.rb', line 19
def to_s
"PipelineAction::Reload<#{pipeline_id}>"
end
|