linkwallet/meta/meta.go

15 lines
197 B
Go
Raw Normal View History

2022-08-20 12:14:52 +09:30
package meta
import (
"fmt"
"runtime"
)
func MemInfo() string {
stats := runtime.MemStats{}
runtime.ReadMemStats(&stats)
return fmt.Sprintf("%.3fMb", float64(stats.Alloc)/1024.0/1024.0)
}