├── Alert_scripts ├── README.md ├── qy_wechat.py ├── weixin.py └── weixin_cli.py ├── Centec ├── README.md └── mibs │ └── centec_E580.mib ├── ESXi6.0 ├── README.md ├── mibs │ ├── VMWARE-OBSOLETE-MIB.mib │ └── VMWARE-RESOURCES-MIB.mib └── zbx_templates │ └── zbx_export_esxi6.0_template.xml ├── FortiGate ├── README.md ├── mibs │ ├── FORTINET-CORE-MIB.mib │ └── FORTINET-FORTIGATE-MIB.mib └── zbx_templates │ └── zbx_export_fortrgate_1000c.xml ├── HAProxy ├── README.md └── custom_scripts │ └── haproxy.py ├── Huawei └── README.md ├── MySQL ├── README.md ├── custom_scripts │ ├── mysql_perf_monitor.py │ └── mysql_perf_monitor.sh ├── user_params │ └── userparameter_mysql.conf └── zbx_templates │ ├── zbx_export_mysql_master.xml │ ├── zbx_export_mysql_slave.xml │ └── zbx_export_pymysql.xml ├── NFS_IO ├── README.md ├── custom_scripts │ └── nfsio_perf_monitor.sh ├── user_params │ └── userparameter_nfs.conf └── zbx_templates │ └── zbx_export_nfs_state.xml ├── NGINX ├── README.md ├── custom_scripts │ └── nginx_perf_monitor.sh ├── user_params │ └── userparameter_nginx.conf └── zbx_templates │ └── zbx_export_nginx.xml ├── NVIDIA_K1 ├── README.md ├── custom_scripts │ └── GPU.py ├── user_params │ └── userparameter_gpu.conf └── zbx_templates │ └── zbx_export_exsi_gpu.xml ├── Netscaler ├── README.md └── mibs │ └── NS-ROOT-MIB.mib ├── README.md ├── TCP_Statement_Machine ├── README.md ├── custom_scripts │ └── tcp_stat.sh ├── user_params │ └── userparameter_tcp_stat.conf └── zbx_templates │ └── zbx_export_tcp_statement.xml └── Web_URL └── url.py /Alert_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Alert_scripts/README.md -------------------------------------------------------------------------------- /Alert_scripts/qy_wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Alert_scripts/qy_wechat.py -------------------------------------------------------------------------------- /Alert_scripts/weixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Alert_scripts/weixin.py -------------------------------------------------------------------------------- /Alert_scripts/weixin_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Alert_scripts/weixin_cli.py -------------------------------------------------------------------------------- /Centec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Centec/README.md -------------------------------------------------------------------------------- /Centec/mibs/centec_E580.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Centec/mibs/centec_E580.mib -------------------------------------------------------------------------------- /ESXi6.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/ESXi6.0/README.md -------------------------------------------------------------------------------- /ESXi6.0/mibs/VMWARE-OBSOLETE-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/ESXi6.0/mibs/VMWARE-OBSOLETE-MIB.mib -------------------------------------------------------------------------------- /ESXi6.0/mibs/VMWARE-RESOURCES-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/ESXi6.0/mibs/VMWARE-RESOURCES-MIB.mib -------------------------------------------------------------------------------- /ESXi6.0/zbx_templates/zbx_export_esxi6.0_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/ESXi6.0/zbx_templates/zbx_export_esxi6.0_template.xml -------------------------------------------------------------------------------- /FortiGate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/FortiGate/README.md -------------------------------------------------------------------------------- /FortiGate/mibs/FORTINET-CORE-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/FortiGate/mibs/FORTINET-CORE-MIB.mib -------------------------------------------------------------------------------- /FortiGate/mibs/FORTINET-FORTIGATE-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/FortiGate/mibs/FORTINET-FORTIGATE-MIB.mib -------------------------------------------------------------------------------- /FortiGate/zbx_templates/zbx_export_fortrgate_1000c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/FortiGate/zbx_templates/zbx_export_fortrgate_1000c.xml -------------------------------------------------------------------------------- /HAProxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/HAProxy/README.md -------------------------------------------------------------------------------- /HAProxy/custom_scripts/haproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/HAProxy/custom_scripts/haproxy.py -------------------------------------------------------------------------------- /Huawei/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Huawei/README.md -------------------------------------------------------------------------------- /MySQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/README.md -------------------------------------------------------------------------------- /MySQL/custom_scripts/mysql_perf_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/custom_scripts/mysql_perf_monitor.py -------------------------------------------------------------------------------- /MySQL/custom_scripts/mysql_perf_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/custom_scripts/mysql_perf_monitor.sh -------------------------------------------------------------------------------- /MySQL/user_params/userparameter_mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/user_params/userparameter_mysql.conf -------------------------------------------------------------------------------- /MySQL/zbx_templates/zbx_export_mysql_master.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/zbx_templates/zbx_export_mysql_master.xml -------------------------------------------------------------------------------- /MySQL/zbx_templates/zbx_export_mysql_slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/zbx_templates/zbx_export_mysql_slave.xml -------------------------------------------------------------------------------- /MySQL/zbx_templates/zbx_export_pymysql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/MySQL/zbx_templates/zbx_export_pymysql.xml -------------------------------------------------------------------------------- /NFS_IO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NFS_IO/README.md -------------------------------------------------------------------------------- /NFS_IO/custom_scripts/nfsio_perf_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NFS_IO/custom_scripts/nfsio_perf_monitor.sh -------------------------------------------------------------------------------- /NFS_IO/user_params/userparameter_nfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NFS_IO/user_params/userparameter_nfs.conf -------------------------------------------------------------------------------- /NFS_IO/zbx_templates/zbx_export_nfs_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NFS_IO/zbx_templates/zbx_export_nfs_state.xml -------------------------------------------------------------------------------- /NGINX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NGINX/README.md -------------------------------------------------------------------------------- /NGINX/custom_scripts/nginx_perf_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NGINX/custom_scripts/nginx_perf_monitor.sh -------------------------------------------------------------------------------- /NGINX/user_params/userparameter_nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NGINX/user_params/userparameter_nginx.conf -------------------------------------------------------------------------------- /NGINX/zbx_templates/zbx_export_nginx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NGINX/zbx_templates/zbx_export_nginx.xml -------------------------------------------------------------------------------- /NVIDIA_K1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NVIDIA_K1/README.md -------------------------------------------------------------------------------- /NVIDIA_K1/custom_scripts/GPU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NVIDIA_K1/custom_scripts/GPU.py -------------------------------------------------------------------------------- /NVIDIA_K1/user_params/userparameter_gpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NVIDIA_K1/user_params/userparameter_gpu.conf -------------------------------------------------------------------------------- /NVIDIA_K1/zbx_templates/zbx_export_exsi_gpu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/NVIDIA_K1/zbx_templates/zbx_export_exsi_gpu.xml -------------------------------------------------------------------------------- /Netscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Netscaler/README.md -------------------------------------------------------------------------------- /Netscaler/mibs/NS-ROOT-MIB.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Netscaler/mibs/NS-ROOT-MIB.mib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/README.md -------------------------------------------------------------------------------- /TCP_Statement_Machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/TCP_Statement_Machine/README.md -------------------------------------------------------------------------------- /TCP_Statement_Machine/custom_scripts/tcp_stat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/TCP_Statement_Machine/custom_scripts/tcp_stat.sh -------------------------------------------------------------------------------- /TCP_Statement_Machine/user_params/userparameter_tcp_stat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/TCP_Statement_Machine/user_params/userparameter_tcp_stat.conf -------------------------------------------------------------------------------- /TCP_Statement_Machine/zbx_templates/zbx_export_tcp_statement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/TCP_Statement_Machine/zbx_templates/zbx_export_tcp_statement.xml -------------------------------------------------------------------------------- /Web_URL/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumaojun03/zabbix_monitor/HEAD/Web_URL/url.py --------------------------------------------------------------------------------