Skip to content

Commit 3a8deb4

Browse files
author
Jonathan Chauncey
committed
Merge pull request #77 from sstarcher/udp
allow enabling of the udp interface
2 parents 6c52662 + 83fade0 commit 3a8deb4

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

influxdb/rootfs/config.toml.tpl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,13 @@ bind-address = {{ default ":8088" .BIND_ADDRESS | quote }}
105105
separator = {{ default "." .GRAPHITE_SEPERATOR | quote }}
106106
{{ if .GRAPHITE_TAGS }}tags = [{{ .GRAPHITE_TAGS | quote }}]{{end}}
107107
{{ if .GRAPHITE_TEMPLATES }}templates = [{{ .GRAPHITE_TEMPLATES | quote }}]{{end}}
108+
109+
[[udp]]
110+
enabled = {{ default false .UDP_ENABLED }}
111+
bind-address = {{ default ":8089" .GRAPHITE_BIND_ADDRESS | quote }}
112+
database = {{ default "udp" .UDP_DATABASE | quote }}
113+
batch-size = {{ default "1000" .UDP_BATCH_SIZE }}
114+
batch-timeout = {{ default "1s" .UDP_BATCH_TIMEOUT | quote }}
115+
batch-pending = {{ default "5" .UDP_BATCH_PENDING }}
116+
read-buffer ={{ default "0" .UDP_READ_BUFFER }}
117+

0 commit comments

Comments
 (0)