bundlewrap/bundles/telegraf/metadata.py
Franzi 6944da6769
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
fix syntaxerrors
2022-02-14 07:56:51 +01:00

39 lines
935 B
Python

defaults = {
'apt': {
'packages': {
'telegraf': {
'needed_by': {
'svc_systemd:telegraf',
'user:telegraf',
},
},
},
'repos': {
'influxdb': {
'items': {
'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:',
},
},
},
},
'pacman': {
'packages': {
'telegraf-bin': {
'needed_by': {
'svc_systemd:telegraf',
'user:telegraf',
},
},
},
},
}