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

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