diff options
Diffstat (limited to 'development/prometheus.yml')
-rw-r--r-- | development/prometheus.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/development/prometheus.yml b/development/prometheus.yml new file mode 100644 index 00000000..201c8f96 --- /dev/null +++ b/development/prometheus.yml @@ -0,0 +1,14 @@ +global: + scrape_interval: 5s + external_labels: + monitor: 'my-monitor' + +scrape_configs: + - job_name: 'prometheus' + static_configs: + - targets: ['localhost:9090'] + + - job_name: 'ves-hv-collector' + metrics_path: '/monitoring/prometheus' + static_configs: + - targets: ['ves-hv-collector:6060'] |