You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
593 B
28 lines
593 B
9 years ago
|
##
|
||
|
## influxdb-relay.conf -- InfluxDB Relay Server Configuration
|
||
|
##
|
||
|
|
||
|
[[http]]
|
||
|
|
||
|
name = "frontend-http"
|
||
|
bind-addr = "127.0.0.1:9096"
|
||
|
|
||
|
output = [
|
||
|
{ name = "backend1", location = "http://127.0.0.1:8086/write", timeout = "10s" },
|
||
|
{ name = "backend2", location = "http://127.0.0.1:7086/write", timeout = "10s" },
|
||
|
]
|
||
|
|
||
|
[[udp]]
|
||
|
|
||
|
name = "frontend-udp"
|
||
|
bind-addr = "127.0.0.1:9096"
|
||
|
|
||
|
read-buffer = 0
|
||
|
precision = "n"
|
||
|
|
||
|
output = [
|
||
|
{ name = "backend1", location = "127.0.0.1:8089", mtu = 512 },
|
||
|
{ name = "backend2", location = "127.0.0.1:7089", mtu = 1024 },
|
||
|
]
|
||
|
|