-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiling.go
74 lines (67 loc) · 1.35 KB
/
profiling.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
package main
import (
"log"
"os"
"runtime"
"runtime/pprof"
"runtime/trace"
)
// profilers enables any optional cpu, memory, or trace profiling outputs, and
// returns a shutdown function to be called when the program exits.
func profilers(opts *Options) (shutdown func(), err error) {
var cpuProfileOut *os.File
var memProfileOut *os.File
var traceOut *os.File
shutdown = func() {
if cpuProfileOut != nil {
pprof.StopCPUProfile()
cpuProfileOut.Close()
}
if memProfileOut != nil {
runtime.GC()
err = pprof.WriteHeapProfile(memProfileOut)
if err != nil {
log.Printf("unable to write memory profile: %s", err)
}
memProfileOut.Close()
}
if traceOut != nil {
trace.Stop()
traceOut.Close()
}
}
if opts.CpuProfile != "" {
cpuProfileOut, err = os.Create(opts.CpuProfile)
if err != nil {
shutdown()
return nil, err
} else {
err = pprof.StartCPUProfile(cpuProfileOut)
if err != nil {
shutdown()
return nil, err
}
}
}
if opts.MemProfile != "" {
memProfileOut, err = os.Create(opts.MemProfile)
if err != nil {
shutdown()
return nil, err
}
}
if opts.Trace != "" {
traceOut, err = os.Create(opts.Trace)
if err != nil {
shutdown()
return nil, err
} else {
err = trace.Start(traceOut)
if err != nil {
shutdown()
return nil, err
}
}
}
return shutdown, nil
}