mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
129 lines
2.9 KiB
Go
129 lines
2.9 KiB
Go
package monitor
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/shirou/gopsutil/cpu"
|
|
"github.com/shirou/gopsutil/disk"
|
|
"github.com/shirou/gopsutil/host"
|
|
"github.com/shirou/gopsutil/mem"
|
|
"github.com/shirou/gopsutil/net"
|
|
|
|
"github.com/p14yground/nezha/model"
|
|
"github.com/p14yground/nezha/service/dao"
|
|
)
|
|
|
|
type ipDotSbGeoIP struct {
|
|
CountryCode string
|
|
IP string
|
|
}
|
|
|
|
var netInSpeed, netOutSpeed, netInTransfer, netOutTransfer, lastUpdate uint64
|
|
|
|
// GetHost ..
|
|
func GetHost() *model.Host {
|
|
hi, _ := host.Info()
|
|
var cpus []string
|
|
ci, _ := cpu.Info()
|
|
for i := 0; i < len(ci); i++ {
|
|
cpus = append(cpus, fmt.Sprintf("%v-%vC%vT", ci[i].ModelName, ci[i].Cores, ci[i].Stepping))
|
|
}
|
|
ip := ipDotSbGeoIP{
|
|
IP: "127.0.0.1",
|
|
CountryCode: "cn",
|
|
}
|
|
resp, err := http.Get("https://api.ip.sb/geoip")
|
|
if err == nil {
|
|
defer resp.Body.Close()
|
|
body, _ := ioutil.ReadAll(resp.Body)
|
|
json.Unmarshal(body, &ip)
|
|
}
|
|
return &model.Host{
|
|
Platform: hi.OS,
|
|
PlatformVersion: hi.PlatformVersion,
|
|
CPU: cpus,
|
|
Arch: hi.KernelArch,
|
|
Virtualization: hi.VirtualizationSystem,
|
|
BootTime: hi.BootTime,
|
|
IP: ip.IP,
|
|
CountryCode: strings.ToLower(ip.CountryCode),
|
|
Version: dao.Version,
|
|
}
|
|
}
|
|
|
|
// GetState ..
|
|
func GetState(delay int64) *model.State {
|
|
hi, _ := host.Info()
|
|
// Memory
|
|
mv, _ := mem.VirtualMemory()
|
|
ms, _ := mem.SwapMemory()
|
|
// CPU
|
|
var cpuPercent float64
|
|
cp, err := cpu.Percent(time.Second*time.Duration(delay), false)
|
|
if err == nil {
|
|
cpuPercent = cp[0]
|
|
}
|
|
// Disk
|
|
var diskTotal, diskUsed uint64
|
|
dparts, _ := disk.Partitions(true)
|
|
var lastDevice string
|
|
for _, part := range dparts {
|
|
u, _ := disk.Usage(part.Mountpoint)
|
|
if lastDevice != part.Device {
|
|
diskTotal += u.Total
|
|
lastDevice = part.Device
|
|
}
|
|
diskUsed += u.Used
|
|
}
|
|
|
|
return &model.State{
|
|
CPU: cpuPercent,
|
|
MemTotal: mv.Total,
|
|
MemUsed: mv.Used,
|
|
SwapTotal: ms.Total,
|
|
SwapUsed: ms.Used,
|
|
DiskTotal: diskTotal,
|
|
DiskUsed: diskUsed,
|
|
NetInTransfer: netInTransfer,
|
|
NetOutTransfer: netOutTransfer,
|
|
NetInSpeed: netInSpeed,
|
|
NetOutSpeed: netOutSpeed,
|
|
Uptime: hi.Uptime,
|
|
}
|
|
}
|
|
|
|
// TrackNetworkSpeed ..
|
|
func TrackNetworkSpeed() {
|
|
var innerNetInTransfer, innerNetOutTransfer uint64
|
|
nc, err := net.IOCounters(true)
|
|
if err == nil {
|
|
for i := 0; i < len(nc); i++ {
|
|
if strings.HasPrefix(nc[i].Name, "e") {
|
|
innerNetInTransfer += nc[i].BytesRecv
|
|
innerNetOutTransfer += nc[i].BytesSent
|
|
}
|
|
}
|
|
if netInTransfer == 0 {
|
|
netInTransfer = innerNetInTransfer
|
|
}
|
|
if netOutTransfer == 0 {
|
|
netOutTransfer = innerNetOutTransfer
|
|
}
|
|
diff := uint64(time.Now().Unix())
|
|
if lastUpdate == 0 {
|
|
lastUpdate = diff
|
|
return
|
|
}
|
|
diff -= lastUpdate
|
|
if diff > 0 {
|
|
netInSpeed = (innerNetInTransfer - netInTransfer) / diff
|
|
netOutSpeed = (innerNetOutTransfer - netOutTransfer) / diff
|
|
}
|
|
}
|
|
}
|