debian-mirror-gitlab/lib/gitlab/usage/metrics/instrumentations/hostname_metric.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
265 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# 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