bundlewrap/bundles/telegraf/metadata.py
Franzi a9692317d2
Some checks failed
bundlewrap/pipeline/head There was a failure building this commit
bundles/telegraf: temporarily hardcode a repo path
2021-04-24 11:47:28 +02:00

26 lines
728 B
Python

defaults = {
'apt': {
'packages': {
'telegraf': {},
},
'repos': {
'influxdb': {
'items': {
'deb https://repos.influxdata.com/debian buster stable',
# TODO switch to autogenerated node name once influx supports bullseye
#'deb https://repos.influxdata.com/{os} {os_release} stable',
},
},
},
},
'icinga2_api': {
'telegraf': {
'services': {
'TELEGRAF PROCESS': {
'command_on_monitored_host': '/usr/lib/nagios/plugins/check_procs -C telegraf -c 1:',
},
},
},
},
}