Sha256: 74383a4200cf7fb761a368f8af1788266adf0933bdcb9a85fe63ec63885fcd7a

Contents?: true

Size: 1.32 KB

Versions: 32

Compression:

Stored size: 1.32 KB

Contents

# encoding: utf-8
module LogStash
  # In the beginning I was using this code as a method in the Agent class directly
  # But with the plugins system I think we should be able to swap what kind of action would be run.
  #
  # Lets take the example of dynamic source, where the pipeline config and settings are located and
  # managed outside of the machine.
  class StateResolver
    def initialize(metric)
      @metric = metric
    end

    def resolve(pipelines, pipeline_configs)
      actions = []

      pipeline_configs.each do |pipeline_config|
        pipeline = pipelines[pipeline_config.pipeline_id]

        if pipeline.nil?
          actions << LogStash::PipelineAction::Create.new(pipeline_config, @metric)
        else
          if pipeline_config != pipeline.pipeline_config
            actions << LogStash::PipelineAction::Reload.new(pipeline_config, @metric)
          end
        end
      end

      running_pipelines = pipeline_configs.collect(&:pipeline_id)

      # If one of the running pipeline is not in the pipeline_configs, we assume that we need to
      # stop it.
      pipelines.keys
        .select { |pipeline_id| !running_pipelines.include?(pipeline_id) }
        .each { |pipeline_id| actions << LogStash::PipelineAction::Stop.new(pipeline_id) }

      actions.sort # See logstash/pipeline_action.rb
    end
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
logstash-core-6.6.0-java lib/logstash/state_resolver.rb
logstash-core-7.0.0.alpha2-java lib/logstash/state_resolver.rb
logstash-core-6.5.4-java lib/logstash/state_resolver.rb
logstash-core-6.5.3-java lib/logstash/state_resolver.rb
logstash-core-6.5.2-java lib/logstash/state_resolver.rb
logstash-core-6.5.1-java lib/logstash/state_resolver.rb
logstash-core-7.0.0.alpha1-java lib/logstash/state_resolver.rb
logstash-core-6.5.0-java lib/logstash/state_resolver.rb
logstash-core-6.4.3-java lib/logstash/state_resolver.rb
logstash-core-6.4.2-java lib/logstash/state_resolver.rb
logstash-core-6.4.1-java lib/logstash/state_resolver.rb
logstash-core-6.4.0-java lib/logstash/state_resolver.rb
logstash-core-6.3.2-java lib/logstash/state_resolver.rb
logstash-core-6.3.1-java lib/logstash/state_resolver.rb
logstash-core-6.3.0-java lib/logstash/state_resolver.rb
logstash-core-6.2.4-java lib/logstash/state_resolver.rb
logstash-core-6.2.3-java lib/logstash/state_resolver.rb
logstash-core-6.1.4-java lib/logstash/state_resolver.rb
logstash-core-6.2.2-java lib/logstash/state_resolver.rb
logstash-core-6.2.1-java lib/logstash/state_resolver.rb