diff options
author | FrancescoFioraEst <francesco.fiora@est.tech> | 2024-03-11 09:21:04 +0000 |
---|---|---|
committer | Francesco Fiora <francesco.fiora@est.tech> | 2024-03-11 10:04:46 +0000 |
commit | 9e33a52d0cf03c0458911330fb72037d01b07a4a (patch) | |
tree | 7d131ce0965d7691dd76c436fb67cf80603d0341 /helm/prometheus/resources/prometheus.yml | |
parent | 5582cd406c8414919c4d5d7f5b116f4f1e5a971d (diff) |
Add Prometheus config for http and k8s participants in csit
Issue-ID: POLICY-4944
Change-Id: I1e0e5795c166f532960a0e6c104b35eec32f685e
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'helm/prometheus/resources/prometheus.yml')
-rw-r--r-- | helm/prometheus/resources/prometheus.yml | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/helm/prometheus/resources/prometheus.yml b/helm/prometheus/resources/prometheus.yml index 04451de3..b3f656fe 100644 --- a/helm/prometheus/resources/prometheus.yml +++ b/helm/prometheus/resources/prometheus.yml @@ -95,7 +95,7 @@ scrape_configs: username: "runtimeUser" password: "zb!XztG34" - - job_name: "acm-participant-metrics" + - job_name: "acm-participant-policy-metrics" metrics_path: "/onap/policyparticipant/prometheus" static_configs: - targets: @@ -103,3 +103,21 @@ scrape_configs: basic_auth: username: "participantUser" password: "zb!XztG34" + + - job_name: "acm-participant-http-metrics" + metrics_path: "/onap/httpparticipant/prometheus" + static_configs: + - targets: + - "policy-clamp-ac-http-ppnt:8084" + basic_auth: + username: "participantUser" + password: "zb!XztG34" + + - job_name: "acm-participant-k8s-metrics" + metrics_path: "/onap/k8sparticipant/prometheus" + static_configs: + - targets: + - "policy-clamp-ac-k8s-ppnt:8083" + basic_auth: + username: "participantUser" + password: "zb!XztG34" |