this is an attempt to shutdown the amount of celery queue logging collectd does. *FIXME*

This commit is contained in:
Stephen Smoogen 2020-06-06 12:42:00 -04:00
parent 16875c357d
commit 960bd93c15
2 changed files with 14 additions and 0 deletions

View file

@ -59,6 +59,18 @@ LoadPlugin vmem
IgnoreSelected true
</Plugin>
<Plugin python>
<Module "collectd_rabbitmq.collectd_plugin">
<Ignore "queue">
Regex "celery%40"
Regex "celeryev.[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
Regex "^federation%3A%20"
Regex "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
</Ignore>
</Module>
</Plugin>
{% if ansible_distribution_major_version|default(0)|int == 6 and ansible_distribution == "RedHat" %}
<Plugin hddtemp>
TranslateDevicename false

View file

@ -13,6 +13,8 @@ LoadPlugin python
VHostPrefix "stg"
{% endif %}
<Ignore "queue">
Regex "celery%40"
Regex "celeryev.[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
Regex "^federation%3A%20"
Regex "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
</Ignore>