// Beego (http://beego.me/) // // @description beego is an open-source, high-performance web framework for the Go programming language. // // @link http://github.com/astaxie/beego for the canonical source repository // // @license http://github.com/astaxie/beego/blob/master/LICENSE // // @authors astaxie package toolbox import ( "fmt" "io" "log" "net/http" "os" "path" "runtime" "runtime/debug" "runtime/pprof" "strconv" "time" ) var startTime = time.Now() var pid int func init() { pid = os.Getpid() } // parse input command string func ProcessInput(input string, w io.Writer) { switch input { case "lookup goroutine": p := pprof.Lookup("goroutine") p.WriteTo(w, 2) case "lookup heap": p := pprof.Lookup("heap") p.WriteTo(w, 2) case "lookup threadcreate": p := pprof.Lookup("threadcreate") p.WriteTo(w, 2) case "lookup block": p := pprof.Lookup("block") p.WriteTo(w, 2) case "get cpuprof": GetCPUProfile(w.(http.ResponseWriter)) case "get memprof": MemProf(w) case "gc summary": PrintGCSummary(w) } } // record memory profile in pprof func MemProf(w io.Writer) { filename := "mem-" + strconv.Itoa(pid) + ".memprof" if f, err := os.Create(filename); err != nil { fmt.Fprintf(w, "create file %s error %s\n", filename, err.Error()) log.Fatal("record heap profile failed: ", err) } else { runtime.GC() pprof.WriteHeapProfile(f) f.Close() fmt.Fprintf(w, "create heap profile %s \n", filename) _, fl := path.Split(os.Args[0]) fmt.Fprintf(w, "Now you can use this to check it: go tool pprof %s %s\n", fl, filename) } } // start cpu profile monitor func GetCPUProfile(rw http.ResponseWriter) { sec := 30 rw.Header().Set("Content-Type", "application/octet-stream") filename := "cpu-" + strconv.Itoa(pid) + ".pprof" f, err := os.Create(filename) if err != nil { rw.Header().Set("Content-Type", "text/plain; charset=utf-8") rw.WriteHeader(http.StatusInternalServerError) fmt.Fprintf(rw, "Could not enable CPU profiling: %s\n", err) log.Fatal("record cpu profile failed: ", err) } fmt.Fprintf(rw, "start cpu profileing\n") pprof.StartCPUProfile(f) time.Sleep(time.Duration(sec) * time.Second) pprof.StopCPUProfile() fmt.Fprintf(rw, "create cpu profile %s \n", filename) _, fl := path.Split(os.Args[0]) fmt.Fprintf(rw, "Now you can use this to check it: go tool pprof %s %s\n", fl, filename) } // print gc information to io.Writer func PrintGCSummary(w io.Writer) { memStats := &runtime.MemStats{} runtime.ReadMemStats(memStats) gcstats := &debug.GCStats{PauseQuantiles: make([]time.Duration, 100)} debug.ReadGCStats(gcstats) printGC(memStats, gcstats, w) } func printGC(memStats *runtime.MemStats, gcstats *debug.GCStats, w io.Writer) { if gcstats.NumGC > 0 { lastPause := gcstats.Pause[0] elapsed := time.Now().Sub(startTime) overhead := float64(gcstats.PauseTotal) / float64(elapsed) * 100 allocatedRate := float64(memStats.TotalAlloc) / elapsed.Seconds() fmt.Fprintf(w, "NumGC:%d Pause:%s Pause(Avg):%s Overhead:%3.2f%% Alloc:%s Sys:%s Alloc(Rate):%s/s Histogram:%s %s %s \n", gcstats.NumGC, toS(lastPause), toS(avg(gcstats.Pause)), overhead, toH(memStats.Alloc), toH(memStats.Sys), toH(uint64(allocatedRate)), toS(gcstats.PauseQuantiles[94]), toS(gcstats.PauseQuantiles[98]), toS(gcstats.PauseQuantiles[99])) } else { // while GC has disabled elapsed := time.Now().Sub(startTime) allocatedRate := float64(memStats.TotalAlloc) / elapsed.Seconds() fmt.Fprintf(w, "Alloc:%s Sys:%s Alloc(Rate):%s/s\n", toH(memStats.Alloc), toH(memStats.Sys), toH(uint64(allocatedRate))) } } func avg(items []time.Duration) time.Duration { var sum time.Duration for _, item := range items { sum += item } return time.Duration(int64(sum) / int64(len(items))) } // format bytes number friendly func toH(bytes uint64) string { switch { case bytes < 1024: return fmt.Sprintf("%dB", bytes) case bytes < 1024*1024: return fmt.Sprintf("%.2fK", float64(bytes)/1024) case bytes < 1024*1024*1024: return fmt.Sprintf("%.2fM", float64(bytes)/1024/1024) default: return fmt.Sprintf("%.2fG", float64(bytes)/1024/1024/1024) } } // short string format func toS(d time.Duration) string { u := uint64(d) if u < uint64(time.Second) { switch { case u == 0: return "0" case u < uint64(time.Microsecond): return fmt.Sprintf("%.2fns", float64(u)) case u < uint64(time.Millisecond): return fmt.Sprintf("%.2fus", float64(u)/1000) default: return fmt.Sprintf("%.2fms", float64(u)/1000/1000) } } else { switch { case u < uint64(time.Minute): return fmt.Sprintf("%.2fs", float64(u)/1000/1000/1000) case u < uint64(time.Hour): return fmt.Sprintf("%.2fm", float64(u)/1000/1000/1000/60) default: return fmt.Sprintf("%.2fh", float64(u)/1000/1000/1000/60/60) } } }