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

sample_metrics_service.rb « metrics « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bf32b295e2e1a5ff919f727496ca712583cfa08 (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
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

module Metrics
  class SampleMetricsService
    DIRECTORY = "sample_metrics"

    attr_reader :identifier, :range_minutes

    def initialize(identifier, range_start:, range_end:)
      @identifier = identifier
      @range_minutes = convert_range_minutes(range_start, range_end)
    end

    def query
      return unless identifier && File.exist?(file_location)

      query_interval
    end

    private

    def file_location
      sanitized_string = identifier.gsub(/[^0-9A-Za-z_]/, '')
      File.join(Rails.root, DIRECTORY, "#{sanitized_string}.yml")
    end

    def query_interval
      result = YAML.load_file(File.expand_path(file_location, __dir__))
      result[range_minutes]
    end

    def convert_range_minutes(range_start, range_end)
      ((range_end.to_time - range_start.to_time) / 1.minute).to_i
    end
  end
end