gitlab-org--gitlab-foss/lib/gitlab/usage/metrics/instrumentations/hostname_metric.rb

16 lines
265 B
Ruby

# frozen_string_literal: true
module Gitlab
module Usage
module Metrics
module Instrumentations
class HostnameMetric < GenericMetric
value do
Gitlab.config.gitlab.host
end
end
end
end
end
end