mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
13 lines
222 B
Go
13 lines
222 B
Go
|
package model
|
||
|
|
||
|
type ServiceItemResponse struct {
|
||
|
Monitor Monitor
|
||
|
TotalUp uint64
|
||
|
TotalDown uint64
|
||
|
CurrentUp uint64
|
||
|
CurrentDown uint64
|
||
|
Delay *[30]float32
|
||
|
Up *[30]int
|
||
|
Down *[30]int
|
||
|
}
|