mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
865 B
29 lines
865 B
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"`
|
|
}
|