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

metric.rb « health_checks « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1e437831d7f0bda6e6c4ded2f6e8a12ef424f9b (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module Gitlab
  module HealthChecks
    Metric = Struct.new(:name, :value, :labels)
  end
end

# rubocop:enable Naming/FileName