aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2019-03-29 12:47:59 +0000
committerGravatar GitHub <noreply@github.com> 2019-03-29 12:47:59 +0000
commitfcb49fe0160a8d39bd19141bc65874e6dd79a817 (patch)
treecca84897c3b52182e5cba91f5e509e0f1671a5c7
parentc144da2524fc705cb20f23c4a4ce36c2ff45525e (diff)
downloadcoredns-fcb49fe0160a8d39bd19141bc65874e6dd79a817.tar.gz
coredns-fcb49fe0160a8d39bd19141bc65874e6dd79a817.tar.zst
coredns-fcb49fe0160a8d39bd19141bc65874e6dd79a817.zip
plugin/pprof: spice up the readme (#2731)
Rework this a little to be more inline with the other READMEs Signed-off-by: Miek Gieben <miek@miek.nl>
-rw-r--r--plugin/pprof/README.md24
1 files changed, 17 insertions, 7 deletions
diff --git a/plugin/pprof/README.md b/plugin/pprof/README.md
index 4ff6c6e38..b847ad63b 100644
--- a/plugin/pprof/README.md
+++ b/plugin/pprof/README.md
@@ -16,21 +16,28 @@ This plugin can only be used once per Server Block.
## Syntax
+~~~ txt
+pprof [ADDRESS]
~~~
+
+Optionally pprof takes an address; the default is `localhost:6053`.
+
+An extra option can be set with this extended syntax:
+
+~~~ txt
pprof [ADDRESS] {
block [RATE]
}
~~~
-- If not specified, **ADDRESS** defaults to localhost:6053.
-
-- `block` option allow to enable the `block` profiling. see [Diagnostics, chapter profiling](https://golang.org/doc/diagnostics.html).
-if you need to use `block` profile, set a positive value to **RATE**. See [runtime.SetBlockProfileRate](https://golang.org/pkg/runtime/#SetBlockProfileRate).
- if not specified, **RATE** default's to 1. if `block` option is not specified the `block` profiling is disabled.
+* `block` option enables block profiling, **RATE** defaults to 1. **RATE** must be a positive value.
+ See [Diagnostics, chapter profiling](https://golang.org/doc/diagnostics.html) and
+ [runtime.SetBlockProfileRate](https://golang.org/pkg/runtime/#SetBlockProfileRate) for what block
+ profiling entails.
## Examples
-Enable pprof endpoints:
+Enable a pprof endpoint:
~~~
. {
@@ -48,7 +55,7 @@ Listen on an alternate address:
}
~~~
-Listen on an all addresses on port 6060: and enable block profiling
+Listen on an all addresses on port 6060, and enable block profiling
~~~ txt
. {
@@ -62,3 +69,6 @@ Listen on an all addresses on port 6060: and enable block profiling
See [Go's pprof documentation](https://golang.org/pkg/net/http/pprof/) and [Profiling Go
Programs](https://blog.golang.org/profiling-go-programs).
+
+See [runtime.SetBlockProfileRate](https://golang.org/pkg/runtime/#SetBlockProfileRate) for
+background on block profiling.