summaryrefslogtreecommitdiffhomepage
path: root/content/docs/user_guide/debugging.md
diff options
context:
space:
mode:
authorIan Lewis <ianmlewis@gmail.com>2019-10-24 00:21:45 -0400
committerIan Lewis <ianmlewis@gmail.com>2019-10-24 02:35:07 -0400
commita7803353f03528042f15ade30462b88cb8b2ddc6 (patch)
tree55c458e60a77efb17ef2af9cbb79f7f38b33296a /content/docs/user_guide/debugging.md
parentcf240fdf731ff631a37e1a35e6b4e4f2c4203a2d (diff)
Added lint-md linter for markdown
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 4d26d557c..c19269934 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]. The examples
+The resulting files can be opened using `go tool pprof` or [pprof][pprof]. The examples
below create image file (`.svg`) with the heap profile and writes the top
functions using CPU to the console: