Include heap pprof in diagnosis report to help debugging memory leaks (#28596) (#28599)

(cherry picked from commit f2add36a29580f5139e3ac5e1fc67ebf2da3cacd)
This commit is contained in:
Giteabot 2023-12-24 09:18:43 +08:00 committed by Earl Warren
parent 29a0e7738c
commit 75ad9ac50b
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -58,4 +58,11 @@ func MonitorDiagnosis(ctx *context.Context) {
return
}
_ = pprof.Lookup("goroutine").WriteTo(f, 1)
f, err = zipWriter.CreateHeader(&zip.FileHeader{Name: "heap.dat", Method: zip.Deflate, Modified: time.Now()})
if err != nil {
ctx.ServerError("Failed to create zip file", err)
return
}
_ = pprof.Lookup("heap").WriteTo(f, 0)
}