At Docker Congainers/Monitoring & Management/Prometheus
https://docs.techdox.nz/prometheus/
The prometheus.yml is using api_version: v1 which is no longer supported
alerting:
alertmanagers:
- static_configs:
- targets: []
scheme: http
timeout: 10s
api_version: v1 <---- this is the problem why prometheus was not running in the web
just change the api_version to v2
alerting:
alertmanagers:
- static_configs:
- targets: []
scheme: http
timeout: 10s
api_version: v2
sorry if i am doing an "isssue" the wrong way, this is the first time i ran into something like this, hopethis helps
At Docker Congainers/Monitoring & Management/Prometheus
https://docs.techdox.nz/prometheus/
The prometheus.yml is using api_version: v1 which is no longer supported
just change the api_version to v2
sorry if i am doing an "isssue" the wrong way, this is the first time i ran into something like this, hopethis helps