From ca692c79344e2259ecd29d3629f6301db699a52c Mon Sep 17 00:00:00 2001 From: Srivahni Date: Wed, 10 Apr 2019 22:56:18 -0700 Subject: Day2 configs for Prometheus and Collectd Change-Id: Iae71e408e4f766e726a028921343be39009b088f Issue-ID: ONAPARC-457 Issue-ID: ONAPARC-443 Signed-off-by: Srivahni --- vnfs/DAaaS/day2_configs/prometheus/README.txt | 7 +++++++ vnfs/DAaaS/day2_configs/prometheus/add_remote_write.yaml | 13 +++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 vnfs/DAaaS/day2_configs/prometheus/README.txt create mode 100644 vnfs/DAaaS/day2_configs/prometheus/add_remote_write.yaml (limited to 'vnfs/DAaaS/day2_configs/prometheus') diff --git a/vnfs/DAaaS/day2_configs/prometheus/README.txt b/vnfs/DAaaS/day2_configs/prometheus/README.txt new file mode 100644 index 00000000..99b63fac --- /dev/null +++ b/vnfs/DAaaS/day2_configs/prometheus/README.txt @@ -0,0 +1,7 @@ +This day2 config adds a remote_write to existing config + +Assuming initial/day0 config in namespace "edge1" and helm release name as "cp" (helm install -n cp collection/ --namespace=edge1) + +Run below command to apply day2 config + +kubectl patch --namespace=edge1 prometheus cp-prometheus-prometheus -p "$(cat add_remote_write.yaml)" --type=merge diff --git a/vnfs/DAaaS/day2_configs/prometheus/add_remote_write.yaml b/vnfs/DAaaS/day2_configs/prometheus/add_remote_write.yaml new file mode 100644 index 00000000..48af9017 --- /dev/null +++ b/vnfs/DAaaS/day2_configs/prometheus/add_remote_write.yaml @@ -0,0 +1,13 @@ +spec: + remoteRead: + - url: "http://m3coordinator-m3db.m3db-operator.svc.cluster.local:7201/api/v1/prom/remote/read" + readRecent: true + remoteWrite: + - url: "http://m3coordinator-m3db.m3db-operator.svc.cluster.local:7201/api/v1/prom/remote/write" + writeRelabelConfigs: + - targetLabel: metrics_storage + replacement: m3db_remote + - url: "http://m3coordinator-m3db-cluster.edge1.svc.cluster.local:7201/api/v1/prom/remote/write" + writeRelabelConfigs: + - targetLabel: metrics_storage_day2 + replacement: m3db_remote_day2 -- cgit 1.2.3-korg