Update manual pages for 2.0.0-rc1
[babeltrace.git] / doc / man / babeltrace2-run.1.txt
... / ...
CommitLineData
1= babeltrace2-run(1)
2:manpagetype: command
3:revdate: 14 September 2019
4
5
6== NAME
7
8babeltrace2-run - Create a Babeltrace 2 trace processing graph and run it
9
10
11[[synopsis]]
12== SYNOPSIS
13
14[verse]
15*babeltrace2* [<<gen-opts,'GENERAL OPTIONS'>>] *run* [opt:--retry-duration='TIME-US']
16 opt:--connect='CONN-RULE'... 'COMPONENTS'
17
18
19== DESCRIPTION
20
21The `run` command creates a Babeltrace~2 trace processing graph and
22runs it.
23
24include::common-see-babeltrace2-intro.txt[]
25
26The `run` command dynamically loads Babeltrace~2 plugins which
27supply component classes. With the `run` command, you specify which
28component classes to instantiate as components and how to connect them.
29
30The steps to write a `babeltrace2 run` command line are:
31
32. Specify which component classes to instantiate as components with many
33 opt:--component options and how to configure them.
34+
35This is the 'COMPONENTS' part of the <<synopsis,synopsis>>. See
36<<create-comps,``Create components''>> to learn more.
37
38. Specify how to connect components together with one or more
39 opt:--connect options.
40+
41See <<connect-comps,``Connect components''>> to learn more.
42
43NOTE: The man:babeltrace2-convert(1) command is a specialization of the
44`run` command for the very common case of converting one or more traces:
45it generates a `run` command line and executes it. You can use its
46manopt:babeltrace2-convert(1):--run-args or
47manopt:babeltrace2-convert(1):--run-args-0 option to make it print the
48equivalent `run` command line instead.
49
50
51[[create-comps]]
52=== Create components
53
54To create a component, use the opt:--component option. This option
55specifies:
56
57* The name of the component, unique amongst all the component names of
58 the trace processing graph.
59
60* The type of the component class to instantiate: source, filter, or
61 sink.
62
63* The name of the plugin in which to find the component class to
64 instantiate.
65
66* The name of the component class to instantiate.
67
68Use the opt:--component option multiple times to create multiple
69components. You can instantiate the same component class multiple times
70as different components.
71
72At any point in the command line, the opt:--base-params sets the current
73base initialization parameters and the opt:--reset-base-params resets
74them. When you specify a opt:--component option, its initial
75initialization parameters are a copy of the current base initialization
76parameters.
77
78Immediately following a opt:--component option on the command line, the
79created component is known as the _current component_ (until the next
80opt:--component option).
81
82The opt:--params='PARAMS' option adds parameters to the current
83component's initialization parameters. If 'PARAMS' contains a key which
84exists in the current component's initialization parameters, this
85parameter is replaced.
86
87
88[[connect-comps]]
89=== Connect components
90
91The components which you create from component classes with the
92opt:--component option (see <<create-comps,``Create components''>>) add
93input and output _ports_ depending on their type. An output port is from
94where messages, like trace events, are sent. An input port is where
95messages are received. For a given component, each port has a unique
96name.
97
98The purpose of the `run` command is to create a trace processing graph,
99that is, to know which component ports to connect together. The command
100achieves this with the help of the connection rules that you provide
101with one or more opt:--connect='CONN-RULE' options.
102
103The format of 'CONN-RULE' is:
104
105[verse]
106__UP-COMP-PAT__[.__UP-PORT-PAT__]:__DOWN-COMP-PAT__[.__DOWN-PORT-PAT__]
107
108'UP-COMP-PAT'::
109 Upstream component name pattern.
110
111'UP-PORT-PAT'::
112 Upstream (output) port name pattern.
113
114'DOWN-COMP-PAT'::
115 Downstream component name pattern.
116
117'DOWN-PORT-PAT'::
118 Downstream (input) port name pattern.
119
120When a source or filter component adds a new output port within the
121processing graph, the `run` command does the following to find an
122input port to connect it to:
123
124----
125For each connection rule (--connect options, in order):
126 If the output port's component's name matches UP-COMP-PAT and the
127 output port's name matches UP-PORT-PAT:
128 For each component COMP in the trace processing graph:
129 If the name of COMP matches DOWN-COMP-PAT:
130 Select the first input port of COMP of which the name matches
131 DOWN-PORT-PAT, or fail with no match.
132
133No possible connection: fail with no match.
134----
135
136__UP-COMP-PAT__, __UP-PORT-PAT__, __DOWN-COMP-PAT__, and
137__DOWN-PORT-PAT__ are globbing patterns where only the wildcard
138character, `*`, is special: it matches zero or more characters. You must
139escape the `*`, `?`, `[`, `.`, `:`, and :bs: characters with :bs:.
140
141When you do not specify __UP-PORT-PAT__ or __DOWN-PORT-PAT__, they are
142equivalent to `*`.
143
144You can leverage this connection mechanism to specify fallbacks with a
145careful use of wildcards, as the order of the opt:--connect options on
146the command line is significant. For example:
147
148----
149--connect='A.out*:B.in*' --connect=A:B --connect='*:C'
150----
151
152With those connection rules, the `run` command connects:
153
154* Any output port of which the name starts with `out` of component `A`
155 to the first input port of which the name starts with `in` of
156 component `B`.
157
158* Any other output port of component `A` to the first available input
159 port of component `B`.
160
161* Any other output port (of any component except `A`) to the first
162 available input port of component `C`.
163
164The `run` command fails when it cannot find an input port to which to
165connect a given output port using the provided connection rules.
166
167See <<examples,``EXAMPLES''>> for more examples.
168
169
170== OPTIONS
171
172include::common-gen-options.txt[]
173
174
175=== Component creation
176
177See <<create-comps,``Create components''>> for more details.
178
179opt:-b 'PARAMS'::
180opt:--base-params='PARAMS'::
181 Set the current base parameters to 'PARAMS'.
182+
183You can reset the current base parameters with the
184opt:--reset-base-params option.
185+
186See the opt:--params option for the format of 'PARAMS'.
187
188opt:-c __NAME__:__COMP-CLS-TYPE__.'PLUGIN-NAME'.'COMP-CLS-NAME'::
189opt:--component=__NAME__:__COMP-CLS-TYPE__.'PLUGIN-NAME'.'COMP-CLS-NAME'::
190 Create a component named 'NAME' from the component class of type
191 'COMP-CLS-TYPE' named 'COMP-CLS-NAME' found in the plugin named
192 'PLUGIN-NAME', and set it as the current component.
193+
194The available values for 'TYPE' are:
195+
196--
197`source`::
198`src`::
199 Source component class.
200
201`filter`::
202`flt`::
203 Filter component class.
204
205`sink`::
206 Sink component class.
207--
208+
209The initial initialization parameters of this component are copied from
210the current base initialization parameters (see the opt:--base-params
211option).
212
213opt:-l 'LVL'::
214opt:--log-level='LVL'::
215 Set the log level of the current component to 'LVL'.
216+
217The available values for 'LVL' are:
218+
219--
220include::common-log-levels.txt[]
221--
222
223opt:-p 'PARAMS'::
224opt:--params='PARAMS'::
225 Add 'PARAMS' to the initialization parameters of the current
226 component.
227+
228If 'PARAMS' contains a key which exists in the current component's
229initialization parameters, replace the parameter.
230+
231--
232include::common-cmd-params-format.txt[]
233--
234
235opt:-r::
236opt:--reset-base-params::
237 Reset the current base parameters.
238+
239You can set the current base parameters with the opt:--base-params
240option.
241
242
243=== Component connection
244
245opt:-x 'CONN-RULE'::
246opt:--connect='CONN-RULE'::
247 Add the connection rule 'CONN-RULE'.
248+
249The format of 'CONN-RULE' is:
250+
251[verse]
252__UP-COMP-PAT__[.__UP-PORT-PAT__]:__DOWN-COMP-PAT__[.__DOWN-PORT-PAT__]
253+
254--
255'UP-COMP-PAT'::
256 Upstream component name pattern.
257
258'UP-PORT-PAT'::
259 Upstream (output) port name pattern.
260
261'DOWN-COMP-PAT'::
262 Downstream component name pattern.
263
264'DOWN-PORT-PAT'::
265 Downstream (input) port name pattern.
266--
267+
268See <<connect-comps,``Connect components''>> to learn more.
269
270
271=== Graph configuration
272
273opt:--retry-duration='TIME-US'::
274 Set the duration of a single retry to 'TIME-US'~µs when a sink
275 component reports "try again later" (busy network or file system,
276 for example).
277+
278Default: 100000 (100~ms).
279
280
281include::common-cmd-info-options.txt[]
282
283
284[[examples]]
285== EXAMPLES
286
287.Create a single-port source component and a single-port sink component and connect them.
288====
289[role="term"]
290----
291$ babeltrace2 run --component=A:src.plug.my-src \
292 --component=B:sink.plug.my-sink \
293 --connect=A:B
294----
295
296Possible resulting graph:
297
298----
299+-----------------+ +-------------------+
300| src.plug.my-src | | sink.plug.my-sink |
301| [A] | | [B] |
302| | | |
303| out @--->@ in |
304+-----------------+ +-------------------+
305----
306====
307
308.Use the opt:--params option to set the current component's initialization parameters.
309====
310In this example, the opt:--params option only applies to component
311`the-source`.
312
313[role="term"]
314----
315$ babeltrace2 run --component=the-source:src.my-plugin.my-src \
316 --params=offset=123,flag=true \
317 --component=the-sink:sink.my-plugin.my-sink \
318 --connect=the-source:the-sink
319----
320====
321
322.Use the opt:--base-params and opt:--reset-base-params options to set and reset the current base initialization parameters.
323====
324In this example, the effective initialization parameters of the
325created components are:
326
327Component `A`::
328 `offset=1203, flag=false`
329
330Component `B`::
331 `offset=1203, flag=true, type=event`
332
333Component `C`::
334 `ratio=0.25`
335
336[role="term"]
337----
338$ babeltrace2 run --base-params=offset=1203,flag=false \
339 --component=A:src.plugin.compcls \
340 --component=B:flt.plugin.compcls \
341 --params=flag=true,type=event \
342 --reset-base-params \
343 --component=C:sink.plugin.compcls \
344 --params=ratio=0.25 \
345 --connect=A:B --connect=B:C
346----
347====
348
349.Specify a component connection fallback rule.
350====
351In this example, any `A` output port of which the name starts with
352`foo` is connected to a `B` input port of which the name starts with
353`nin`. Any other `A` output port is connected to a `B` input port of
354which the name starts with `oth`.
355
356The order of the opt:--connect options is important here: the opposite
357order would create a system in which the first rule is always satisfied,
358and _any_ `A` output port, whatever its name, would be connected to a
359`B` input port with a name that starts with `oth`.
360
361[role="term"]
362----
363$ babeltrace2 run --component=A:src.plug.my-src \
364 --component=B:sink.plug.my-sink \
365 --connect='A.foo*:B:nin*' --connect='A:B.oth*'
366----
367
368Possible resulting graph:
369
370----
371+-----------------+ +-------------------+
372| src.plug.my-src | | sink.plug.my-sink |
373| [A] | | [B] |
374| | | |
375| foot @--->@ nine |
376| foodies @--->@ ninja |
377| some-port @--->@ othello |
378| hello @--->@ other |
379+-----------------+ +-------------------+
380----
381====
382
383
384include::common-cli-env.txt[]
385
386
387include::common-cli-files.txt[]
388
389
390include::common-cmd-footer.txt[]
391
392
393== SEE ALSO
394
395man:babeltrace2-intro(7),
396man:babeltrace2(1),
397man:babeltrace2-convert(1)
This page took 0.041804 seconds and 4 git commands to generate.