mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
Fix InfluxDB support on docker-compose deployment. (#872)
* Added UDP protocol support for Graphite/Influx in docker-compose deployment. This is necessary for Proxmox VE External Metric Server support. https://pve.proxmox.com/wiki/External_Metric_Server * Added `influxListenAddr` in docker-compose deployment. This is necessary for Proxmox VE External Metric Server support. https://pve.proxmox.com/wiki/External_Metric_Server Additionally created Grafana Dashboard for monitoring Proxmox VE hosts. https://grafana.com/grafana/dashboards/13307
This commit is contained in:
parent
f0bdc5716e
commit
4108e85efd
1 changed files with 3 additions and 1 deletions
|
@ -21,7 +21,8 @@ services:
|
||||||
image: victoriametrics/victoria-metrics
|
image: victoriametrics/victoria-metrics
|
||||||
ports:
|
ports:
|
||||||
- 8428:8428
|
- 8428:8428
|
||||||
- 8428:8428/udp
|
- 8089:8089
|
||||||
|
- 8089:8089/udp
|
||||||
- 2003:2003
|
- 2003:2003
|
||||||
- 2003:2003/udp
|
- 2003:2003/udp
|
||||||
- 4242:4242
|
- 4242:4242
|
||||||
|
@ -32,6 +33,7 @@ services:
|
||||||
- '--graphiteListenAddr=:2003'
|
- '--graphiteListenAddr=:2003'
|
||||||
- '--opentsdbListenAddr=:4242'
|
- '--opentsdbListenAddr=:4242'
|
||||||
- '--httpListenAddr=:8428'
|
- '--httpListenAddr=:8428'
|
||||||
|
- '--influxListenAddr=:8089'
|
||||||
networks:
|
networks:
|
||||||
- vm_net
|
- vm_net
|
||||||
restart: always
|
restart: always
|
||||||
|
|
Loading…
Reference in a new issue