├── Dockerfile ├── LICENSE ├── README.md ├── etc ├── sudoers.d │ └── zabbix ├── supervisor │ ├── conf.d │ │ └── supervisor.conf │ └── supervisord.conf └── zabbix │ ├── scripts │ ├── discovery │ │ ├── disks │ │ ├── docker-containers │ │ └── docker-processes │ ├── docker │ └── trapper │ │ ├── disks-discovery │ │ ├── docker │ │ ├── docker-containers-discovery │ │ ├── docker-processes-discovery │ │ └── docker.conf │ ├── templates │ ├── template_coreos.xml │ └── template_docker.xml │ ├── zabbix_agentd.conf │ └── zabbix_agentd.conf.d │ ├── userparameter_custom.conf │ └── userparameter_docker.conf ├── files ├── coreos.patch ├── fleet │ ├── zabbix-agent │ └── zabbix-agent.service ├── systemd │ └── zabbix-agent.service └── zabbix-agent_2.2.7+dfsg-1.1_amd64.deb └── run.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/README.md -------------------------------------------------------------------------------- /etc/sudoers.d/zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/sudoers.d/zabbix -------------------------------------------------------------------------------- /etc/supervisor/conf.d/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/supervisor/conf.d/supervisor.conf -------------------------------------------------------------------------------- /etc/supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/supervisor/supervisord.conf -------------------------------------------------------------------------------- /etc/zabbix/scripts/discovery/disks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/discovery/disks -------------------------------------------------------------------------------- /etc/zabbix/scripts/discovery/docker-containers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/discovery/docker-containers -------------------------------------------------------------------------------- /etc/zabbix/scripts/discovery/docker-processes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/discovery/docker-processes -------------------------------------------------------------------------------- /etc/zabbix/scripts/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/docker -------------------------------------------------------------------------------- /etc/zabbix/scripts/trapper/disks-discovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/trapper/disks-discovery -------------------------------------------------------------------------------- /etc/zabbix/scripts/trapper/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/trapper/docker -------------------------------------------------------------------------------- /etc/zabbix/scripts/trapper/docker-containers-discovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/trapper/docker-containers-discovery -------------------------------------------------------------------------------- /etc/zabbix/scripts/trapper/docker-processes-discovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/trapper/docker-processes-discovery -------------------------------------------------------------------------------- /etc/zabbix/scripts/trapper/docker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/scripts/trapper/docker.conf -------------------------------------------------------------------------------- /etc/zabbix/templates/template_coreos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/templates/template_coreos.xml -------------------------------------------------------------------------------- /etc/zabbix/templates/template_docker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/templates/template_docker.xml -------------------------------------------------------------------------------- /etc/zabbix/zabbix_agentd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/zabbix_agentd.conf -------------------------------------------------------------------------------- /etc/zabbix/zabbix_agentd.conf.d/userparameter_custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/zabbix_agentd.conf.d/userparameter_custom.conf -------------------------------------------------------------------------------- /etc/zabbix/zabbix_agentd.conf.d/userparameter_docker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/etc/zabbix/zabbix_agentd.conf.d/userparameter_docker.conf -------------------------------------------------------------------------------- /files/coreos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/files/coreos.patch -------------------------------------------------------------------------------- /files/fleet/zabbix-agent: -------------------------------------------------------------------------------- 1 | SERVER=server.my.domain 2 | HOSTMETADATA=mycluster 3 | -------------------------------------------------------------------------------- /files/fleet/zabbix-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/files/fleet/zabbix-agent.service -------------------------------------------------------------------------------- /files/systemd/zabbix-agent.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/files/systemd/zabbix-agent.service -------------------------------------------------------------------------------- /files/zabbix-agent_2.2.7+dfsg-1.1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/files/zabbix-agent_2.2.7+dfsg-1.1_amd64.deb -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhuisgen/docker-zabbix-coreos/HEAD/run.sh --------------------------------------------------------------------------------