1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-strict.dtd">
2 <html xmlns=
"http://www.w3.org/1999/xhtml" xml:
lang=
"en" lang=
"en">
5 <title>The LTTng trace format
</title>
10 <h1>The LTTng trace format
</h1>
13 <em>Last update:
2008/
06/
02</em>
17 This document describes the LTTng trace format. It should be useful mainly to
18 developers who code the LTTng tracer or the traceread LTTV library, as this
19 library offers all the necessary abstractions on top of the raw trace data.
23 A trace is contained in a directory tree. To send a trace remotely, the
24 directory tree may be tar-gzipped. The trace
<tt>foo
</tt>, placed in the home
25 directory of user john, /home/john, would have the following contents:
55 The root directory contains a tracefile for each cpu, numbered from
0,
56 in .trace format. A uniprocessor thus only contains the file cpu_0.
57 A multi-processor with some unused (possibly hotplug) CPU slots may have some
58 unused CPU numbers. For instance an
8 way SMP board with
6 CPUs randomly
59 installed may produce tracefiles named
0,
1,
2,
4,
6,
7.
63 The files in the control directory also follow the .trace format and are
64 also per cpu. The
"facilities" files only contain
"core" marker_id,
65 marker_format and time_heartbeat events. The first two are used to describe the
66 events that are in the trace. The other control files contain the initial
67 system state and various subsequent important events, for example process
68 creations and exit. The interest of placing such subsequent events in control
69 trace files instead of (or in addition to) in the per cpu trace files is that
70 they may be accessed more quickly/conveniently and that they may be kept even
71 when the per cpu files are overwritten in
"flight recorder mode".
77 Each tracefile is divided into equal size blocks with a header at the beginning
78 of the block. Events are packed sequentially in the block starting right after
83 Each block consists of :
87 block start/end header
90 event
1 variable length data
92 event
2 variable length data
97 <h3>The block start/end header
</h3>
101 * the beginning of buffer information
103 * TSC at the beginning of the buffer
105 * frequency of the CPUs at the beginning of the buffer.
107 * the end of buffer information
109 * TSC at the end of the buffer
111 * frequency of the CPUs at the end of the buffer.
113 * number of bytes of padding at the end of the buffer.
115 * size of the sub-buffer.
120 <h3>The trace header
</h3>
124 *
0x00D6B7ED, used to check the trace byte order vs host byte order.
126 * Architecture type of the traced machine.
128 * Architecture variant of the traced machine. May be unused on some arch.
129 uint32 float_word_order
130 * Byte order of floats and doubles, sometimes different from integer byte
131 order. Useful only for user space traces.
133 * Size (in bytes) of the void * on the traced machine.
135 * major version of the trace.
137 * minor version of the trace.
138 uint8 flight_recorder
139 * Is flight recorder mode activated ? If yes, data might be missing
140 (overwritten) in the trace.
142 * Does this trace have heartbeat timer event activated ?
143 Yes (
1) -
> Event header has
32 bits TSC
144 No (
0) -
> Event header has
64 bits TSC
146 * Are event headers in this trace aligned ?
147 Yes -
> the value indicates the alignment
148 No (
0) -
> data is packed.
149 uint8 tsc_lsb_truncate
150 * Used for compact channels
152 * Used for compact channels
153 uint8 compact_data_shift
154 * Used for compact channels
156 event time is always calculated from :
157 trace_start_time + ((event_tsc - trace_start_tsc) * (freq / freq_scale))
159 * CPUs clock frequency at the beginnig of the trace.
161 * TSC at the beginning of the trace.
162 uint64 start_monotonic
163 * monotonically increasing time at the beginning of the trace.
164 (currently not supported)
166 * Real time at the beginning of the trace (as given by date, adjusted by NTP)
167 This is the only time reference with the real world : the rest of the trace
168 has monotonically increasing time from this point (with TSC difference and
175 <h3>Event header
</h3>
178 Event headers differ according to the following conditions : does the
179 traced system have a heartbeat timer? Is tracing alignment activated?
189 * if has_heartbeat :
32 LSB of the cycle counter at the event record time.
190 * else :
64 bits complete cycle counter.
192 * Numerical ID of the facility corresponding to the event. See the facility
193 tracefile to know which facility ID matches which facility name and
196 * Numerical ID of the event inside the facility.
198 * Size of the variable length data that follows this header.
202 Event header alignment
206 If trace alignment is activated (
<tt>alignment
</tt>), the event header is
207 aligned. In addition, padding is automatically added after the event header so
208 the variable length data is automatically aligned on the architecture size.
212 <h2>System description</h2>
215 The system type description, in system.xml, looks like:
221 domainname="polymtl.ca"
226 kernel_release="2.4.18-686-smp"
227 kernel_version="#1 SMP Sun Apr 14 12:07:19 EST 2002"
230 hardware_platform="unknown"
231 operating_system="Linux"
232 ltt_major_version="2"
233 ltt_minor_version="0"
234 ltt_block_size="100000"
236 Some comments about the system
241 The system attributes kernel_name, node_name, kernel_release,
242 kernel_version, machine, processor, hardware_platform and operating_system
243 come from the uname(1) program. The domainname attribute is obtained from
244 the "hostname --domain" command. The arch_size attribute is one of
245 LP32, ILP32, LP64 or ILP64 and specifies the length in bits of integers (I),
246 long (L) and pointers (P). The endian attribute is "little" or "big".
247 While the arch_size and endian attributes could be deduced from the platform
248 type, having these explicit allows analysing traces from yet unknown
249 platforms. The cpu attribute specifies the maximum number of processors in
250 the system; only tracefiles 0 to this maximum - 1 may exist in the cpu
255 Within the system element, the text enclosed may describe further the
263 Bookmarks are user supplied information added to a trace. They contain user
264 annotations attached to a time interval.
270 <location name=name cpu=n start_time=t end_time=t>Some text</location>
276 The interval is defined using either "time=" or "start_time=" and
277 "end_time=", or "cycle=" or "start_cycle=" and "end_cycle=".
278 The time is in seconds with decimals up to nanoseconds and cycle counts
279 are unsigned integers with a 64 bits range. The cpu attribute is optional.