You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
473 B
29 lines
473 B
// +build windows
|
|
|
|
package stats
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
type MemStatus struct {
|
|
Goroutines uint32
|
|
All uint32
|
|
Used uint32
|
|
Free uint32
|
|
Self uint64
|
|
Heap uint64
|
|
Stack uint64
|
|
}
|
|
|
|
func MemStat() MemStatus {
|
|
memStat := new(runtime.MemStats)
|
|
mem.Goroutines = runtime.NumGoroutine()
|
|
runtime.ReadMemStats(memStat)
|
|
mem := MemStatus{}
|
|
mem.Self = memStat.Alloc
|
|
mem.Heap = memStat.HeapAlloc
|
|
mem.Stack = memStat.StackInuse
|
|
|
|
return mem
|
|
}
|