├── .gitignore ├── README.md ├── config.yml ├── inspection_report.py ├── modules ├── __init__.py └── sendmail.py ├── pcinfo.txt ├── required.txt └── templates ├── CDN授权信息.md ├── CPU使用情况.md ├── crontab记录.md ├── css.css ├── frame.html ├── frame2.html ├── rclocal记录.md ├── selinux优化情况.md ├── temp ├── CPU使用情况.md ├── crontab记录.md ├── rclocal记录.md ├── selinux优化情况.md ├── 内存使用情况.md ├── 磁盘使用情况.md └── 进程最大打开文件数.md ├── 内存使用情况.md ├── 巡检报告.md ├── 巡检详细数据.md ├── 服务扫描.md ├── 磁盘使用情况.md └── 进程最大打开文件数.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/config.yml -------------------------------------------------------------------------------- /inspection_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/inspection_report.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/modules/sendmail.py -------------------------------------------------------------------------------- /pcinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/pcinfo.txt -------------------------------------------------------------------------------- /required.txt: -------------------------------------------------------------------------------- 1 | paramiko 2 | markdown 3 | pyyaml -------------------------------------------------------------------------------- /templates/CDN授权信息.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/CDN授权信息.md -------------------------------------------------------------------------------- /templates/CPU使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/CPU使用情况.md -------------------------------------------------------------------------------- /templates/crontab记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/crontab记录.md -------------------------------------------------------------------------------- /templates/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/css.css -------------------------------------------------------------------------------- /templates/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/frame.html -------------------------------------------------------------------------------- /templates/frame2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/frame2.html -------------------------------------------------------------------------------- /templates/rclocal记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/rclocal记录.md -------------------------------------------------------------------------------- /templates/selinux优化情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/selinux优化情况.md -------------------------------------------------------------------------------- /templates/temp/CPU使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/CPU使用情况.md -------------------------------------------------------------------------------- /templates/temp/crontab记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/crontab记录.md -------------------------------------------------------------------------------- /templates/temp/rclocal记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/rclocal记录.md -------------------------------------------------------------------------------- /templates/temp/selinux优化情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/selinux优化情况.md -------------------------------------------------------------------------------- /templates/temp/内存使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/内存使用情况.md -------------------------------------------------------------------------------- /templates/temp/磁盘使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/磁盘使用情况.md -------------------------------------------------------------------------------- /templates/temp/进程最大打开文件数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/temp/进程最大打开文件数.md -------------------------------------------------------------------------------- /templates/内存使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/内存使用情况.md -------------------------------------------------------------------------------- /templates/巡检报告.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/巡检报告.md -------------------------------------------------------------------------------- /templates/巡检详细数据.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/服务扫描.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/服务扫描.md -------------------------------------------------------------------------------- /templates/磁盘使用情况.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/磁盘使用情况.md -------------------------------------------------------------------------------- /templates/进程最大打开文件数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongxiaodong/inspection_report/HEAD/templates/进程最大打开文件数.md --------------------------------------------------------------------------------