Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Hertzbeat | 2,647 | 17 hours ago | 79 | apache-2.0 | Java | |||||
An open source, real-time monitoring tool with custom-monitor and agentless. Web, database, os, middleware, cloudnative, network and more. Aim to monitor everything! | ||||||||||
Prometheusalert | 2,067 | 15 days ago | 10 | April 19, 2021 | 27 | mit | JavaScript | |||
Prometheus Alert是开源的运维告警中心消息转发系统,支持主流的监控系统Prometheus,Zabbix,日志系统Graylog和数据可视化系统Grafana发出的预警消息,支持钉钉,微信,华为云短信,腾讯云短信,腾讯云电话,阿里云短信,阿里云电话等 | ||||||||||
Nagstamon | 369 | 13 days ago | 79 | other | Python | |||||
Nagios status monitor for your desktop. | ||||||||||
Zabbix Rds Monitor | 122 | 7 months ago | 1 | Python | ||||||
aliyun RDS status monitor with zabbix | ||||||||||
Graphtrees | 105 | 6 years ago | ||||||||
此项目当前不再更新,只适用于3.0和3.2版本 | ||||||||||
Zabbix Agent Extensions | 104 | 6 months ago | 3 | gpl-2.0 | Python | |||||
zabbix-agent-extensions | ||||||||||
Container Monitor | 104 | 2 years ago | 3 | mit | ||||||
容器监控方案汇总 | ||||||||||
Zabbix Monitor | 61 | 4 years ago | 2 | Vue | ||||||
monitor system based on zabbix API pyzaabix grafana | ||||||||||
Docker Zabbix | 48 | 6 years ago | 9 | gpl-3.0 | Python | |||||
Add and monitor running docker containers in Zabbix Server | ||||||||||
Monitor_ce | 34 | 6 years ago | 1 | |||||||
OneOaaS Monitor Community Edition |
Description: This script for generating zabbix monthly, weekly, daily monitor item report.
Requirements:
1 zabbix 1.8 version and zabbix's MySQL database need to be installed.
2 python2.4 or laster version need to be installed.
3 MySQLdb , xlwt and xlrd need to be installed.
Usage:
1 Adding the zabbix-report.py script to the zabbix's MySQL database server's crontab.
e.g 01 00 * * * /work/opt/zabbix-report.py
2 Updating the MySQL connection variables in the script:
port=3306
user = 'report_user'
password = 'report_passwd'
database = 'zabbix'
3 Adding the Items into the keys tuple and Item's threshold value in the thre_dic dictionary, for example.
keys = ("cpuload","disk_usage","network_in","network_out")
thre_dic = {"cpuload":15,"disk_usage":85,"network_in":409600,"network_out":409600}