cli: Remove support for --key and --value arguments
[babeltrace.git] / doc / man / babeltrace-convert.1.txt
index 8f4aff1a776e2861360a150cf542d35a7de48192..aefc4c17ebb147f12e4455410c8e3254b3bfd9d1 100644 (file)
@@ -26,6 +26,7 @@ Print the metadata text of a CTF trace:
 *babeltrace convert* ['GENERAL OPTIONS'] [opt:--omit-home-plugin-path]
                    [opt:--omit-system-plugin-path]
                    [opt:--plugin-path='PATH'[:__PATH__]...]
+                   [opt:--output='OUTPATH']
                    opt:--output-format=`ctf-metadata` 'TRACE-PATH'
 
 Print the available http://lttng.org/docs/#doc-lttng-live[LTTng live]
@@ -35,7 +36,7 @@ sessions:
 *babeltrace convert* ['GENERAL OPTIONS'] [opt:--omit-home-plugin-path]
                    [opt:--omit-system-plugin-path]
                    [opt:--plugin-path='PATH'[:__PATH__]...]
-                   opt:--input-format=`lttng-live` 'URL'
+                   [opt:--output='OUTPATH'] opt:--input-format=`lttng-live` 'URL'
 
 
 DESCRIPTION
@@ -132,7 +133,7 @@ It is equivalent to the following command:
 [role="term"]
 ----
 $ babeltrace run --component=ctf-fs:src.ctf.fs \
-                 --key=path --value=/path/to/trace \
+                 --params=path=/path/to/trace \
                  --component=pretty:sink.text.pretty \
                  --component=muxer:filter.utils.muxer \
                  --connect=ctf-fs:muxer --connect=muxer:pretty
@@ -396,13 +397,13 @@ is:
 [role="term"]
 ----
 $ babeltrace run --component=src-ctf-fs:src.ctf.fs \
-                 --key=path --value=/path/to/input/trace \
+                 --params=path=/path/to/input/trace \
                  --component=sink-ctf-fs:sink.ctf.fs \
-                 --key=path --value=out-dir \
+                 --params=path=out-dir \
                  --component=muxer:flt.utils.muxer \
                  --component=trimmer:flt.utils.trimmer \
-                 --key=begin --value=22:14:38 \
-                 --key=end --value=22:15:07 \
+                 '--params=begin="22:14:38"' \
+                 '--params=end="22:15:07"' \
                  --component=dbginfo:flt.lttng-utils.debug-info \
                  --connect=src-ctf-fs:muxer --connect=muxer:trimmer \
                  --connect=trimmer:dbg-info \
@@ -779,11 +780,16 @@ component does not print the duration since the last event on the line.
 Shared options
 ~~~~~~~~~~~~~~
 opt:-w 'PATH', opt:--output='PATH'::
-    When you specify opt:--output-format=`ctf`, set the
-    manparam:sink.ctf.fs:path initialization parameter of the implicit
-    compcls:sink.ctf.fs component to 'PATH'. Otherwise, create an
-    implicit compcls:sink.text.pretty component and set its
-    manparam:sink.text.pretty:path initialization parameter to 'PATH'.
+    With opt:--output-format=`ctf-metadata` or
+    opt:--input-format=`lttng-live` (when printing the available LTTng
+    live sessions), write the text to the file 'PATH' instead of the
+    standard output.
++
+When you specify opt:--output-format=`ctf`, set the
+manparam:sink.ctf.fs:path initialization parameter of the implicit
+compcls:sink.ctf.fs component to 'PATH'. Otherwise, create an implicit
+compcls:sink.text.pretty component and set its
+manparam:sink.text.pretty:path initialization parameter to 'PATH'.
 +
 See man:babeltrace-sink.ctf.fs(7) and
 man:babeltrace-sink.text.pretty(7) to learn more about those
This page took 0.024722 seconds and 4 git commands to generate.