mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
29 lines
476 B
Ruby
29 lines
476 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Metrics
|
|
module Environment
|
|
class << self
|
|
def web?
|
|
service?('web')
|
|
end
|
|
|
|
def api?
|
|
service?('api')
|
|
end
|
|
|
|
def git?
|
|
service?('git')
|
|
end
|
|
|
|
def service?(name)
|
|
env_var = ENV.fetch('GITLAB_METRICS_INITIALIZE', '')
|
|
return true unless env_var.present?
|
|
|
|
env_var == name
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|