-
Notifications
You must be signed in to change notification settings - Fork 27
/
pprof.go
93 lines (75 loc) · 1.37 KB
/
pprof.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//go:build pprof
// +build pprof
package main
import (
"os"
"runtime"
"runtime/pprof"
"runtime/trace"
"github.com/lmorg/murex/debug"
"github.com/lmorg/murex/lang"
)
const (
fCpuProfile = "./cpu.pprof"
fMemProfile = "./mem.pprof"
fTraceProfile = "./trace.pprof"
)
func init() {
lang.ProfCpuCleanUp = cpuProfile()
lang.ProfMemCleanUp = memProfile()
lang.ProfTraceCleanUp = traceProfile()
}
func cpuProfile() func() {
if fCpuProfile != "" {
f, err := os.Create(fCpuProfile)
if err != nil {
panic(err)
}
if err := pprof.StartCPUProfile(f); err != nil {
panic(err)
}
return func() {
pprof.StopCPUProfile()
if err = f.Close(); err != nil && debug.Enabled {
panic(err)
}
}
}
return func() {}
}
func memProfile() func() {
if fMemProfile != "" {
f, err := os.Create(fMemProfile)
if err != nil {
panic(err)
}
return func() {
runtime.GC() // get up-to-date statistics
if err := pprof.WriteHeapProfile(f); err != nil {
panic(err)
}
if err = f.Close(); err != nil {
panic(err)
}
}
}
return func() {}
}
func traceProfile() func() {
if fTraceProfile != "" {
f, err := os.Create(fTraceProfile)
if err != nil {
panic(err)
}
if err := trace.Start(f); err != nil {
panic(err)
}
return func() {
trace.Stop()
if err = f.Close(); err != nil {
panic(err)
}
}
}
return func() {}
}