From: Hana (Hyang-Ah) Kim Date: Fri, 24 Apr 2020 20:57:07 +0000 (-0400) Subject: doc/go1.15: include changes in net/http/pprof and runtime/pprof X-Git-Tag: go1.15beta1~395 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=340e29257cda1b3e4519e27c0adfa9dbd585506e;p=gostls13.git doc/go1.15: include changes in net/http/pprof and runtime/pprof net/http/pprof: delta profile support runtime/pprof: profile labels plumbing for goroutine profiles Change-Id: I92e750dc894c8c6b3c3ba10f7be58bb541d3c289 Reviewed-on: https://go-review.googlesource.com/c/go/+/230023 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.15.html b/doc/go1.15.html index 806d7463cd..a4f78c1c78 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -172,6 +172,17 @@ TODO +
net/http/pprof
+
+

+ All profile endpoints now support a "seconds" parameter. When present, + the endpoint profiles for the specified number of seconds and reports the difference. + The meaning of the "seconds" parameter in the cpu profile and + the trace endpoints is unchanged. +

+
+
+
net/url

@@ -224,6 +235,16 @@ TODO

+
runtime/pprof
+
+

+ The goroutine profile includes the profile labels associated with each goroutine + at the time of profiling. This feature is not yet implemented for the profile + reported with debug=2. +

+
+
+
sync