mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 20:58:14 -05:00
12 lines
265 B
Go
12 lines
265 B
Go
package model
|
|
|
|
// MonitorHistory 历史监控记录
|
|
type MonitorHistory struct {
|
|
Common
|
|
MonitorID uint64
|
|
AvgDelay float32 // 平均延迟,毫秒
|
|
Up uint64 // 检查状态良好计数
|
|
Down uint64 // 检查状态异常计数
|
|
Data string
|
|
}
|