From e9c9d17a9b7b8d3d69338af72fd195caf94a9033 Mon Sep 17 00:00:00 2001 From: wwqgtxx Date: Sat, 8 Apr 2023 09:56:02 +0800 Subject: [PATCH] chore: init gopsutil's Process direct from struct --- tunnel/statistic/manager.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tunnel/statistic/manager.go b/tunnel/statistic/manager.go index 7d0ee5e4..66e3857d 100644 --- a/tunnel/statistic/manager.go +++ b/tunnel/statistic/manager.go @@ -19,7 +19,7 @@ func init() { downloadBlip: atomic.NewInt64(0), uploadTotal: atomic.NewInt64(0), downloadTotal: atomic.NewInt64(0), - pid: os.Getpid(), + process: &process.Process{Pid: int32(os.Getpid())}, } go DefaultManager.handle() @@ -33,7 +33,7 @@ type Manager struct { downloadBlip *atomic.Int64 uploadTotal *atomic.Int64 downloadTotal *atomic.Int64 - pid int + process *process.Process memory uint64 } @@ -71,11 +71,7 @@ func (m *Manager) Snapshot() *Snapshot { }) getMem := func() uint64 { - p, err := process.NewProcess(int32(m.pid)) - if err != nil { - return 0 - } - stat, err := p.MemoryInfo() + stat, err := m.process.MemoryInfo() if err != nil { return 0 }