seaweedfs/weed/util/grace/pprof.go

56 lines
974 B
Go
Raw Normal View History

package grace
2017-06-22 08:33:58 +00:00
import (
"os"
"runtime"
2017-06-22 08:33:58 +00:00
"runtime/pprof"
"github.com/chrislusf/seaweedfs/weed/glog"
)
func SetupProfiling(cpuProfile, memProfile string) {
if cpuProfile != "" {
f, err := os.Create(cpuProfile)
if err != nil {
glog.Fatal(err)
}
2021-06-13 23:15:54 +00:00
runtime.SetBlockProfileRate(1)
runtime.SetMutexProfileFraction(1)
2017-06-22 08:33:58 +00:00
pprof.StartCPUProfile(f)
OnInterrupt(func() {
pprof.StopCPUProfile()
2021-06-13 23:15:54 +00:00
// write block pprof
blockF, err := os.Create(cpuProfile+".block")
if err != nil {
return
}
p := pprof.Lookup("block")
p.WriteTo(blockF,0)
blockF.Close()
// write mutex pprof
mutexF, err := os.Create(cpuProfile+".mutex")
if err != nil {
return
}
p = pprof.Lookup("mutex")
p.WriteTo(mutexF,0)
mutexF.Close()
2017-06-22 08:33:58 +00:00
})
}
if memProfile != "" {
runtime.MemProfileRate = 1
2017-06-22 08:33:58 +00:00
f, err := os.Create(memProfile)
if err != nil {
glog.Fatal(err)
}
OnInterrupt(func() {
pprof.WriteHeapProfile(f)
f.Close()
})
}
}