From 26bc22297811ba2d0e37b512516a86474689d879 Mon Sep 17 00:00:00 2001 From: kjaniak Date: Fri, 11 Oct 2019 07:23:59 +0200 Subject: Add SSL support to cloud performance tests Change-Id: Ie0a6341592efe3bfe3e386c01026600d16110cef Signed-off-by: kjaniak Issue-ID: DCAEGEN2-1827 --- .../cloud/prometheus/prometheus-config-map.yaml | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tools/performance/cloud/prometheus/prometheus-config-map.yaml (limited to 'tools/performance/cloud/prometheus') diff --git a/tools/performance/cloud/prometheus/prometheus-config-map.yaml b/tools/performance/cloud/prometheus/prometheus-config-map.yaml new file mode 100644 index 00000000..a07bc336 --- /dev/null +++ b/tools/performance/cloud/prometheus/prometheus-config-map.yaml @@ -0,0 +1,51 @@ +# ============LICENSE_START======================================================= +# dcaegen2-collectors-veshv +# ================================================================================ +# Copyright (C) 2019 NOKIA +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= + +apiVersion: v1 +kind: ConfigMap +metadata: + name: prometheus-server-conf + labels: + name: prometheus-server-conf + namespace: onap +data: + prometheus.yml: |- + global: + scrape_interval: 5s + external_labels: + monitor: 'my-monitor' + + scrape_configs: + - job_name: 'prometheus' + static_configs: + - targets: ['localhost:9090'] + + - job_name: 'kafka-processing-consumer' + metrics_path: '/monitoring/prometheus' + static_configs: + - targets: ['kafka-processing-consumer.onap:6063'] + + - job_name: 'kafka-offset-consumer' + metrics_path: '/monitoring/prometheus' + static_configs: + - targets: ['kafka-counting-consumer.onap:6062'] + + - job_name: 'ves-hv-collector' + metrics_path: '/monitoring/prometheus' + static_configs: + - targets: ['dcae-hv-ves-collector.onap:6060'] -- cgit 1.2.3-korg