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: b697cb0d027d87f534a5f480111459d9af5ed883 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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