-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathprofile.go
61 lines (49 loc) · 1.54 KB
/
profile.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
package main
import (
"fmt"
"runtime"
"github.com/pkg/profile"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
)
// Run cpu / memory profiling collection.
func runProfiler(ctx *cli.Context) (interface{ Stop() }, error) {
var prof interface{ Stop() }
cpuProfOn := ctx.GlobalBool("cpu-profiling")
memProfOn := ctx.GlobalBool("memory-profiling")
// Typical (i.e., non-profiling) case.
if !cpuProfOn && !memProfOn {
return nil, nil
}
// Cpu and Memory profiling options seem to be mutually exclused in pprof.
if cpuProfOn && memProfOn {
return nil, fmt.Errorf("Unsupported parameter combination: cpu and memory profiling")
}
if cpuProfOn {
// set the profiler's sampling rate at twice the usual to get a
// more accurate result (sysbox-runc executes quickly).
//
// Note: this may result in the following error message when
// running sysbox-runc with profiling enabled: "runtime: cannot
// set cpu profile rate until previous profile has finished."
// We can ignore it; it occurs because profile.Start() invokes
// pprof.go which calls SetCPUProfileRate() again. Since we have
// already set the value, the one from pprof will be ignored.
runtime.SetCPUProfileRate(200)
prof = profile.Start(
profile.Quiet,
profile.CPUProfile,
profile.ProfilePath("."),
)
logrus.Info("Initiated cpu-profiling data collection.")
}
if memProfOn {
prof = profile.Start(
profile.Quiet,
profile.MemProfile,
profile.ProfilePath("."),
)
logrus.Info("Initiated memory-profiling data collection.")
}
return prof, nil
}