aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-07-30 13:26:56 +0200
committerJakob Unterwurzacher2017-07-30 16:07:00 +0200
commit1f39ede4b46ec3609ccbe1d54402f4a17f3d697e (patch)
treec0705ef11c3b0afc390ff31835f538963b32ff78 /main.go
parent86253b75670172fda6b481848cd63ca5685f112d (diff)
main: save memory profile every 60 seconds
...and move all profiling functionality to its own file, as the main function is already long enough. Periodically saving the memory profile allows capturing the used memory during normal operation, as opposed to on exit, where the kernel has already issued FORGETs for all inodes. This functionality has been used to create the memory profile shown in https://github.com/rfjakob/gocryptfs/issues/132 .
Diffstat (limited to 'main.go')
-rw-r--r--main.go46
1 files changed, 6 insertions, 40 deletions
diff --git a/main.go b/main.go
index 13514c1..c4d35b4 100644
--- a/main.go
+++ b/main.go
@@ -3,11 +3,8 @@ package main
import (
"fmt"
"os"
-
"path/filepath"
"runtime"
- "runtime/pprof"
- "runtime/trace"
"strconv"
"strings"
"time"
@@ -208,49 +205,18 @@ func main() {
}
// "-cpuprofile"
if args.cpuprofile != "" {
- tlog.Info.Printf("Writing CPU profile to %s", args.cpuprofile)
- var f *os.File
- f, err = os.Create(args.cpuprofile)
- if err != nil {
- tlog.Fatal.Println(err)
- os.Exit(exitcodes.Profiler)
- }
- err = pprof.StartCPUProfile(f)
- if err != nil {
- tlog.Fatal.Println(err)
- os.Exit(exitcodes.Profiler)
- }
- defer pprof.StopCPUProfile()
+ onExitFunc := setupCpuprofile(args.cpuprofile)
+ defer onExitFunc()
}
// "-memprofile"
if args.memprofile != "" {
- tlog.Info.Printf("Writing mem profile to %s", args.memprofile)
- var f *os.File
- f, err = os.Create(args.memprofile)
- if err != nil {
- tlog.Fatal.Println(err)
- os.Exit(exitcodes.Profiler)
- }
- defer func() {
- pprof.WriteHeapProfile(f)
- f.Close()
- return
- }()
+ onExitFunc := setupMemprofile(args.memprofile)
+ defer onExitFunc()
}
// "-trace"
if args.trace != "" {
- tlog.Info.Printf("Writing execution trace to %s", args.trace)
- f, err := os.Create(args.trace)
- if err != nil {
- tlog.Fatal.Println(err)
- os.Exit(exitcodes.Profiler)
- }
- err = trace.Start(f)
- if err != nil {
- tlog.Fatal.Println(err)
- os.Exit(exitcodes.Profiler)
- }
- defer trace.Stop()
+ onExitFunc := setupTrace(args.trace)
+ defer onExitFunc()
}
if args.cpuprofile != "" || args.memprofile != "" || args.trace != "" {
tlog.Info.Printf("Note: You must unmount gracefully, otherwise the profile file(s) will stay empty!\n")