EvoBSD/roles/collectd/defaults/main.yml
Jérémy Dubois 11d3331958
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Collectd role : deletion of collectd_plugin_exec variable
This variable had to be activated only if collectd_plugin_exec_ifq_drops or
collectd_plugin_exec_dns_stats was also activated, for some configuration to be
taken into account. I changed the role so that the configuration is
automatically taken into account if one of these two variables is activated.
2020-10-12 15:45:13 +02:00

32 lines
697 B
YAML

---
# destination server
collectd_server: "127.0.0.1"
# execution interval
collectd_interval: "300"
# exec plugin
collectd_plugin_exec_interval: "{{ collectd_interval }}"
collectd_plugin_exec_ifq_drops: false
collectd_plugin_exec_dns_stats: false # Based on unbound
collectd_plugin_exec_dns_stats_interval: "{{ collectd_interval }}"
# others plugins
collectd_plugin_cpu: true
collectd_plugin_df: true
collectd_plugin_disk: true
collectd_plugin_interface: true
collectd_plugin_load: true
collectd_plugin_memory: true
collectd_plugin_pf: true
collectd_plugin_processes: true
collectd_plugin_swap: true
collectd_plugin_tcpconns: true
collectd_plugin_uptime: true
collectd_plugin_users: true