summaryrefslogtreecommitdiff
path: root/lib/gitlab/health_checks/metric.rb
blob: c1e437831d7f0bda6e6c4ded2f6e8a12ef424f9b (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable Naming/FileName
# frozen_string_literal: true

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

# rubocop:enable Naming/FileName