summaryrefslogtreecommitdiffhomepage
path: root/content/docs/user_guide/debugging.md
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2020-01-17 02:13:07 -0500
committerIan Lewis <ianlewis@google.com>2020-01-17 02:13:07 -0500
commit10ec43c775afaa49ca638cd2d411e975e06dbe78 (patch)
tree70afacf314a23eacfc364be7d32171ecc05736b5 /content/docs/user_guide/debugging.md
parent712a2829e75c7c8fce6a24df774ec38f72d14348 (diff)
Clean up markdown lists
Diffstat (limited to 'content/docs/user_guide/debugging.md')
-rw-r--r--content/docs/user_guide/debugging.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/docs/user_guide/debugging.md b/content/docs/user_guide/debugging.md
index c19269934..49f9638d7 100644
--- a/content/docs/user_guide/debugging.md
+++ b/content/docs/user_guide/debugging.md
@@ -106,9 +106,9 @@ Then restart docker to refresh the runtime options. While the container is runni
execute `runsc debug` to collect profile information and save to a file. Here are
the options available:
-* **--profile-heap:** Generates heap profile to the speficied file.
-* **--profile-cpu:** Enables CPU profiler, waits for `--profile-delay` seconds
- and generates CPU profile to the speficied file.
+* **--profile-heap:** Generates heap profile to the speficied file.
+* **--profile-cpu:** Enables CPU profiler, waits for `--profile-delay` seconds
+ and generates CPU profile to the speficied file.
For example:
@@ -120,7 +120,7 @@ sudo runsc --root /var/run/docker/runtime-runsc-prof/moby debug --profile-heap=/
sudo runsc --root /var/run/docker/runtime-runsc-prof/moby debug --profile-cpu=/tmp/cpu.prof --profile-delay=30 63254c6ab3a6989623fa1fb53616951eed31ac605a2637bb9ddba5d8d404b35b
```
-The resulting files can be opened using `go tool pprof` or [pprof][pprof]. The examples
+The resulting files can be opened using `go tool pprof` or [pprof][]. The examples
below create image file (`.svg`) with the heap profile and writes the top
functions using CPU to the console: