diff options
Diffstat (limited to 'plugin/pprof/README.md')
-rw-r--r-- | plugin/pprof/README.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/plugin/pprof/README.md b/plugin/pprof/README.md index 8e57d25d0..82ece3464 100644 --- a/plugin/pprof/README.md +++ b/plugin/pprof/README.md @@ -1,6 +1,10 @@ # pprof -*pprof* publishes runtime profiling data at endpoints under `/debug/pprof`. +## Name + +*pprof* - publishes runtime profiling data at endpoints under `/debug/pprof`. + +## Description You can visit `/debug/pprof` on your site for an index of the available endpoints. By default it will listen on localhost:6053. @@ -45,3 +49,8 @@ Listen on an all addresses on port 6060: pprof :6060 } ~~~ + +# Also See + +See [Go's pprof documentation](https://golang.org/pkg/net/http/pprof/) and [Profiling Go +Programs](https://blog.golang.org/profiling-go-programs). |