This config was only related to 'sunet::fticks:', SC-2522

This is only configured on the QA log server.
This commit is contained in:
Patrik Holmqvist 2025-03-28 11:08:49 +01:00
parent 554578c088
commit 593231999a
Signed by: pahol
GPG key ID: 5D5B0D4E93F77273
2 changed files with 5 additions and 2 deletions

View file

@ -10,15 +10,16 @@
# @param influxdb2_bucket Influx bucket name (referenced in compose file)
# @param influxdb2_bucket_proxy Influx bucket name (referenced in compose file)
class eid::telegraf2 (
Enum['proxy', 'log'] $server_type,
String $version = 'latest',
String $server_fqdn = $facts['networking']['fqdn'],
Enum['proxy', 'log'] $server_type,
Array $ports = [],
String $service_dir = '/etc/telegraf',
Array $influx_urls = ["https://metrics-external-1.sunet.se:8086"],
String $influxdb2_org = 'SwedenConnect',
String $influxdb2_bucket = 'eidas',
String $influxdb2_bucket_proxy = 'eidas-proxy',
Boolean $use_fticks = false,
) {
# Get influx password token from eyaml

View file

@ -14,7 +14,7 @@
omit_hostname = false
[[inputs.system]]
<% if @server_type == 'log' -%>
<% if @use_fticks -%>
[[inputs.http_listener_v2]]
service_address = "0.0.0.0:9999"
methods = ["POST"]
@ -23,6 +23,8 @@
json_time_key = "ts"
json_time_format = "2006-01-02 15:04:05"
json_timezone = "Local"
<% end -%>
<% if @server_type == 'log' -%>
[[inputs.tail]]
files = ["/var/log/eidas_stats.log"]
data_format = "json"