From 99d934d041d77717698c87be1602f1ab40383e82 Mon Sep 17 00:00:00 2001 From: Sven Holz Date: Fri, 17 Jun 2022 00:46:26 +0200 Subject: [PATCH] config.ini to template --- latency-monitor/config-template.ini | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 latency-monitor/config-template.ini diff --git a/latency-monitor/config-template.ini b/latency-monitor/config-template.ini new file mode 100644 index 0000000..65d3a47 --- /dev/null +++ b/latency-monitor/config-template.ini @@ -0,0 +1,35 @@ +# Config File Usage +# +# all MUST options are marked with #!!! and have to be configured +# +# Config file ist IGNORED if equivalent environment variables are passed +# +# + + +[influx] # SOME are MUST; influxdb2 connection relevant options +#!!! infx_url = http://YOUR_INFLUX_DB_V2:8086 +#!!! infx_token = YOUR_INFLUX_DB_V2_API_TOKEN +#!!! infx_bucket = YOUR_INFLUX_DB_V2_BUCKET +#!!! infx_org = YOUR_INFLUX_DB_V2_ORGANIZATION +# infx_batch_size = 60 # OPTIONAL; default is '60' +# infx_flush_interval = 30_000 # OPTIONAL; default is '30_000' +# infx_jitter_interval = 5_000 # OPTIONAL; default is '5_000' +# infx_retry_interval = 5_000 # OPTIONAL; default is '5_000' + + +[hosts] # ONE HOST is MUST, rest ist optional; IP or FQDN +#!!! host1 = 8.8.8.8 +# host2 = 8.8.4.4 +# host3 = 1.1.1.1 + +[hosts_timer] # OPTIONAL; ping interval in seconds; default is '5' +# host1 = 1 +# host2 = 3 +# host3 = 5 + +[hosts_location] # OPTIONAL; location of host; default is 'unknown' +# host1 = Google-DNS1 +# host2 = Google-DNS2 +# host3 = Cloudflare-DNS +