summaryrefslogtreecommitdiff
path: root/data/templates/telegraf
diff options
context:
space:
mode:
authorKyleM <103862795+ServerForge@users.noreply.github.com>2022-09-22 01:57:29 -0400
committerGitHub <noreply@github.com>2022-09-22 07:57:29 +0200
commitf3e6fb5aab6f562dab49f559f31c58c0f86c03df (patch)
tree8537a2f25f53543b7b48f0604d5e38fda3019927 /data/templates/telegraf
parent2921b6fbcdde6f6bcb2581afff9de44444a167a4 (diff)
downloadvyos-1x-f3e6fb5aab6f562dab49f559f31c58c0f86c03df.tar.gz
vyos-1x-f3e6fb5aab6f562dab49f559f31c58c0f86c03df.zip
telegraf: T4680: fix prometheus client listen-address invalid format
Diffstat (limited to 'data/templates/telegraf')
-rw-r--r--data/templates/telegraf/telegraf.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/telegraf/telegraf.j2 b/data/templates/telegraf/telegraf.j2
index 6b395692b..2d14230ae 100644
--- a/data/templates/telegraf/telegraf.j2
+++ b/data/templates/telegraf/telegraf.j2
@@ -45,7 +45,7 @@
### Prometheus ###
[[outputs.prometheus_client]]
## Address to listen on
- listen = "{{ prometheus_client.listen_address if prometheus_client.listen_address is vyos_defined else '' }}:{{ prometheus_client.port }}"
+ listen = "{{ prometheus_client.listen_address | bracketize_ipv6 if prometheus_client.listen_address is vyos_defined else '' }}:{{ prometheus_client.port }}"
metric_version = {{ prometheus_client.metric_version }}
{% if prometheus_client.authentication.username is vyos_defined and prometheus_client.authentication.password is vyos_defined %}
## Use HTTP Basic Authentication