j.h. Using Zabbix 6 I ran into the same problem. It seems for some reason or another that the RabbitMQ: Get nodes does not handle the macro HOST.NAME correctly. After replacing the macro with a hard coded name it started working.
Instead of
I have
have no idea why the {HOST.NAME} returns the visible name
Instead of
Code:
web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"]
Code:
web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@production-server?memory=true"]

Comment