Sha256: 79837abff4b42e5a4abbced6e8d3f46b6099504cc7304052de4063c2c60cca94
Contents?: true
Size: 483 Bytes
Versions: 3
Compression:
Stored size: 483 Bytes
Contents
# encoding: utf-8 require 'logstash/instrument/periodic_poller/base' module LogStash module Instrument module PeriodicPoller class DeadLetterQueue < Base def initialize(metric, agent, options = {}) super(metric, options) @metric = metric @agent = agent end def collect _, pipeline = @agent.with_running_pipelines { |pipelines| pipelines.first } unless pipeline.nil? pipeline.collect_dlq_stats end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems