mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
11 lines
303 B
Go
11 lines
303 B
Go
|
package model
|
||
|
|
||
|
type ServiceInfos struct {
|
||
|
ServiceID uint64 `json:"monitor_id"`
|
||
|
ServerID uint64 `json:"server_id"`
|
||
|
ServiceName string `json:"monitor_name"`
|
||
|
ServerName string `json:"server_name"`
|
||
|
CreatedAt []int64 `json:"created_at"`
|
||
|
AvgDelay []float32 `json:"avg_delay"`
|
||
|
}
|