Class: Fluent::Plugin::PrometheusMonitorInput

Inherits:
Input
  • Object
show all
Defined in:
lib/fluent/plugin/in_prometheus_monitor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePrometheusMonitorInput

Returns a new instance of PrometheusMonitorInput.



14
15
16
17
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 14

def initialize
  super
  @registry = ::Prometheus::Client.registry
end

Instance Attribute Details

#registryObject (readonly)

Returns the value of attribute registry.



12
13
14
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 12

def registry
  @registry
end

Instance Method Details

#configure(conf) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 23

def configure(conf)
  super
  hostname = Socket.gethostname
  expander = Fluent::Plugin::Prometheus.placeholder_expander(log)
  placeholders = expander.prepare_placeholders({'hostname' => hostname, 'worker_id' => fluentd_worker_id})
  @base_labels = Fluent::Plugin::Prometheus.parse_labels_elements(conf)
  @base_labels.each do |key, value|
    unless value.is_a?(String)
      raise Fluent::ConfigError, "record accessor syntax is not available in prometheus_monitor"
    end
    @base_labels[key] = expander.expand(value, placeholders)
  end

  if defined?(Fluent::Plugin) && defined?(Fluent::Plugin::MonitorAgentInput)
    # from v0.14.6
    @monitor_agent = Fluent::Plugin::MonitorAgentInput.new
  else
    @monitor_agent = Fluent::MonitorAgentInput.new
  end

end

#labels(plugin_info) ⇒ Object



76
77
78
79
80
81
82
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 76

def labels(plugin_info)
  @base_labels.merge(
    plugin_id: plugin_info["plugin_id"],
    plugin_category: plugin_info["plugin_category"],
    type: plugin_info["type"],
  )
end

#multi_workers_ready?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 19

def multi_workers_ready?
  true
end

#startObject



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 45

def start
  super

  buffer_queue_length = @registry.gauge(
    :fluentd_status_buffer_queue_length,
    'Current buffer queue length.')
  buffer_total_queued_size = @registry.gauge(
    :fluentd_status_buffer_total_bytes,
    'Current total size of queued buffers.')
  retry_counts = @registry.gauge(
    :fluentd_status_retry_count,
    'Current retry counts.')

  @monitor_info = {
    'buffer_queue_length' => buffer_queue_length,
    'buffer_total_queued_size' => buffer_total_queued_size,
    'retry_count' => retry_counts,
  }
  timer_execute(:in_prometheus_monitor, @interval, &method(:update_monitor_info))
end

#update_monitor_infoObject



66
67
68
69
70
71
72
73
74
# File 'lib/fluent/plugin/in_prometheus_monitor.rb', line 66

def update_monitor_info
  @monitor_agent.plugins_info_all.each do |info|
    @monitor_info.each do |name, metric|
      if info[name]
        metric.set(labels(info), info[name])
      end
    end
  end
end