Class: Fluent::Prometheus::Counter

Inherits:
Metric
  • Object
show all
Defined in:
lib/fluent/plugin/prometheus.rb

Instance Attribute Summary

Attributes inherited from Metric

#desc, #key, #name, #type

Instance Method Summary collapse

Methods inherited from Metric

get, #labels

Constructor Details

#initialize(element, registry, labels) ⇒ Counter

Returns a new instance of Counter.



152
153
154
155
156
157
158
159
# File 'lib/fluent/plugin/prometheus.rb', line 152

def initialize(element, registry, labels)
  super
  begin
    @counter = registry.counter(element['name'].to_sym, element['desc'])
  rescue ::Prometheus::Client::Registry::AlreadyRegisteredError
    @counter = Fluent::Prometheus::Metric.get(registry, element['name'].to_sym, :counter, element['desc'])
  end
end

Instance Method Details

#instrument(record, expander, placeholders) ⇒ Object



161
162
163
164
165
166
167
168
169
# File 'lib/fluent/plugin/prometheus.rb', line 161

def instrument(record, expander, placeholders)
  # use record value of the key if key is specified, otherwise just increment
  value = @key ? record[@key] : 1

  # ignore if record value is nil
  return if value.nil?

  @counter.increment(labels(record, expander, placeholders), value)
end