diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-03 21:12:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 21:12:18 +0200 |
commit | 0400f96c003ca0472a9e1786b5af20e4207b9e59 (patch) | |
tree | 512f39956b40ca6f89f4ec221e673aaee0964ffa /data | |
parent | 318f81cba207dc5f180b074c2a7cdb4a4217e5fc (diff) | |
parent | 5ceabd78f1cccf0a8283056be071f4fdc676f012 (diff) | |
download | vyos-1x-0400f96c003ca0472a9e1786b5af20e4207b9e59.tar.gz vyos-1x-0400f96c003ca0472a9e1786b5af20e4207b9e59.zip |
Merge pull request #1310 from sever-sever/T4315
monitoring: T4315: Add telegraf output plugin prometheus-client
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/monitoring/telegraf.j2 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/data/templates/monitoring/telegraf.j2 b/data/templates/monitoring/telegraf.j2 index cf33eec4e..336a1d2c4 100644 --- a/data/templates/monitoring/telegraf.j2 +++ b/data/templates/monitoring/telegraf.j2 @@ -14,12 +14,28 @@ logfile = "" hostname = "" omit_hostname = false +{% if influxdb_configured is vyos_defined %} [[outputs.influxdb_v2]] urls = ["{{ url }}:{{ port }}"] insecure_skip_verify = true token = "$INFLUX_TOKEN" organization = "{{ authentication.organization }}" bucket = "{{ bucket }}" +{% endif %} +{% if prometheus_client is vyos_defined %} +[[outputs.prometheus_client]] + ## Address to listen on + listen = "{{ prometheus_client.listen_address 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 + basic_username = "{{ prometheus_client.authentication.username }}" + basic_password = "{{ prometheus_client.authentication.password }}" +{% endif %} +{% if prometheus_client.allow_from is vyos_defined %} + ip_range = {{ prometheus_client.allow_from }} +{% endif %} +{% endif %} [[inputs.cpu]] percpu = true totalcpu = true @@ -50,6 +66,7 @@ server = "unixgram:///run/telegraf/telegraf_syslog.sock" best_effort = true syslog_standard = "RFC3164" +{% if influxdb_configured is vyos_defined %} [[inputs.exec]] commands = [ "{{ custom_scripts_dir }}/show_firewall_input_filter.py", @@ -58,3 +75,4 @@ ] timeout = "10s" data_format = "influx" +{% endif %} |