- Task model: CustomerNumber field (K-Nummer aus customers.number)
- DB: taskSelectCols joined c.number, scanTask scans CustomerNumber
- Hub: WaitForAgentOnline() polls until agent reconnects or timeout
- Scheduler: executeUpdateWithHealthCheck() waits for agent reconnect after update
- health_check: {agent_online: bool, checked_at: RFC3339} in result
- Status: completed_with_warning wenn Update OK aber Agent offline bleibt
- Frontend: Task-Tabelle zeigt Status-Badge (lauft/fehler/warnung/abgebr.)
33 lines
1.6 KiB
Go
33 lines
1.6 KiB
Go
package models
|
|
|
|
type Task struct {
|
|
ID int `json:"id"`
|
|
AgentID string `json:"agent_id"`
|
|
AgentName string `json:"agent_name,omitempty"`
|
|
CustomerName string `json:"customer_name,omitempty"`
|
|
CustomerNumber string `json:"customer_number,omitempty"`
|
|
Name string `json:"name"`
|
|
Action string `json:"action"`
|
|
Status string `json:"status"`
|
|
ScheduleType string `json:"schedule_type"`
|
|
ScheduleTime string `json:"schedule_time"`
|
|
ScheduleWeekday *int `json:"schedule_weekday,omitempty"`
|
|
ScheduleMonthday *int `json:"schedule_monthday,omitempty"`
|
|
ScheduledAt string `json:"scheduled_at"`
|
|
StartedAt *string `json:"started_at,omitempty"`
|
|
FinishedAt *string `json:"finished_at,omitempty"`
|
|
Result interface{} `json:"result,omitempty"`
|
|
Reboot bool `json:"reboot"`
|
|
HealthCheck bool `json:"health_check"`
|
|
HealthCheckTimeout int `json:"health_check_timeout"`
|
|
WebhookURL string `json:"webhook_url,omitempty"`
|
|
WebhookSent bool `json:"webhook_sent"`
|
|
WebhookResponse string `json:"webhook_response,omitempty"`
|
|
Active bool `json:"active"`
|
|
LastRun *string `json:"last_run,omitempty"`
|
|
NextRun *string `json:"next_run,omitempty"`
|
|
RunCount int `json:"run_count"`
|
|
CreatedBy string `json:"created_by,omitempty"`
|
|
CreatedAt string `json:"created_at"`
|
|
}
|