There is a weird thing with this template. Dependent LLD rules execute every time master items get JSON from Rabbit API, i.e. every minute. It's not good for performance. Maybe add 2-step preprocessing to the LLD rule:
1. JS: return JSON.stringify(JSON.parse(value),['type','name','vhost'])
(for Exchanges discovery, ['node','name','vhost'] for Queues discovery)
2. Discard unchanged with heartbeat 1h
1. JS: return JSON.stringify(JSON.parse(value),['type','name','vhost'])
(for Exchanges discovery, ['node','name','vhost'] for Queues discovery)
2. Discard unchanged with heartbeat 1h
Comment