├── .gitignore ├── LICENSE ├── README.md ├── module ├── protobix │ ├── __init__.py │ ├── datacontainer.py │ ├── senderexception.py │ └── senderprotocol.py └── setup.py ├── scripts ├── areca_volumes.cron ├── areca_volumes.pl ├── cloudera_hadoop.py ├── couchbase.py ├── dhcp_pools.cron ├── dhcp_pools.pl ├── diskstats.py ├── elasticsearch_server.py ├── etcd2_server.py ├── getZookeeperInfo.py ├── haproxy_server.py ├── hekad.py ├── hp_hard.cron ├── hp_hard_fan.pl ├── hp_hard_hpiml.pl ├── hp_hard_pwr.pl ├── hp_hard_raid.pl ├── hp_hard_temp.pl ├── ldap_replication.sh ├── ldap_server.sh ├── memcached_server.py ├── mysql_server.py ├── nginx_check.py ├── nginx_check.sh ├── pacemaker_cluster.py ├── php_fpm.py ├── rabbitmq_server.py ├── rabbitmq_server.yaml ├── redis_server.py ├── ssl_certificates_check.py ├── ssl_certificates_check.yaml ├── supervisord.py ├── trafficserver.py ├── varnish.py └── varnish4.py ├── templates ├── areca_volumes.xml ├── cassandra.xml ├── chef_client.xml ├── cloudera_hadoop.xml ├── couchbase.xml ├── dhcp_pools.xml ├── elasticsearch_server.xml ├── etcd2.xml ├── haproxy_server.xml ├── hekad.xml ├── hp_hard.xml ├── hp_hard_fan.xml ├── hp_hard_pwr.xml ├── hp_hard_raid.xml ├── hp_hard_temp.xml ├── memcached_server.xml ├── mysql_server.xml ├── nginx_server.xml ├── pacemaker_cluster.xml ├── php-fpm.xml ├── php_fpm.xml ├── rabbitmq.xml ├── redis_server.xml ├── ssl_certificates.xml ├── supervisord.xml ├── trafficserver.xml ├── varnish.xml ├── zbx_cisco_templates.xml └── zookeeper_servers.xml ├── zabbix_agentd.conf.d ├── cloudera_hadoop.conf ├── couchbase.conf ├── elasticsearch_server.conf ├── haproxy_server.conf ├── memcached_server.conf ├── mysql_server.conf ├── pacemaker_cluster.conf ├── php-fpm.conf ├── rabbitmq.conf ├── redis_server.conf ├── supervisord.conf ├── trafficserver.conf └── varnish.conf └── zabbix_alert.d └── slack.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/README.md -------------------------------------------------------------------------------- /module/protobix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/module/protobix/__init__.py -------------------------------------------------------------------------------- /module/protobix/datacontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/module/protobix/datacontainer.py -------------------------------------------------------------------------------- /module/protobix/senderexception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/module/protobix/senderexception.py -------------------------------------------------------------------------------- /module/protobix/senderprotocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/module/protobix/senderprotocol.py -------------------------------------------------------------------------------- /module/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/module/setup.py -------------------------------------------------------------------------------- /scripts/areca_volumes.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/areca_volumes.cron -------------------------------------------------------------------------------- /scripts/areca_volumes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/areca_volumes.pl -------------------------------------------------------------------------------- /scripts/cloudera_hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/cloudera_hadoop.py -------------------------------------------------------------------------------- /scripts/couchbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/couchbase.py -------------------------------------------------------------------------------- /scripts/dhcp_pools.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/dhcp_pools.cron -------------------------------------------------------------------------------- /scripts/dhcp_pools.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/dhcp_pools.pl -------------------------------------------------------------------------------- /scripts/diskstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/diskstats.py -------------------------------------------------------------------------------- /scripts/elasticsearch_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/elasticsearch_server.py -------------------------------------------------------------------------------- /scripts/etcd2_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/etcd2_server.py -------------------------------------------------------------------------------- /scripts/getZookeeperInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/getZookeeperInfo.py -------------------------------------------------------------------------------- /scripts/haproxy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/haproxy_server.py -------------------------------------------------------------------------------- /scripts/hekad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hekad.py -------------------------------------------------------------------------------- /scripts/hp_hard.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard.cron -------------------------------------------------------------------------------- /scripts/hp_hard_fan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard_fan.pl -------------------------------------------------------------------------------- /scripts/hp_hard_hpiml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard_hpiml.pl -------------------------------------------------------------------------------- /scripts/hp_hard_pwr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard_pwr.pl -------------------------------------------------------------------------------- /scripts/hp_hard_raid.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard_raid.pl -------------------------------------------------------------------------------- /scripts/hp_hard_temp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/hp_hard_temp.pl -------------------------------------------------------------------------------- /scripts/ldap_replication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/ldap_replication.sh -------------------------------------------------------------------------------- /scripts/ldap_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/ldap_server.sh -------------------------------------------------------------------------------- /scripts/memcached_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/memcached_server.py -------------------------------------------------------------------------------- /scripts/mysql_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/mysql_server.py -------------------------------------------------------------------------------- /scripts/nginx_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/nginx_check.py -------------------------------------------------------------------------------- /scripts/nginx_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/nginx_check.sh -------------------------------------------------------------------------------- /scripts/pacemaker_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/pacemaker_cluster.py -------------------------------------------------------------------------------- /scripts/php_fpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/php_fpm.py -------------------------------------------------------------------------------- /scripts/rabbitmq_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/rabbitmq_server.py -------------------------------------------------------------------------------- /scripts/rabbitmq_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/rabbitmq_server.yaml -------------------------------------------------------------------------------- /scripts/redis_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/redis_server.py -------------------------------------------------------------------------------- /scripts/ssl_certificates_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/ssl_certificates_check.py -------------------------------------------------------------------------------- /scripts/ssl_certificates_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/ssl_certificates_check.yaml -------------------------------------------------------------------------------- /scripts/supervisord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/supervisord.py -------------------------------------------------------------------------------- /scripts/trafficserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/trafficserver.py -------------------------------------------------------------------------------- /scripts/varnish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/varnish.py -------------------------------------------------------------------------------- /scripts/varnish4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/scripts/varnish4.py -------------------------------------------------------------------------------- /templates/areca_volumes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/areca_volumes.xml -------------------------------------------------------------------------------- /templates/cassandra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/cassandra.xml -------------------------------------------------------------------------------- /templates/chef_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/chef_client.xml -------------------------------------------------------------------------------- /templates/cloudera_hadoop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/cloudera_hadoop.xml -------------------------------------------------------------------------------- /templates/couchbase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/couchbase.xml -------------------------------------------------------------------------------- /templates/dhcp_pools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/dhcp_pools.xml -------------------------------------------------------------------------------- /templates/elasticsearch_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/elasticsearch_server.xml -------------------------------------------------------------------------------- /templates/etcd2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/etcd2.xml -------------------------------------------------------------------------------- /templates/haproxy_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/haproxy_server.xml -------------------------------------------------------------------------------- /templates/hekad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hekad.xml -------------------------------------------------------------------------------- /templates/hp_hard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hp_hard.xml -------------------------------------------------------------------------------- /templates/hp_hard_fan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hp_hard_fan.xml -------------------------------------------------------------------------------- /templates/hp_hard_pwr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hp_hard_pwr.xml -------------------------------------------------------------------------------- /templates/hp_hard_raid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hp_hard_raid.xml -------------------------------------------------------------------------------- /templates/hp_hard_temp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/hp_hard_temp.xml -------------------------------------------------------------------------------- /templates/memcached_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/memcached_server.xml -------------------------------------------------------------------------------- /templates/mysql_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/mysql_server.xml -------------------------------------------------------------------------------- /templates/nginx_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/nginx_server.xml -------------------------------------------------------------------------------- /templates/pacemaker_cluster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/pacemaker_cluster.xml -------------------------------------------------------------------------------- /templates/php-fpm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/php-fpm.xml -------------------------------------------------------------------------------- /templates/php_fpm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/php_fpm.xml -------------------------------------------------------------------------------- /templates/rabbitmq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/rabbitmq.xml -------------------------------------------------------------------------------- /templates/redis_server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/redis_server.xml -------------------------------------------------------------------------------- /templates/ssl_certificates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/ssl_certificates.xml -------------------------------------------------------------------------------- /templates/supervisord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/supervisord.xml -------------------------------------------------------------------------------- /templates/trafficserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/trafficserver.xml -------------------------------------------------------------------------------- /templates/varnish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/varnish.xml -------------------------------------------------------------------------------- /templates/zbx_cisco_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/zbx_cisco_templates.xml -------------------------------------------------------------------------------- /templates/zookeeper_servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/templates/zookeeper_servers.xml -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/cloudera_hadoop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/cloudera_hadoop.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/couchbase.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/couchbase.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/elasticsearch_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/elasticsearch_server.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/haproxy_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/haproxy_server.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/memcached_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/memcached_server.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/mysql_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/mysql_server.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/pacemaker_cluster.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/pacemaker_cluster.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/php-fpm.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/rabbitmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/rabbitmq.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/redis_server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/redis_server.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/supervisord.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/trafficserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/trafficserver.conf -------------------------------------------------------------------------------- /zabbix_agentd.conf.d/varnish.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_agentd.conf.d/varnish.conf -------------------------------------------------------------------------------- /zabbix_alert.d/slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbfavre/python-zabbix/HEAD/zabbix_alert.d/slack.sh --------------------------------------------------------------------------------