您现在的位置是:首页 > 文章详情

项目实战_Python.编写一个高性能可扩展支持自定义的插件式监控系统?

日期:2017-02-15点击:711

项目简介:

说明: 主要用于集中化业务主动监控,支持任意自定义PY检测插件,适用于测试/正式环境业务联调检测,后端采用Python实现,具体实现代码请阅读代码.


项目思路:

wKiom1ikSQ6Q-j7yAADmo0cR5D0199.png


项目结构:

xmzoomeye-agent ├── app │   ├── conf │   │   ├── default.ini │   │   ├── __init__.py │   │   └── logging.ini │   ├── core │   │   ├── __init__.py │   │   ├── __init__.pyc │   │   ├── main.py │   │   └── main.pyc │   ├── __init__.py │   ├── __init__.pyc │   ├── libs │   │   ├── daemonize.py │   │   ├── daemonize.pyc │   │   ├── __init__.py │   │   ├── __init__.pyc │   │   ├── runutils.py │   │   └── runutils.pyc │   ├── plugins │   │   ├── __init__.py │   │   ├── __init__.pyc │   └── tests │       └── __init__.py ├── bin │   ├── __init__.py │   ├── restart_service.sh │   ├── start_service.sh │   └── stop_service.sh ├── ChangeLog.txt ├── docs │   ├── default.ini │   ├── designidea │   │   ├── mindmap.png │   │   └── notepad.txt │   ├── __init__.py │   └── logging.ini ├── LICENSE.txt ├── logs │   ├── xmzoomeye-agent-error.log │   ├── xmzoomeye-agent-info.log │   └── xmzoomeye-agent.pid ├── README ├── requirements.txt ├── restart_service.sh ├── setup.py ├── start_service.sh ├── stop_service.sh └── xmzoomeye-agent xmzoomeye-alert ├── app │   ├── conf │   │   ├── default.ini │   │   ├── __init__.py │   │   └── logging.ini │   ├── core │   │   ├── __init__.py │   │   ├── __init__.pyc │   │   ├── main.py │   │   └── main.pyc │   ├── __init__.py │   ├── __init__.pyc │   └── libs │       ├── alarm │       │   ├── api.py │       │   ├── __init__.py │       │   ├── __init__.pyc │       │   ├── mail.py │       │   ├── sms.py │       │   └── weixin.py │       ├── daemonize.py │       ├── daemonize.pyc │       ├── __init__.py │       ├── __init__.pyc │       ├── runutils.py │       └── runutils.pyc ├── bin │   ├── __init__.py │   ├── restart_service.sh │   ├── start_service.sh │   └── stop_service.sh ├── ChangeLog.txt ├── docs │   ├── default.ini │   ├── designidea │   │   ├── mindmap.png │   │   └── notepad.txt │   ├── __init__.py │   └── logging.ini ├── LICENSE.txt ├── logs │   ├── xmzoomeye-alert-error.log │   ├── xmzoomeye-alert-info.log │   └── xmzoomeye-alert.pid ├── README ├── requirements.txt ├── restart_service.sh ├── setup.py ├── start_service.sh ├── stop_service.sh └── xmzoomeye-alert


项目地址:

xmzoomeye_agent: https://github.com/xmdevops/xmzoomeye_agent

xmzoomeye_alert: xmzoomeye_alert: https://github.com/xmdevops/xmzoomeye_alert



原文链接:https://blog.51cto.com/xmdevops/1898233
关注公众号

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。

持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。

转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。

文章评论

共有0条评论来说两句吧...

文章二维码

扫描即可查看该文章

点击排行

推荐阅读

最新文章