数据库巡检工具,一键巡检Python支持的任何数据库
关于我:
PostgreSQL 分会培训委员会委员
PostgreSQL ACE
Oracle OCM
MySQL OCP 等
make progress every day
设计初衷
主入口代码
# main.py
#!/usr/bin/python3
# -*- coding: UTF-8 -*-
config_file ="db.conf"
if __name__ =="__main__":
# 读取配置文件
config_reader =ReadConfiguration(config_file)
titlename = config_reader.getTitleName()
# 初始化 HTML 样式
report = htmlStyle(config_file)
#操作系统巡检格式渲染
osInspection.os_html_report(report,config_file)
# 初始化数据库连接
connectdb = dbConnection(config_file)
connectdb.connect()
#数据库巡检格式渲染
dbInspection.queryprocess(connectdb,report,config_file)
# 生成 HTML 报告
html_report = report.generate_html_report()
# 断开数据库连接
connectdb.disconnect()
目前样例截图
暂时先放一部分截图,希望阅读的各位可以提一些意见和指正。
欢迎关注我的公众号“developerhonor”,原创技术文章第一时间推送。