summaryrefslogtreecommitdiff
path: root/robusta_krr
diff options
context:
space:
mode:
authorNatan Yellin <aantn@users.noreply.github.com>2024-03-30 05:13:51 +0300
committerGitHub <noreply@github.com>2024-03-30 05:13:51 +0300
commit242feeccaf18f8b8b2ff08d685937e5037749603 (patch)
tree6e0e7930232d58d89477393d43eeaf13c3a1ccff /robusta_krr
parent746675875a24b828ccd2f0cf6314c5492198b3a5 (diff)
parent1540859a030e1590a5d4b47e2293a142a0ae447e (diff)
Merge pull request #253 from robusta-dev/change-selectors-order
Change selectors order - move the new selectors to be last, so existi…
Diffstat (limited to 'robusta_krr')
-rw-r--r--robusta_krr/core/integrations/prometheus/metrics_service/prometheus_metrics_service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/robusta_krr/core/integrations/prometheus/metrics_service/prometheus_metrics_service.py b/robusta_krr/core/integrations/prometheus/metrics_service/prometheus_metrics_service.py
index 2833496..ebcb835 100644
--- a/robusta_krr/core/integrations/prometheus/metrics_service/prometheus_metrics_service.py
+++ b/robusta_krr/core/integrations/prometheus/metrics_service/prometheus_metrics_service.py
@@ -34,13 +34,13 @@ class PrometheusDiscovery(MetricsServiceDiscovery):
return super().find_url(
selectors=[
- "app.kubernetes.io/name=prometheus,app.kubernetes.io/component=server",
"app=kube-prometheus-stack-prometheus",
"app=prometheus,component=server",
"app=prometheus-server",
"app=prometheus-operator-prometheus",
"app=rancher-monitoring-prometheus",
"app=prometheus-prometheus",
+ "app.kubernetes.io/name=prometheus,app.kubernetes.io/component=server",
]
)