diff --git a/global/overlay/etc/puppet/cosmos-rules.yaml b/global/overlay/etc/puppet/cosmos-rules.yaml index 4d6b448d..7a277fd6 100644 --- a/global/overlay/etc/puppet/cosmos-rules.yaml +++ b/global/overlay/etc/puppet/cosmos-rules.yaml @@ -832,6 +832,10 @@ log.qa.sveidas.se: sunet_iaas_cloud: eid::dockerhost: eid::telegraf: + ports: ['127.0.0.1:9999:9999'] + sunet::fticks: + args: -j + url: http://127.0.0.1:9999/telegraf autoupdate: eidas_log: sunet::rsyslog: diff --git a/global/overlay/etc/puppet/modules/eid/manifests/telegraf.pp b/global/overlay/etc/puppet/modules/eid/manifests/telegraf.pp index c92f4c4b..713deded 100644 --- a/global/overlay/etc/puppet/modules/eid/manifests/telegraf.pp +++ b/global/overlay/etc/puppet/modules/eid/manifests/telegraf.pp @@ -1,7 +1,7 @@ require stdlib require concat -class eid::telegraf(String $version = "stable", Array $volumes = []) { +class eid::telegraf(String $version = "stable", Array $volumes = [], Array $ports = []) { $influxdb2_token = hiera("influxdb2_token","NOT_SET_IN_HIERA"); $influxdb2_org = hiera("influxdb2_org","NOT_SET_IN_HIERA"); $influxdb2_bucket = hiera("influxdb2_bucket","NOT_SET_IN_HIERA"); @@ -27,6 +27,7 @@ class eid::telegraf(String $version = "stable", Array $volumes = []) { image => "docker.sunet.se/eduid/telegraf", imagetag => $version, volumes => $_volumes, + ports => $ports, env => ["INFLUXDB2_TOKEN=$influxdb2_token","INFLUXDB2_ORG=$influxdb2_org","INFLUXDB2_BUCKET=$influxdb2_bucket"] } } diff --git a/log.qa.sveidas.se/overlay/etc/telegraf/telegraf.conf.d/50-http2.conf b/log.qa.sveidas.se/overlay/etc/telegraf/telegraf.conf.d/50-http2.conf new file mode 100644 index 00000000..ada03c9f --- /dev/null +++ b/log.qa.sveidas.se/overlay/etc/telegraf/telegraf.conf.d/50-http2.conf @@ -0,0 +1,5 @@ +[[inputs.http_listener_v2]] + service_address = "0.0.0.0:9999" + methods = ["POST"] + data_source = "body" + data_format = "json"