From 2843063794e452bf93beae2cb25273e5d192fde4 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 26 Feb 2015 16:07:56 -0500 Subject: [PATCH] instrumenting-linux-kernel-tracing: fix wrong module name Signed-off-by: Philippe Proulx --- .../instrumenting-linux-kernel-tracing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contents/using-lttng/instrumenting/instrumenting-linux-kernel/instrumenting-linux-kernel-itself/instrumenting-linux-kernel-tracing.md b/contents/using-lttng/instrumenting/instrumenting-linux-kernel/instrumenting-linux-kernel-itself/instrumenting-linux-kernel-tracing.md index 9977cf9..f141c52 100644 --- a/contents/using-lttng/instrumenting/instrumenting-linux-kernel/instrumenting-linux-kernel-itself/instrumenting-linux-kernel-tracing.md +++ b/contents/using-lttng/instrumenting/instrumenting-linux-kernel/instrumenting-linux-kernel-itself/instrumenting-linux-kernel-tracing.md @@ -6,7 +6,7 @@ The [Controlling tracing](#doc-controlling-tracing) section explains how to use the `lttng` tool to create and control tracing sessions. Although the `lttng` tool will load the appropriate _known_ LTTng kernel modules when needed (by launching `root`'s session daemon), it won't -load your custom `linux-probe-hello` module by default. You need to +load your custom `lttng-probe-hello` module by default. You need to manually start an LTTng session daemon as `root` and use the `--extra-kmod-probes` option to append your custom probe module to the default list: @@ -22,7 +22,7 @@ want to use a few of them, you could use `--kmod-probes` instead, which specifies an absolute list:
-sudo lttng-sessiond --kmod-probes=ext4,sched,hello
+sudo lttng-sessiond --kmod-probes=hello,ext4,net,block,signal,sched
 
Confirm the custom probe module is loaded: -- 2.34.1