summaryrefslogtreecommitdiff
path: root/lib/gitlab/health_checks/metric.rb
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