Class: GitLab::Exporter::PrometheusMetrics
- Inherits:
-
Object
- Object
- GitLab::Exporter::PrometheusMetrics
- Defined in:
- lib/gitlab_exporter/prometheus.rb
Overview
Prometheus metrics container
Provides a simple API to ‘add` metrics and then turn them `to_s` which will just dump all the metrics in prometheus format
The add method also can take any arbitrary amount of labels in a ‘key: value` format.
Class Method Summary collapse
Instance Method Summary collapse
- #add(name, value, quantile = false, **labels) ⇒ Object
-
#initialize(include_timestamp: true) ⇒ PrometheusMetrics
constructor
A new instance of PrometheusMetrics.
- #to_s ⇒ Object
Constructor Details
#initialize(include_timestamp: true) ⇒ PrometheusMetrics
Returns a new instance of PrometheusMetrics.
12 13 14 15 16 |
# File 'lib/gitlab_exporter/prometheus.rb', line 12 def initialize(include_timestamp: true) @metrics = Hash.new { |h, k| h[k] = [] } @quantiles = Hash.new { |h, k| h[k] = [] } @include_timestamp = end |
Class Method Details
.clear_descriptions ⇒ Object
28 29 30 |
# File 'lib/gitlab_exporter/prometheus.rb', line 28 def clear_descriptions @metric_descriptions = {} end |
.describe(name, description) ⇒ Object
19 20 21 22 |
# File 'lib/gitlab_exporter/prometheus.rb', line 19 def describe(name, description) @metric_descriptions ||= {} @metric_descriptions[name] = description end |
.description(name) ⇒ Object
24 25 26 |
# File 'lib/gitlab_exporter/prometheus.rb', line 24 def description(name) @metric_descriptions && @metric_descriptions[name] end |
Instance Method Details
#add(name, value, quantile = false, **labels) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/gitlab_exporter/prometheus.rb', line 33 def add(name, value, quantile = false, **labels) fail "value '#{value}' must be a number" unless value.is_a?(Numeric) if quantile @quantiles[{ name: name, labels: labels }] << value else @metrics[name] << { value: value, labels: labels, timestamp: (Time.now.to_f * 1000).to_i } end self end |
#to_s ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/gitlab_exporter/prometheus.rb', line 45 def to_s add_quantiles_to_metrics buffer = "" @metrics.each do |name, measurements| buffer << "# HELP #{name} #{self.class.description(name)}\n" if self.class.description(name) measurements.each do |measurement| buffer << name.to_s labels = (measurement[:labels] || {}).map { |label, value| "#{label}=\"#{value}\"" }.join(",") buffer << "{#{labels}}" unless labels.empty? buffer << " #{measurement[:value]}" buffer << " #{measurement[:timestamp]}" if @include_timestamp buffer << "\n" end end buffer end |