We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a95df commit 8833af3Copy full SHA for 8833af3
src/runtime/pprof/pprof.go
@@ -565,8 +565,12 @@ func writeHeap(w io.Writer, debug int) error {
565
fmt.Fprintf(w, "# OtherSys = %d\n", s.OtherSys)
566
567
fmt.Fprintf(w, "# NextGC = %d\n", s.NextGC)
568
+ fmt.Fprintf(w, "# LastGC = %d\n", s.LastGC)
569
fmt.Fprintf(w, "# PauseNs = %d\n", s.PauseNs)
570
+ fmt.Fprintf(w, "# PauseEnd = %d\n", s.PauseEnd)
571
fmt.Fprintf(w, "# NumGC = %d\n", s.NumGC)
572
+ fmt.Fprintf(w, "# NumForcedGC = %d\n", s.NumForcedGC)
573
+ fmt.Fprintf(w, "# GCCPUFraction = %v\n", s.GCCPUFraction)
574
fmt.Fprintf(w, "# DebugGC = %v\n", s.DebugGC)
575
576
tw.Flush()
0 commit comments