mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-14 08:39:30 +08:00
29 lines
865 B
Go
29 lines
865 B
Go
package dto
|
|
|
|
import "time"
|
|
|
|
type MonitorSearch struct {
|
|
Param string `json:"param" validate:"required,oneof=all cpu memory load io network"`
|
|
Info string `json:"info"`
|
|
StartTime time.Time `json:"startTime"`
|
|
EndTime time.Time `json:"endTime"`
|
|
}
|
|
|
|
type MonitorData struct {
|
|
Param string `json:"param" validate:"required,oneof=cpu memory load io network"`
|
|
Date []time.Time `json:"date"`
|
|
Value []interface{} `json:"value"`
|
|
}
|
|
|
|
type MonitorSetting struct {
|
|
MonitorStatus string `json:"monitorStatus"`
|
|
MonitorStoreDays string `json:"monitorStoreDays"`
|
|
MonitorInterval string `json:"monitorInterval"`
|
|
DefaultNetwork string `json:"defaultNetwork"`
|
|
}
|
|
|
|
type MonitorSettingUpdate struct {
|
|
Key string `json:"key" validate:"required,oneof=MonitorStatus MonitorStoreDays MonitorInterval DefaultNetwork"`
|
|
Value string `json:"value"`
|
|
}
|