Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Summary: Adjust JSON output to the new data structure #4647

Closed
wants to merge 2 commits into from

Conversation

joanlopez
Copy link
Contributor

@joanlopez joanlopez commented Mar 21, 2025

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:

{
  "thresholds": {...},
  "metrics": {...},
  "root_group": {
    "name": "...",
    "metrics": {...},
    "groups": {...},
    "scenarios": {...}
  }
}

So, the main remarkable changes are:

  • Checks and groups now don't have path and id attributes.
  • Now it includes thresholds as a separate -root-level- section, instead of being part of the metrics object.
  • Groups also contain metrics inside, so "partial" metrics are included for groups other than the "root group".
  • Scenarios are also included, following the same structure as groups.
  • Some metrics previously added (e.g. group_duration), now aren't unless you use --summary-mode=full.
  • Sub-groups checks aren't included unless you use --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:

screencapture-nosmileface-dev-jsondiff-2025-03-24-10_48_07

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

  • I have performed a self-review of my code.
  • I have commented on my code, particularly in hard-to-understand areas.
  • I have added tests for my changes.
  • I have run linter and tests locally (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.

  • I have added the correct milestone and labels to the PR.
  • I have updated the release notes: link
  • I have updated or added an issue to the k6-documentation: grafana/k6-docs#NUMBER if applicable
  • I have updated or added an issue to the TypeScript definitions: grafana/k6-DefinitelyTyped#NUMBER if applicable

Related PR(s)/Issue(s)

@joanlopez joanlopez added ux breaking change for PRs that need to be mentioned in the breaking changes section of the release notes labels Mar 21, 2025
@joanlopez joanlopez added this to the v1.0.0-rc1 milestone Mar 21, 2025
@joanlopez joanlopez requested review from mstoykov and oleiade March 21, 2025 16:32
@joanlopez joanlopez self-assigned this Mar 21, 2025
@joanlopez joanlopez requested a review from a team as a code owner March 21, 2025 16:32
@joanlopez
Copy link
Contributor Author

Discarded, in favor of #4649

@joanlopez joanlopez closed this Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking change for PRs that need to be mentioned in the breaking changes section of the release notes ux
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant