Class: Fluent::Plugin::Prometheus::Histogram
- Defined in:
- lib/fluent/plugin/prometheus.rb
Instance Attribute Summary
Attributes inherited from Metric
Instance Method Summary collapse
-
#initialize(element, registry, labels) ⇒ Histogram
constructor
A new instance of Histogram.
- #instrument(record, expander) ⇒ Object
Methods inherited from Metric
Constructor Details
#initialize(element, registry, labels) ⇒ Histogram
Returns a new instance of Histogram.
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'lib/fluent/plugin/prometheus.rb', line 263 def initialize(element, registry, labels) super if @key.nil? raise ConfigError, "histogram metric requires 'key' option" end begin if element['buckets'] buckets = element['buckets'].split(/,/).map(&:strip).map do |e| e[/\A\d+.\d+\Z/] ? e.to_f : e.to_i end @histogram = registry.histogram(element['name'].to_sym, element['desc'], {}, buckets) else @histogram = registry.histogram(element['name'].to_sym, element['desc']) end rescue ::Prometheus::Client::Registry::AlreadyRegisteredError @histogram = Fluent::Plugin::Prometheus::Metric.get(registry, element['name'].to_sym, :histogram, element['desc']) end end |
Instance Method Details
#instrument(record, expander) ⇒ Object
283 284 285 286 287 288 289 290 291 292 |
# File 'lib/fluent/plugin/prometheus.rb', line 283 def instrument(record, ) if @key.is_a?(String) value = record[@key] else value = @key.call(record) end if value @histogram.observe(labels(record, ), value) end end |