Welcome to mirror list, hosted at ThFree Co, Russian Federation.

matched_metrics_query_helper.rb « prometheus « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0471a78e4262a375abce3aca15e6d82cdd00eba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Prometheus
  module MatchedMetricsQueryHelper
    def metric_names
      %w{metric_a metric_b}
    end

    def series_info_with_environment(*more_metrics)
      %w{metric_a metric_b}.concat(more_metrics).map { |metric_name| { '__name__' => metric_name, 'environment' => '' } }
    end

    def series_info_without_environment
      [{ '__name__' => 'metric_a' },
       { '__name__' => 'metric_b' }]
    end

    def partialy_empty_series_info
      [{ '__name__' => 'metric_a', 'environment' => '' }]
    end

    def empty_series_info
      []
    end
  end
end