I have Zabbix running on a Pi and this is working fine. I'm monitoring some other Pi's via Agent2 and my Synology via SNMP.
Docker is running on my Synology and I want to monitor my containers. I already tried with the agent2 docker container, but don't know if this can/will work. Or it is to install agent2 directly to DSM7 (OS on Synology)?
I thinks the bast way is to do this via another docker container, but it's not clear to me if I need additional paramaters.
I used this command:
(192.168.0.87 is my Pi were Zabbix is running)
Docker is running on my Synology and I want to monitor my containers. I already tried with the agent2 docker container, but don't know if this can/will work. Or it is to install agent2 directly to DSM7 (OS on Synology)?
I thinks the bast way is to do this via another docker container, but it's not clear to me if I need additional paramaters.
I used this command:
Code:
sudo docker run --name zabbix-agent -e ZBX_HOSTNAME="syno_docker" -e ZBX_SERVER_HOST="192.168.0.87" -d zabbix/zabbix-agent2
Comment