2024-08-18 01:57:01 +00:00
|
|
|
Run docker compose to deploy prometheus, grafana, and edenic exporter
|
|
|
|
|
|
|
|
After that go to the prometheus container and add to the config file:
|
|
|
|
|
2024-08-18 22:09:04 +00:00
|
|
|
```
|
2024-08-18 01:57:01 +00:00
|
|
|
scrape_configs:
|
|
|
|
- job_name: 'edenic-exporter'
|
|
|
|
metrics_path: '/metrics'
|
|
|
|
scrape_interval: 60s
|
|
|
|
static_configs:
|
|
|
|
- targets: ['edenic-exporter:5000']
|
2024-08-21 23:34:16 +00:00
|
|
|
```
|