summaryrefslogtreecommitdiff
path: root/app/services/prometheus/adapter_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/prometheus/adapter_service.rb')
-rw-r--r--app/services/prometheus/adapter_service.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/services/prometheus/adapter_service.rb b/app/services/prometheus/adapter_service.rb
index 3be958e1613..399f4c35d66 100644
--- a/app/services/prometheus/adapter_service.rb
+++ b/app/services/prometheus/adapter_service.rb
@@ -27,12 +27,9 @@ module Prometheus
end
def cluster_prometheus_adapter
- return unless deployment_platform.respond_to?(:cluster)
+ application = deployment_platform&.cluster&.application_prometheus
- cluster = deployment_platform.cluster
- return unless cluster.application_prometheus&.available?
-
- cluster.application_prometheus
+ application if application&.available?
end
end
end