├── .my.cnf ├── README.md ├── bin ├── apc-check.php ├── apc-stats.php ├── arduino.py ├── blacklist.sh ├── check-update.sh ├── hdd_discovery.sh ├── lm_sensors.sh ├── memory-check.sh ├── mysql_discover_tables.sh ├── mysql_print_table_size.sh ├── nginx-check.sh ├── opcache.php ├── pgsql_find_db.sh ├── rabbit.php ├── rabbitmq.sh ├── rabbitmqctl.sh ├── ss_get_mysql_stats.php └── swap_enabled.sh ├── php.ini ├── sudoers.d └── zabbix ├── templates ├── Template App APC.xml ├── Template App Amavisd.xml ├── Template App Apache.xml ├── Template App BIND.xml ├── Template App Brocade HBA.xml ├── Template App ClamAV.xml ├── Template App Dovecot.xml ├── Template App Etherpad.xml ├── Template App Exim.xml ├── Template App Fail2Ban.xml ├── Template App Iptables.xml ├── Template App Monit.xml ├── Template App MySQL Slave.xml ├── Template App MySQLd.xml ├── Template App Nginx.xml ├── Template App Nscd.xml ├── Template App OPcache.xml ├── Template App OpenDKIM.xml ├── Template App OpenVPN.xml ├── Template App PHP.xml ├── Template App Percona XtraBackup.xml ├── Template App Postfix.xml ├── Template App PostgreSQL.xml ├── Template App PowerPath.xml ├── Template App Pure-FTPd.xml ├── Template App RabbitMQ.xml ├── Template App Redis.xml ├── Template App Rserve.xml ├── Template App S.M.A.R.T..xml ├── Template App SPAM Blacklist.xml ├── Template App Solr.xml ├── Template App Spamassassin.xml ├── Template App Squid.xml ├── Template App Unicorn Rails.xml ├── Template App Unicorn.xml ├── Template App Wowza.xml ├── Template App Zabbix Agent - Debian.xml ├── Template App cPanel.xml ├── Template App lm_sensors.xml ├── Template App mdadm.xml ├── Template App php-fpm.xml ├── Template App vsftpd.xml ├── Template Device Back-UPS ES 700G.xml ├── Template Device BigIP F5.xml ├── Template Device Cisco ASA.xml ├── Template Device NetApp.xml ├── Template Device SNMP Generic.xml ├── Template Inventory Debian.xml ├── Template Inventory.xml ├── Template OMSA.xml ├── Template OS CentOS.xml ├── Template OS Debian.xml ├── Template Radware Alteon.xml ├── Template SELinux.xml └── Template Specific Process Memory Usage.xml └── zabbix_agentd.conf.d ├── amavis.conf ├── apc.conf ├── bcu.conf ├── bind.conf ├── cpanel.conf ├── dovecot.conf ├── exim.conf ├── fail2ban.conf ├── inventory.conf ├── iptables.conf ├── linux.conf ├── memory.conf ├── mysql-slave.conf ├── mysql.conf ├── nginx.conf ├── nscd.conf ├── omreport.conf ├── opcache.conf ├── postfix.conf ├── powermt.conf ├── rabbit.conf ├── redis.conf ├── selinux.conf ├── sensors.conf ├── smart.conf ├── squid.conf ├── ups.conf └── yum.conf /.my.cnf: -------------------------------------------------------------------------------- 1 | [client] 2 | user=zabbix 3 | password='ha7jqnlacwefrs' 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/README.md -------------------------------------------------------------------------------- /bin/apc-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/apc-check.php -------------------------------------------------------------------------------- /bin/apc-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/apc-stats.php -------------------------------------------------------------------------------- /bin/arduino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/arduino.py -------------------------------------------------------------------------------- /bin/blacklist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/blacklist.sh -------------------------------------------------------------------------------- /bin/check-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/check-update.sh -------------------------------------------------------------------------------- /bin/hdd_discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/hdd_discovery.sh -------------------------------------------------------------------------------- /bin/lm_sensors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/lm_sensors.sh -------------------------------------------------------------------------------- /bin/memory-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/memory-check.sh -------------------------------------------------------------------------------- /bin/mysql_discover_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/mysql_discover_tables.sh -------------------------------------------------------------------------------- /bin/mysql_print_table_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/mysql_print_table_size.sh -------------------------------------------------------------------------------- /bin/nginx-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/nginx-check.sh -------------------------------------------------------------------------------- /bin/opcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/opcache.php -------------------------------------------------------------------------------- /bin/pgsql_find_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/pgsql_find_db.sh -------------------------------------------------------------------------------- /bin/rabbit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/rabbit.php -------------------------------------------------------------------------------- /bin/rabbitmq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/rabbitmq.sh -------------------------------------------------------------------------------- /bin/rabbitmqctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/rabbitmqctl.sh -------------------------------------------------------------------------------- /bin/ss_get_mysql_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/ss_get_mysql_stats.php -------------------------------------------------------------------------------- /bin/swap_enabled.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/bin/swap_enabled.sh -------------------------------------------------------------------------------- /php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/php.ini -------------------------------------------------------------------------------- /sudoers.d/zabbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/sudoers.d/zabbix -------------------------------------------------------------------------------- /templates/Template App APC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App APC.xml -------------------------------------------------------------------------------- /templates/Template App Amavisd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Amavisd.xml -------------------------------------------------------------------------------- /templates/Template App Apache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Apache.xml -------------------------------------------------------------------------------- /templates/Template App BIND.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App BIND.xml -------------------------------------------------------------------------------- /templates/Template App Brocade HBA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Brocade HBA.xml -------------------------------------------------------------------------------- /templates/Template App ClamAV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App ClamAV.xml -------------------------------------------------------------------------------- /templates/Template App Dovecot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Dovecot.xml -------------------------------------------------------------------------------- /templates/Template App Etherpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Etherpad.xml -------------------------------------------------------------------------------- /templates/Template App Exim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Exim.xml -------------------------------------------------------------------------------- /templates/Template App Fail2Ban.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Fail2Ban.xml -------------------------------------------------------------------------------- /templates/Template App Iptables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Iptables.xml -------------------------------------------------------------------------------- /templates/Template App Monit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Monit.xml -------------------------------------------------------------------------------- /templates/Template App MySQL Slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App MySQL Slave.xml -------------------------------------------------------------------------------- /templates/Template App MySQLd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App MySQLd.xml -------------------------------------------------------------------------------- /templates/Template App Nginx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Nginx.xml -------------------------------------------------------------------------------- /templates/Template App Nscd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Nscd.xml -------------------------------------------------------------------------------- /templates/Template App OPcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App OPcache.xml -------------------------------------------------------------------------------- /templates/Template App OpenDKIM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App OpenDKIM.xml -------------------------------------------------------------------------------- /templates/Template App OpenVPN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App OpenVPN.xml -------------------------------------------------------------------------------- /templates/Template App PHP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App PHP.xml -------------------------------------------------------------------------------- /templates/Template App Percona XtraBackup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Percona XtraBackup.xml -------------------------------------------------------------------------------- /templates/Template App Postfix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Postfix.xml -------------------------------------------------------------------------------- /templates/Template App PostgreSQL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App PostgreSQL.xml -------------------------------------------------------------------------------- /templates/Template App PowerPath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App PowerPath.xml -------------------------------------------------------------------------------- /templates/Template App Pure-FTPd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Pure-FTPd.xml -------------------------------------------------------------------------------- /templates/Template App RabbitMQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App RabbitMQ.xml -------------------------------------------------------------------------------- /templates/Template App Redis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Redis.xml -------------------------------------------------------------------------------- /templates/Template App Rserve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Rserve.xml -------------------------------------------------------------------------------- /templates/Template App S.M.A.R.T..xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App S.M.A.R.T..xml -------------------------------------------------------------------------------- /templates/Template App SPAM Blacklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App SPAM Blacklist.xml -------------------------------------------------------------------------------- /templates/Template App Solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Solr.xml -------------------------------------------------------------------------------- /templates/Template App Spamassassin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Spamassassin.xml -------------------------------------------------------------------------------- /templates/Template App Squid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Squid.xml -------------------------------------------------------------------------------- /templates/Template App Unicorn Rails.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Unicorn Rails.xml -------------------------------------------------------------------------------- /templates/Template App Unicorn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Unicorn.xml -------------------------------------------------------------------------------- /templates/Template App Wowza.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Wowza.xml -------------------------------------------------------------------------------- /templates/Template App Zabbix Agent - Debian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App Zabbix Agent - Debian.xml -------------------------------------------------------------------------------- /templates/Template App cPanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App cPanel.xml -------------------------------------------------------------------------------- /templates/Template App lm_sensors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App lm_sensors.xml -------------------------------------------------------------------------------- /templates/Template App mdadm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App mdadm.xml -------------------------------------------------------------------------------- /templates/Template App php-fpm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App php-fpm.xml -------------------------------------------------------------------------------- /templates/Template App vsftpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template App vsftpd.xml -------------------------------------------------------------------------------- /templates/Template Device Back-UPS ES 700G.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Device Back-UPS ES 700G.xml -------------------------------------------------------------------------------- /templates/Template Device BigIP F5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Device BigIP F5.xml -------------------------------------------------------------------------------- /templates/Template Device Cisco ASA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Device Cisco ASA.xml -------------------------------------------------------------------------------- /templates/Template Device NetApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Device NetApp.xml -------------------------------------------------------------------------------- /templates/Template Device SNMP Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Device SNMP Generic.xml -------------------------------------------------------------------------------- /templates/Template Inventory Debian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Inventory Debian.xml -------------------------------------------------------------------------------- /templates/Template Inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Inventory.xml -------------------------------------------------------------------------------- /templates/Template OMSA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template OMSA.xml -------------------------------------------------------------------------------- /templates/Template OS CentOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template OS CentOS.xml -------------------------------------------------------------------------------- /templates/Template OS Debian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template OS Debian.xml -------------------------------------------------------------------------------- /templates/Template Radware Alteon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Radware Alteon.xml -------------------------------------------------------------------------------- /templates/Template SELinux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template SELinux.xml -------------------------------------------------------------------------------- /templates/Template Specific Process Memory Usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/templates/Template Specific Process Memory Usage.xml -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/amavis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/amavis.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/apc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/apc.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/bcu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/bcu.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/bind.conf: -------------------------------------------------------------------------------- 1 | UserParameter=bind.version, named -v -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/cpanel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/cpanel.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/dovecot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/dovecot.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/exim.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/exim.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/fail2ban.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/fail2ban.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/inventory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/inventory.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/iptables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/iptables.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/linux.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/memory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/memory.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/mysql-slave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/mysql-slave.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/mysql.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/nginx.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/nscd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/nscd.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/omreport.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/omreport.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/opcache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/opcache.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/postfix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/postfix.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/powermt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/powermt.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/rabbit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/rabbit.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/redis.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/selinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/selinux.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/sensors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/sensors.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/smart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/smart.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/squid.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/ups.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/ups.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/yum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecamels/zabbix/HEAD/zabbix_agentd.conf.d/yum.conf --------------------------------------------------------------------------------