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

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

16 lines
296 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module Gitlab
module Usage
module Metrics
module Instrumentations
class GitlabDedicatedMetric < GenericMetric
value do
Gitlab::CurrentSettings.gitlab_dedicated_instance
end
end
end
end
end
end