oneuptime/InfrastructureAgent/model/server_monitor_report.go

10 lines
468 B
Go

package model
type ServerMonitorReport struct {
SecretKey string `json:"secretKey"`
BasicInfrastructureMetrics *BasicInfrastructureMetrics `json:"basicInfrastructureMetrics"`
RequestReceivedAt string `json:"requestReceivedAt"`
OnlyCheckRequestReceivedAt bool `json:"onlyCheckRequestReceivedAt"`
Processes []*ServerProcess `json:"processes"`
}