Skip to content
Snippets Groups Projects
Commit e99a55ff authored by Thong Kuah's avatar Thong Kuah 💬
Browse files

Run least expensive method first

If environment is not available, then no point running the more
expensive `prometheus_adapter`.
parent 6fa90054
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -163,7 +163,7 @@ class Environment < ApplicationRecord
end
 
def has_metrics?
prometheus_adapter&.can_query? && available?
available? && prometheus_adapter&.can_query?
end
 
def metrics
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment