ywlianghang / mycheck

用于针对数据库的深度巡检。目前支持MySQL
Apache License 2.0
44 stars 18 forks source link

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

Open okay456okay opened 2 years ago

okay456okay commented 2 years ago

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

919927181 commented 10 months ago

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))) }