fticks sender via telegraf

This commit is contained in:
Leif Johansson 2020-05-07 16:29:59 +02:00
parent fcc70ced30
commit 09d996cde0
No known key found for this signature in database
GPG key ID: D73AD6430AD478D6
3 changed files with 11 additions and 1 deletions

View file

@ -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:

View file

@ -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"]
}
}

View file

@ -0,0 +1,5 @@
[[inputs.http_listener_v2]]
service_address = "0.0.0.0:9999"
methods = ["POST"]
data_source = "body"
data_format = "json"