From 81904ad3364685d016a7fc1d0335702f1c1cb169 Mon Sep 17 00:00:00 2001 From: Chris Lu <chris.lu@gmail.com> Date: Mon, 31 Dec 2018 14:54:13 -0800 Subject: [PATCH] debugging: track all memory allocations --- weed/util/pprof.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weed/util/pprof.go b/weed/util/pprof.go index 363017555..a2621ceee 100644 --- a/weed/util/pprof.go +++ b/weed/util/pprof.go @@ -2,6 +2,7 @@ package util import ( "os" + "runtime" "runtime/pprof" "github.com/chrislusf/seaweedfs/weed/glog" @@ -19,6 +20,7 @@ func SetupProfiling(cpuProfile, memProfile string) { }) } if memProfile != "" { + runtime.MemProfileRate = 1 f, err := os.Create(memProfile) if err != nil { glog.Fatal(err)