Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/env-vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The following environment variables control the configuration of the Nextflow ru
`NXF_FUSION_TRACE`
: :::{versionadded} 26.04.0
:::
: When set to `true`, collect task resource metrics (CPU, memory, I/O) from the Fusion trace file (`.fusion/trace.json`) produced in the task work directory, replacing the metrics collected by the default bash command-trace wrapper. Requires Fusion to be enabled. GPU metrics from Fusion are always collected regardless of this setting.
: When set to `true`, collect task resource metrics (CPU, memory, I/O) from the Fusion trace file (`.fusion/trace.json`) produced in the task work directory, replacing the metrics collected by the default bash command-trace wrapper. Requires Fusion to be enabled. GPU metrics from Fusion are always collected regardless of this setting. Defaults to `false`.

`NXF_HOME`
: Nextflow home directory (default: `$HOME/.nextflow`).
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-commons/src/main/nextflow/Global.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Global {
* When {@code true}, Fusion trace metrics replace the bash command-trace wrapper
*/
static boolean isFusionTraceEnabled() {
return SysEnv.get('NXF_FUSION_TRACE', 'true') == 'true'
return SysEnv.get('NXF_FUSION_TRACE', 'false') == 'true'
}

/**
Expand Down
Loading