Class: Prometheus::Client::Summary

Inherits:
Metric
  • Object
show all
Defined in:
lib/prometheus/client/summary.rb

Overview

Summary is an accumulator for samples. It captures Numeric data and provides an efficient quantile calculation mechanism.

Defined Under Namespace

Classes: Value

Instance Attribute Summary

Attributes inherited from Metric

#base_labels, #docstring, #name

Instance Method Summary collapse

Methods inherited from Metric

#initialize

Constructor Details

This class inherits a constructor from Prometheus::Client::Metric

Instance Method Details

#add(labels, value) ⇒ Object

Records a given value.



31
32
33
34
# File 'lib/prometheus/client/summary.rb', line 31

def add(labels, value)
  label_set = label_set_for(labels)
  synchronize { @values[label_set].observe(value) }
end

#get(labels = {}) ⇒ Object

Returns the value for the given label set



37
38
39
40
41
42
43
# File 'lib/prometheus/client/summary.rb', line 37

def get(labels = {})
  @validator.valid?(labels)

  synchronize do
    Value.new(@values[labels])
  end
end

#typeObject



26
27
28
# File 'lib/prometheus/client/summary.rb', line 26

def type
  :summary
end

#valuesObject

Returns all label sets with their values



46
47
48
49
50
51
52
# File 'lib/prometheus/client/summary.rb', line 46

def values
  synchronize do
    @values.each_with_object({}) do |(labels, value), memo|
      memo[labels] = Value.new(value)
    end
  end
end