(cherry picked from commit f2add36a29
)
This commit is contained in:
parent
29a0e7738c
commit
75ad9ac50b
1 changed files with 7 additions and 0 deletions
|
@ -58,4 +58,11 @@ func MonitorDiagnosis(ctx *context.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
_ = pprof.Lookup("goroutine").WriteTo(f, 1)
|
_ = 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