美文网首页Python,web开发,前端技术分享码农的世界大数据 爬虫Python AI Sql
Python编写一个高性能可扩展支持自定义的插件式监控系统?

Python编写一个高性能可扩展支持自定义的插件式监控系统?

作者: IT派森 | 来源:发表于2019-07-12 23:00 被阅读1次

    项目简介:

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

    项目思路:


    项目结构:

    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
    

    Python学习q-u-n七八四,七五八,二一四教程视频,工具,各类实战操作分享

    相关文章

      网友评论

        本文标题:Python编写一个高性能可扩展支持自定义的插件式监控系统?

        本文链接:https://www.haomeiwen.com/subject/ubmdkctx.html