Class: Fluent::Prometheus::Gauge
- Defined in:
- lib/fluent/plugin/prometheus.rb
Instance Attribute Summary
Attributes inherited from Metric
Instance Method Summary collapse
-
#initialize(element, registry, labels) ⇒ Gauge
constructor
A new instance of Gauge.
- #instrument(record, expander) ⇒ Object
Methods inherited from Metric
Constructor Details
#initialize(element, registry, labels) ⇒ Gauge
Returns a new instance of Gauge.
133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/fluent/plugin/prometheus.rb', line 133 def initialize(element, registry, labels) super if @key.nil? raise ConfigError, "gauge metric requires 'key' option" end begin @gauge = registry.gauge(element['name'].to_sym, element['desc']) rescue ::Prometheus::Client::Registry::AlreadyRegisteredError @gauge = Fluent::Prometheus::Metric.get(registry, element['name'].to_sym, :gauge, element['desc']) end end |
Instance Method Details
#instrument(record, expander) ⇒ Object
146 147 148 149 150 |
# File 'lib/fluent/plugin/prometheus.rb', line 146 def instrument(record, ) if record[@key] @gauge.set(labels(record, ), record[@key]) end end |