mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +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
|
||||
ports:
|
||||
- 8428:8428
|
||||
- 8428:8428/udp
|
||||
- 8089:8089
|
||||
- 8089:8089/udp
|
||||
- 2003:2003
|
||||
- 2003:2003/udp
|
||||
- 4242:4242
|
||||
|
@ -32,6 +33,7 @@ services:
|
|||
- '--graphiteListenAddr=:2003'
|
||||
- '--opentsdbListenAddr=:4242'
|
||||
- '--httpListenAddr=:8428'
|
||||
- '--influxListenAddr=:8089'
|
||||
networks:
|
||||
- vm_net
|
||||
restart: always
|
||||
|
|
Loading…
Reference in a new issue