gitlab-org--gitlab-foss/lib/gitlab/health_checks/metric.rb

7 lines
143 B
Ruby

# rubocop:disable Naming/FileName
# frozen_string_literal: true
module Gitlab::HealthChecks
Metric = Struct.new(:name, :value, :labels)
end