r/collectd: Add missing processes.conf template

I forgot to `git add` the template file.
jenkins-master
Dustin 2021-10-17 09:13:34 -05:00
parent f3c4b4d174
commit 93bf6593d7
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
{% if collectd_processes|d %}
<Plugin processes>
{% for proc in collectd_processes %}
{% if proc.regex is defined %}
ProcessMatch "{{ proc.name }}" "{{ proc.regex }}"
{% else %}
Process "{{ proc.name }}"
{% endif %}
{% endfor %}
</Plugin>
{% endif %}