v0.81.4
🧪 Experiments Updated
The reports
experiment now supports the --summary-unit-duration
flag
As part of delivering #3628 , the reports experiment has been updated to support optionally displaying unit-level duration information in the Run Summary.
You can now optionally display the duration for each unit run as part of the Run Summary by adding the --summary-unit-duration
flag to your run
commands:
e.g.
$ terragrunt run --all plan --summary-unit-duration
# Omitted for brevity...
❯❯ Run Summary
Duration: 10m
long-running-unit: 10m
medium-running-unit: 12s
short-running-unit: 5ms
Units: 3
Succeeded: 3
By default, this information will be omitted.
For more information, see Showing unit durations in the docs.
What's Changed
- feat: Improving testing & documentation by @yhakbar in #4409
- feat: Adding
--summary-unit-duration
by @yhakbar in #4410
Full Changelog: v0.81.3...v0.81.4