From 4e84582f92f882303881e5490c0103c461f7fc4c Mon Sep 17 00:00:00 2001 From: Chris Paxton Date: Mon, 10 Apr 2017 10:55:08 -0700 Subject: [PATCH 1/2] fix markdown hopefully --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4d4b2d39..15f09e48 100644 --- a/README.md +++ b/README.md @@ -15,11 +15,11 @@ Other sites: Flame graphs can be created in three steps: -1. Capture stacks -2. Fold stacks -3. flamegraph.pl + - Capture stacks + - Fold stacks + - flamegraph.pl -1. Capture stacks +1\. Capture stacks ================= Stack samples can be captured using Linux perf\_events, FreeBSD pmcstat (hwpmc), DTrace, SystemTap, and many other profilers. See the stackcollapse-\* converters. @@ -61,7 +61,7 @@ Using DTrace to capture 60 seconds of user-level stacks for PID 12345 at 97 Hert Switch `ustack()` for `jstack()` if the application has a ustack helper to include translated frames (eg, node.js frames; see: http://dtrace.org/blogs/dap/2012/01/05/where-does-your-node-program-spend-its-time/). The rate for user-level stack collection is deliberately slower than kernel, which is especially important when using `jstack()` as it performs additional work to translate frames. -2. Fold stacks +2\. Fold stacks ============== Use the stackcollapse programs to fold stack samples into single lines. The programs provided are: @@ -100,7 +100,7 @@ unix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`closef [...] ``` -3. flamegraph.pl +3\. flamegraph.pl ================ Use flamegraph.pl to render a SVG. From 49800495c7cbc095ec79aa24247ca423a69b3b93 Mon Sep 17 00:00:00 2001 From: Chris Paxton Date: Mon, 10 Apr 2017 10:55:31 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 15f09e48..7cd597b1 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,9 @@ Other sites: Flame graphs can be created in three steps: - - Capture stacks - - Fold stacks - - flamegraph.pl +1. Capture stacks +2. Fold stacks +3. flamegraph.pl 1\. Capture stacks =================