goProject/trunk/framework/monitorNewMgr/monitorHistory.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

19 lines
350 B
Go

package monitorNewMgr
//历史监控信息
type MonitorHistory struct {
//监控信息
MonitorMessage string
//时间戳
Timestamp int64
}
//new一个监控历史信息
func newMonitorHistory(monitorMessage string, timestamp int64) *MonitorHistory {
return &MonitorHistory{
MonitorMessage: monitorMessage,
Timestamp: timestamp,
}
}