This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/tasks/health_check_result.go
T

14 lines
303 B
Go

package tasks
import "github.com/TeaOSLab/EdgeAPI/internal/db/models"
// HealthCheckResult 健康检查结果
type HealthCheckResult struct {
Node *models.Node
NodeAddr string // 节点IP地址
NodeAddrId int64 // 节点IP地址ID
IsOk bool
Error string
CostMs float64
}