nezha/model/monitor_history.go

12 lines
265 B
Go
Raw Normal View History

package model
2022-04-11 10:51:02 -04:00
// MonitorHistory 历史监控记录
type MonitorHistory struct {
Common
2022-10-12 11:06:25 -04:00
MonitorID uint64
AvgDelay float32 // 平均延迟,毫秒
Up uint64 // 检查状态良好计数
Down uint64 // 检查状态异常计数
Data string
}