tracing-the-linux-kernel: minor fixes
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 04:13:01 +0000 (00:13 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 15:56:09 +0000 (11:56 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
contents/getting-started/tracing-the-linux-kernel.md

index c7522e2ebe8298602987038e7c2ac9ecb22c07e0..659aa477f311a8e6cb93da8b66034f4397379a64 100644 (file)
@@ -16,28 +16,25 @@ lttng list --kernel
 Before tracing, you need to create a session:
 
 <pre class="term">
-sudo lttng create my-session
+sudo lttng create
 </pre>
 
 <div class="tip">
 <p>
     <span class="t">Tip:</span>You can avoid using <code>sudo</code> in
     the previous and following commands if your user is a member of the
-    <a href="/docs/#doc-lttng-sessiond" class="int"><code>tracing</code>
+    <a href="#doc-lttng-sessiond" class="int"><code>tracing</code>
     group</a>.
 </p>
 </div>
 
-`my-session` is the tracing session name and could be anything you
-like. `auto` is used if omitted.
-
 Let's now enable some events for this session:
 
 <pre class="term">
 sudo lttng enable-event --kernel sched_switch,sched_process_fork
 </pre>
 
-or you might want to simply enable all available kernel events (beware
+Or you might want to simply enable all available kernel events (beware
 that trace files grow rapidly when doing this):
 
 <pre class="term">
@@ -62,7 +59,7 @@ sudo lttng destroy
 </pre>
 
 Although `destroy` looks scary here, it doesn't actually destroy the
-outputted trace files: it only destroys the tracing session.
+written trace files: it only destroys the tracing session.
 
 What's next? Have a look at
 [Viewing and analyzing your traces](#doc-viewing-and-analyzing-your-traces)
This page took 0.036573 seconds and 4 git commands to generate.