Summary: Adjust JSON output to the new data structure #4647
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What?
It adjusts the code responsible for the JSON format of the end-of-test summary to be compatible with the new data structure introduced in #4089.
Why?
As pointed out in #4640, the new data structure for summary data introduced in the aforementioned PR isn't compatible with the existing code, completely breaking that feature.
We quickly fixed the feature with #4642, which was nice.
However, I think we can do better, and keep the JSON summary structure much closer to the existing one.
Complete compatibility isn't possible (or isn't worth the effort), but there's room for improvement.
In summary, the new code produces an JSON document that looks like:
So, the main remarkable changes are:
path
andid
attributes.group_duration
), now aren't unless you use--summary-mode=full
.--summary-mode=full
.If you want to compare a concrete example, based on the same test case used for the revamped summary, you can have a look at these two files attached:
You can also see the comparison with https://nosmileface.dev/jsondiff/ in the following screenshot:
However, certain diffs aren't very easy, because the order of most of the information displayed in the legacy (old) format is not predictable (every execution it has different order). I tried to make the new output a bit more predictable by sorting certain keys.
Checklist
make check
) and all pass.Checklist: Documentation (only for k6 maintainers and if relevant)
Please do not merge this PR until the following items are filled out.
Related PR(s)/Issue(s)