diff options
| author | Austin Clements <austin@google.com> | 2016-12-08 15:38:14 -0500 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-12-09 04:04:56 +0000 |
| commit | 2eb976eb2a040d3dd7b38f9d7e22dab2ee2a9ef0 (patch) | |
| tree | 302db81392cabdd45a7794b42f365ca57fd61808 | |
| parent | 4bf7d1e722e852f4a28d1898cbe5d0a0d505763b (diff) | |
| download | go-2eb976eb2a040d3dd7b38f9d7e22dab2ee2a9ef0.tar.xz | |
doc/go1.8: mention trace tool changes
Fixes #18234.
Change-Id: I0f18992ea14e13f283873ac295f0b49d6b7dd8b2
Reviewed-on: https://go-review.googlesource.com/34191
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
| -rw-r--r-- | doc/go1.8.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/doc/go1.8.html b/doc/go1.8.html index 4dc6b79bd6..d1ee69305b 100644 --- a/doc/go1.8.html +++ b/doc/go1.8.html @@ -252,14 +252,17 @@ It has moved to the “tools” repository and is now available at <h3 id="tool_trace">Trace</h3> -<p>TODO:</p> -<pre> -cmd/trace: add option to output pprof files (CL 23324) -cmd/trace: fix a runnable goroutine count bug (CL 25552) -cmd/trace: move process-wide GC events to their own row (CL 30017) -internal/trace: fix analysis of EvGoWaiting/EvGoInSyscall events (CL 25572) -cmd/trace: annotate different mark worker types (CL 30702) -</pre> +<p> <!-- CL 23324 --> + The <code>trace</code> tool has a new <code>-pprof</code> flag for + producing pprof-compatible blocking and latency profiles from an + execution trace. +</p> + +<p> <!-- CL 30017, CL 30702 --> + Garbage collection events are now shown more clearly in the + execution trace viewer. Garbage collection activity is shown on its + own row and GC helper goroutines are annotated with their roles. +</p> <h3 id="tool_vet">Vet</h3> |
