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: 62a5216d159d5536ab65561122a2c8b23bc39b6e (plain)
1
2
3
4
5
6
# rubocop:disable Naming/FileName
# frozen_string_literal: true

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