Remove "etc."
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 03:38:42 +0000 (23:38 -0400)
committerPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 4 Sep 2015 15:56:04 +0000 (11:56 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
13 files changed:
contents/getting-started/viewing-and-analyzing.md
contents/nuts-and-bolts/what-is-tracing.md
contents/reference/intro.md
contents/reference/lttng-modules/lttng-modules-tp-struct-entry.md
contents/reference/lttng-ust/liblttng-ust/liblttng-ust-tp-fields.md
contents/understanding-lttng/core-concepts/tracing-session.md
contents/understanding-lttng/plumbing/lttng-sessiond.md
contents/using-lttng/controlling-tracing/adding-context.md
contents/using-lttng/controlling-tracing/enabling-disabling-channels/intro.md
contents/using-lttng/controlling-tracing/enabling-disabling-events.md
contents/using-lttng/controlling-tracing/saving-loading-tracing-session.md
contents/using-lttng/instrumenting/c-application/intro.md
contents/using-lttng/intro.md

index 634f3d3f830ba16ee1ec8de4597672f48b13a797..988ddec12cfd05c6177ee5b7b6068989f0873c5f 100644 (file)
@@ -143,8 +143,8 @@ python3 top5proc.py ~/lttng-sessions/my-session-.../kernel
 </pre>
 
 Make sure the path you provide is the directory containing actual trace
-files (`channel0_0`, `metadata`, etc.): the `babeltrace` utility recurses
-directories, but the Python binding does not.
+files (`channel0_0`, `metadata`, and the rest): the `babeltrace` utility
+recurses directories, but the Python binding does not.
 
 Here's an example of output:
 
index e419a56ccb455063d53100d52e56846ce0b66b9c..eabfd23826b3408f6069d8ad790ae591827d0232 100644 (file)
@@ -46,7 +46,7 @@ frequently than log messages, often in the thousands per second range,
 with very little execution overhead. Logging is more appropriate for
 very high-level analysis of less frequent events: user accesses,
 exceptional conditions (errors and warnings, for example), database
-transactions, instant messaging communications, etc. More formally,
+transactions, instant messaging communications, and such. More formally,
 logging is one of several use cases that can be accomplished with
 tracing.
 
index 22d79012a16fb8543ddf69049ae224f4b5565127..19b67be55a4d6fda0c1de405ccdec0d588523b68 100644 (file)
@@ -4,4 +4,4 @@ id: reference
 
 This chapter presents various references for LTTng packages such as links
 to online manpages, tables needed by the rest of the text, descriptions
-of library functions, etc.
+of library functions, and more.
index ed475f8cb37678256b5abda9d46a03f1dcaba87f..5f90f47f50a0d01d5a5764afd85933d9d46e65bb 100644 (file)
@@ -26,7 +26,7 @@ of `LTTNG_TRACEPOINT_EVENT()`:
                     <li>
                         <code class="arg">t</code> integer C type
                         (<code>int</code>, <code>unsigned char</code>,
-                        <code>size_t</code>, etc.)
+                        <code>size_t</code>, ...)
                     </li>
                     <li><code class="arg">n</code> field name</li>
                 </ul>
index 74ef4908e00d74d35237c0c57df21d414b22d99a..76cbea0a6f020b1d46ce3a75f6b6a552f0a486d2 100644 (file)
@@ -27,7 +27,7 @@ within `TP_FIELDS()` in `TRACEPOINT_EVENT()`, are:
                     <li>
                         <code class="arg"><strong>t</strong></code> integer C type
                         (<code>int</code>, <code>long</code>,
-                        <code>size_t</code>, etc.)
+                        <code>size_t</code>, ...)
                     </li>
                     <li><code class="arg"><strong>n</strong></code> field name</li>
                     <li><code class="arg"><strong>e</strong></code> argument expression</li>
index 3b0e40a52711b19696401ad4f26f9cb2a64234be..1a70b10a820cee60372038d9add19fd01a83a962 100644 (file)
@@ -23,13 +23,13 @@ which are described in the following sections):
     * a name
     * the channel state (enabled or disabled)
     * its parameters (event loss mode, sub-buffers size and count,
-      timer periods, output type, trace files size and count, etc.)
+      timer periods, output type, trace files size and count, and the rest)
     * a list of added context information
     * a list of [events](#doc-event)
   * for each event:
     * its state (enabled or disabled)
     * a list of instrumentation points (tracepoints, system calls,
-      dynamic probes, etc.)
+      dynamic probes, other types of probes)
     * associated log levels
     * a filter expression
 
index 6e298e47e6e178e5f426249e44b4063cd4100264..f87beaaf5efd2b0ec22cc2caecc93a7372d91508 100644 (file)
@@ -7,8 +7,8 @@ by its command name, `lttng-sessiond`.
 
 The session daemon is responsible for managing tracing sessions and
 what they logically contain (channel properties, enabled/disabled
-events, etc.). By communicating locally with instrumented applications
-(using LTTng-UST) and with the LTTng Linux kernel modules
+events, and the rest). By communicating locally with instrumented
+applications (using LTTng-UST) and with the LTTng Linux kernel modules
 (LTTng-modules), it oversees all tracing activities.
 
 One of the many things that `lttng-sessiond` does is to keep
