18 lines
475 B
Python
18 lines
475 B
Python
|
defaults = {
|
||
|
'telegraf': {
|
||
|
'input_plugins': {
|
||
|
'exec': {
|
||
|
'battery-usage': {
|
||
|
'commands': ['sudo /usr/local/bin/telegraf-plugin-battery-usage'],
|
||
|
'data_format': 'influx',
|
||
|
'timeout': '5s',
|
||
|
'interval': '15s',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
'sudo_commands': {
|
||
|
'/usr/local/bin/telegraf-plugin-battery-usage',
|
||
|
},
|
||
|
},
|
||
|
}
|