2020-04-28 06:10:23 +00:00
|
|
|
package grace
|
2017-06-22 08:33:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2018-12-31 22:54:13 +00:00
|
|
|
"runtime"
|
2017-06-22 08:33:58 +00:00
|
|
|
"runtime/pprof"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
2017-06-22 08:33:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2021-07-01 08:21:14 +00:00
|
|
|
blockF, err := os.Create(cpuProfile + ".block")
|
2021-06-13 23:15:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p := pprof.Lookup("block")
|
2021-07-01 08:21:14 +00:00
|
|
|
p.WriteTo(blockF, 0)
|
2021-06-13 23:15:54 +00:00
|
|
|
blockF.Close()
|
|
|
|
|
|
|
|
// write mutex pprof
|
2021-07-01 08:21:14 +00:00
|
|
|
mutexF, err := os.Create(cpuProfile + ".mutex")
|
2021-06-13 23:15:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p = pprof.Lookup("mutex")
|
2021-07-01 08:21:14 +00:00
|
|
|
p.WriteTo(mutexF, 0)
|
2021-06-13 23:15:54 +00:00
|
|
|
mutexF.Close()
|
|
|
|
|
2017-06-22 08:33:58 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
if memProfile != "" {
|
2018-12-31 22:54:13 +00:00
|
|
|
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()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|