@@ -24,7 +24,7 @@ and user space tracers, the session daemon can send channel information
 so that they are initialized, enable/disable specific probes based on
 enabled/disabled events by the user, send event filters information to
 LTTng tracers so that filtering actually happens at the tracer site,
-start/stop tracing a specific application or the Linux kernel, etc.
+start/stop tracing a specific application or the Linux kernel, and more.
 
 The session daemon is not useful without some user controlling it,
 because it's only a sophisticated control interchange and thus
index c77f1d5dc6352ff40f25d7c454912e3b453e7f56..34ab0f755be5c201e999bd1794767e24c01850a9 100644 (file)
@@ -21,12 +21,11 @@ recorded by LTTng, for example:
     * scheduling priority (niceness)
     * thread identifier (TID)
   * the **hostname** of the system on which the event occurred
-  * plenty of **performance counters** using perf:
-    * CPU cycles, stalled cycles, idle cycles, etc.
+  * plenty of **performance counters** using perf, for example:
+    * CPU cycles, stalled cycles, idle cycles, and the other cycle types
     * cache misses
-    * branch instructions, misses, loads, etc.
+    * branch instructions, misses, loads
     * CPU faults
-    * etc.
 
 The full list is available in the output of `lttng add-context --help`.
 Some of them are reserved for a specific domain (kernel or
index 062c18248637741670d08fe2604bc38cb1e5449b..676d4ba570658b89ed9d7ff5a02c4261d909dda0 100644 (file)
@@ -7,9 +7,9 @@ id: enabling-disabling-channels
 events are contained in a specific channel, itself contained in a
 specific tracing session. A channel is a group of events with
 tunable parameters (event loss mode, sub-buffer size, number of
-sub-buffers, trace file sizes and count, etc.). A given channel may
-only be responsible for enabled events belonging to one domain: either
-kernel or user space.
+sub-buffers, trace file sizes and count, to name a few). A given channel
+may only be responsible for enabled events belonging to one domain:
+either kernel or user space.
 
 If you only used the `create`, `enable-event` and `start`/`stop`
 commands of the `lttng` tool so far, one or two channels were
index e41a9336716fd4685c9183da12718c6354ad9b7c..26ab44eafbbbdd9ae61681c3597ccf5b9a61433e 100644 (file)
@@ -16,7 +16,7 @@ composed of:
      (required).
   2. One or many **instrumentation points** in source code or binary
      program (tracepoint name, address, symbol name, function name,
-     logger name, etc.) to be executed (required).
+     logger name, amongst other types of probes) to be executed (required).
   3. A **log level** (each instrumentation point declares its own log
      level) or log level range to match (optional; only valid for user
      space domain).
index e6a67146e2950d2fa08ef22c49de709b85ef04d3..08b2f3f2a32a46f3fcd396548320ea36e68534e9 100644 (file)
@@ -4,8 +4,9 @@ id: saving-loading-tracing-session
 
 Configuring a tracing session may be long: creating and enabling
 channels with specific parameters, enabling kernel and user space
-domain events with specific log levels and filters, adding context
-to some channels, etc. If you're going to use LTTng to solve real
+domain events with specific log levels and filters, and adding context
+to some channels are just a few of the many possible operations using
+the `lttng` command line tool. If you're going to use LTTng to solve real
 world problems, chances are you're going to have to record events using
 the same tracing session setup over and over, modifying a few variables
 each time in your instrumented program or environment. To avoid
index ffafac99cfbd2acecfcd30ed4b669df394a68b82..24858cea454c1096540b04b9466b57bc514e0c3c 100644 (file)
@@ -10,9 +10,9 @@ LTTng-UST package includes a dynamically loaded library
 
 Since C and C++ are the base languages of virtually all other
 programming languages
-(Java virtual machine, Python, Perl, PHP and Node.js interpreters, etc.),
-implementing user space tracing for an unsupported language is just a
-matter of using the LTTng-UST C API at the right places.
+(Java virtual machine, Python, Perl, PHP and Node.js interpreters, to
+name a few), implementing user space tracing for an unsupported language
+is just a matter of using the LTTng-UST C API at the right places.
 
 The usual work flow to instrument a user space C application with
 LTTng-UST is:
index 059091314ec47f92c6133b4cc8d1e8bb0b080bb7..48a6e69e3cf78affe8c8b81272b62157ac93115c 100644 (file)
@@ -9,7 +9,7 @@ _[Instrumenting](#doc-instrumenting)_ is the process of inserting probes
 into some source code. It can be done manually, by writing tracepoint
 calls at specific locations in the source code of the program to trace,
 or more automatically using dynamic probes (address in assembled code,
-symbol name, function entry/return, etc.).
+symbol name, function entry/return, and others).
 
 It has to be noted that, as an LTTng user, you may not have to worry
 about the instrumentation process. Indeed, you may want to trace a
@@ -21,7 +21,8 @@ _[Controlling tracing](#doc-controlling-tracing)_ is everything
 that can be done by the LTTng session daemon, which is controlled using
 `liblttng-ctl` or its command line utility, `lttng`: creating tracing
 sessions, listing tracing sessions and events, enabling/disabling
-events, starting/stopping the tracers, taking snapshots, etc.
+events, starting/stopping the tracers, taking snapshots, amongst many
+other commands.
 
 This chapter is a complete user guide of both activities,
 with common use cases of LTTng exposed throughout the text. It is
This page took 0.027862 seconds and 4 git commands to generate.