You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
584 B
Go
31 lines
584 B
Go
3 years ago
|
package prof
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"runtime"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
defaultInterval = time.Second * 5
|
||
|
mega = 1024 * 1024
|
||
|
)
|
||
|
|
||
|
func DisplayStats(interval ...time.Duration) {
|
||
|
duration := defaultInterval
|
||
|
for _, val := range interval {
|
||
|
duration = val
|
||
|
}
|
||
|
|
||
|
go func() {
|
||
|
ticker := time.NewTicker(duration)
|
||
|
defer ticker.Stop()
|
||
|
for range ticker.C {
|
||
|
var m runtime.MemStats
|
||
|
runtime.ReadMemStats(&m)
|
||
|
fmt.Printf("Goroutines: %d, Alloc: %vm, TotalAlloc: %vm, Sys: %vm, NumGC: %v\n",
|
||
|
runtime.NumGoroutine(), m.Alloc/mega, m.TotalAlloc/mega, m.Sys/mega, m.NumGC)
|
||
|
}
|
||
|
}()
|
||
|
}
|