Skip to content

Commit 26ec05c

Browse files
committed
doc: update info about flame graphs in diagnostics.html
Use Brendan Gregg's FlameGraphs page link. Mention the flame graph is available from the upstream pprof. Change-Id: Ife1d5a5f4f93f20cd5952a09083f798b77d25a60 Reviewed-on: https://go-review.googlesource.com/83798 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent 81c19cc commit 26ec05c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

doc/diagnostics.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h2 id="profiling">Profiling</h2>
119119

120120
<p>
121121
The Go tools provide text, graph, and <a href="http://valgrind.org/docs/manual/cl-manual.html">callgrind</a>
122-
visualization of the profile data via
122+
visualization of the profile data using
123123
<code><a href="https://github.com/google/pprof/blob/master/doc/pprof.md">go tool pprof</a></code>.
124124
Read <a href="https://blog.golang.org/profiling-go-programs">Profiling Go programs</a>
125125
to see them in action.
@@ -149,9 +149,11 @@ <h2 id="profiling">Profiling</h2>
149149
</p>
150150

151151
<p>
152-
Another way to visualize profile data is a <a href="https://github.com/uber/go-torch">flame graph</a>.
152+
Another way to visualize profile data is a <a href="http://www.brendangregg.com/flamegraphs.html">flame graph</a>.
153153
Flame graphs allow you to move in a specific ancestry path, so you can zoom
154-
in/out specific sections of code more easily.
154+
in/out of specific sections of code.
155+
The <a href="https://github.com/google/pprof">upstream pprof</a>
156+
has support for flame graphs.
155157
</p>
156158

157159
<p>

0 commit comments

Comments
 (0)