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.
go-zero/example/stat/main.go

32 lines
439 B
Go

package main
import (
"fmt"
"runtime"
"time"
"github.com/tal-tech/go-zero/core/stat"
)
func main() {
fmt.Println(runtime.NumCPU())
for i := 0; i < runtime.NumCPU()+10; i++ {
go func() {
for {
select {
default:
time.Sleep(time.Microsecond)
}
}
}()
}
ticker := time.NewTicker(time.Second * 5)
defer ticker.Stop()
for range ticker.C {
percent := stat.CpuUsage()
fmt.Println("cpu:", percent)
}
}