ywlianghang/mycheck

借鉴美团巡检系统经验,完善系统功能

Opened this issue · 1 comments

美团数据库巡检系统:https://tech.meituan.com/2020/06/04/mysql-detection-system.html
其中一些巡检项的确挺好的,比如备份、gtid、自增值等。这些是否可以慢慢完善?

InspectionItem\databaseProperty.go 第335行
// liyanjing2023-12-27,先判断是否为nil,若不判断则会报错 panic: interface conversion: interface {} is nil, not int64
if v["AUTO_INCREMENT"] != nil {
e["autoIncrement"] = strconv.Itoa(int(v["AUTO_INCREMENT"].(int64)))
}