16 lines
393 B
Ruby
16 lines
393 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Prometheus
|
||
|
module QueryVariables
|
||
|
def self.call(environment)
|
||
|
{
|
||
|
ci_environment_slug: environment.slug,
|
||
|
kube_namespace: environment.deployment_platform&.actual_namespace || '',
|
||
|
environment_filter: %{container_name!="POD",environment="#{environment.slug}"}
|
||
|
}
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|