mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 01:05:14 +00:00
Include heap pprof in diagnosis report to help debugging memory leaks (#28596)
This commit is contained in:
parent
33439b733a
commit
330aab47b3
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue