aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/pprof
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2017-04-10 13:38:28 -0400
committerRuss Cox <rsc@golang.org>2017-04-10 19:51:01 +0000
commit98a9aeb00987f556085fff9075359d3b84f69ce9 (patch)
tree322f5d181b4440bd4a86d02707d1143c2db23fe2 /src/cmd/pprof
parenta5999b7b81b9dc875cc635e1b089d768ddd41a8c (diff)
downloadgo-98a9aeb00987f556085fff9075359d3b84f69ce9.tar.gz
go-98a9aeb00987f556085fff9075359d3b84f69ce9.zip
cmd/pprof: update README to explain relationship with github.com/google/pprof
For google/pprof#132. Change-Id: I73785bc8662565ff7b2fac66e23497dd06fc25b6 Reviewed-on: https://go-review.googlesource.com/40231 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/cmd/pprof')
-rw-r--r--src/cmd/pprof/README20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/cmd/pprof/README b/src/cmd/pprof/README
index a728ef2353..612dc644f2 100644
--- a/src/cmd/pprof/README
+++ b/src/cmd/pprof/README
@@ -1,8 +1,18 @@
-The pprof in this directory is adapted from the pprof used inside Google
-for C++, Java, and Go programs. Because it was developed for that broader
-context, it is overgeneralized when used here for the specific use case
-of profiling standard Go programs. However, we've left the abstractions
-intact in order to share updates between this copy and Google's internal one.
+This directory is the copy of Google's pprof shipped as part of the Go distribution.
+The bulk of the code is vendored from github.com/google/pprof and is in
+../vendor/github.com/google/pprof.
+Two important notes:
+
+1. Using github.com/google/pprof directly (for example, after installing
+with "go get") should work with Go programs, but we cannot guarantee that.
+What we test is that the "go tool pprof" shipped with each Go release works
+with programs from that release.
+
+2. Pprof is used inside Google for C++, Java, and Go programs.
+Because it was developed for that broader context, it is overgeneralized
+when used here for the specific use case of profiling standard Go programs.
+However, we've left the abstractions intact in order to share updates
+between our vendored copy and Google's internal one.
Please do not take the level of abstraction in this program as an example
to follow in your own.