package probe
import (
"github.com/shirou/gopsutil/v3/host"
)
func (p *Probe) HostUptime() uint64 {
upTime, _ := host.Uptime()
return upTime
}