You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/cli.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1020,7 +1020,9 @@ The `log` command is used to query the execution metadata associated with pipeli
1020
1020
: Show log entries for runs executed *but* the specified one.
1021
1021
1022
1022
`-f, -fields`
1023
-
: Comma-separated list of fields to include in the printed log. Use the `-l` option to see the list of available fields.
1023
+
: Comma-separated list of fields to include in the printed log.
1024
+
: The same fields as the `trace.fields` option can be specified here, as well as `stdout` and `stderr`. The trace fields `%cpu` and `%mem` must be specified as `pcpu` and `pmem`, respectively.
1025
+
: Use the `-l` option to see the complete list of available fields.
1024
1026
1025
1027
`-F, -filter`
1026
1028
: Filter log entries by a custom expression, e.g. `process =~ /hello.*/ && status == 'COMPLETED'`.
: Task execution time i.e. delta between completion and start timestamp.
1616
+
1617
+
`queue`
1618
+
: The queue that the executor attempted to run the process on.
1619
+
1620
+
`%cpu`
1621
+
: Percentage of CPU used by the process.
1622
+
1623
+
`%mem`
1624
+
: Percentage of memory used by the process.
1625
+
1626
+
`rss`
1627
+
: Real memory (resident set) size of the process. Equivalent to `ps -o rss` .
1628
+
1629
+
`vmem`
1630
+
: Virtual memory size of the process. Equivalent to `ps -o vsize` .
1631
+
1632
+
`peak_rss`
1633
+
: Peak of real memory. Data is read from field `VmHWM` in `/proc/$pid/status` file.
1634
+
1635
+
`peak_vmem`
1636
+
: Peak of virtual memory. Data is read from field `VmPeak` in `/proc/$pid/status` file.
1637
+
1638
+
`rchar`
1639
+
: Number of bytes the process read, using any read-like system call from files, pipes, tty, etc. Data is read from `/proc/$pid/io`.
1640
+
1641
+
`wchar`
1642
+
: Number of bytes the process wrote, using any write-like system call. Data is read from `/proc/$pid/io`.
1643
+
1644
+
`syscr`
1645
+
: Number of read-like system call invocations that the process performed. Data is read from `/proc/$pid/io`.
1646
+
1647
+
`syscw`
1648
+
: Number of write-like system call invocations that the process performed. Data is read from `/proc/$pid/io`.
1649
+
1650
+
`read_bytes`
1651
+
: Number of bytes the process directly read from disk. Data is read from `/proc/$pid/io`.
1652
+
1653
+
`write_bytes`
1654
+
: Number of bytes the process originally dirtied in the page-cache (assuming they will go to disk later). Data is read from `/proc/$pid/io`.
1655
+
1656
+
`vol_ctxt`
1657
+
: Number of voluntary context switches. Data is read from field `voluntary_ctxt_switches` in `/proc/$pid/status` file.
1658
+
1659
+
`inv_ctxt`
1660
+
: Number of involuntary context switches. Data is read from field `nonvoluntary_ctxt_switches` in `/proc/$pid/status` file.
1661
+
1662
+
`env`
1663
+
: The variables defined in task execution environment.
1664
+
1665
+
`workdir`
1666
+
: The directory path where the task was executed.
1667
+
1668
+
`script`
1669
+
: The task command script.
1670
+
1671
+
`scratch`
1672
+
: The value of the process `scratch` directive.
1673
+
1674
+
`error_action`
1675
+
: The action applied on error for task failure.
1676
+
1677
+
`hostname`
1678
+
: The host on which the task was executed. Supported only for the Kubernetes executor yet. Activate with `k8s.fetchNodeName = true` in the Nextflow config file.
1679
+
1680
+
`cpu_model`
1681
+
: The name of the CPU model used to execute the task. This data is read from`/proc/cpuinfo`.
1528
1682
1529
1683
`trace.file`
1530
1684
: Trace file name (default: `'trace-<timestamp>.txt'`).
0 commit comments