feat: Add the ability to export the Entity System trend data to a csv#397
Merged
codyward-skybox merged 3 commits intoJul 7, 2026
mainMojang/minecraft-debugger:mainfrom
cody.ward/ecs_exportMojang/minecraft-debugger:cody.ward/ecs_exportCopy head branch name to clipboard
Merged
feat: Add the ability to export the Entity System trend data to a csv#397codyward-skybox merged 3 commits intomainMojang/minecraft-debugger:mainfrom cody.ward/ecs_exportMojang/minecraft-debugger:cody.ward/ecs_exportCopy head branch name to clipboard
codyward-skybox merged 3 commits into
mainMojang/minecraft-debugger:mainfrom
cody.ward/ecs_exportMojang/minecraft-debugger:cody.ward/ecs_exportCopy head branch name to clipboard
Conversation
anthonywongskyboxlabs
approved these changes
Jul 7, 2026
| saveLabel: 'Export', | ||
| defaultUri: workspaceFolderUri ? Uri.joinPath(workspaceFolderUri, suggestedFileName) : undefined, | ||
| filters: { | ||
| 'CSV Files': ['csv'], |
Contributor
There was a problem hiding this comment.
Looks like there's a warning here
Contributor
Author
There was a problem hiding this comment.
This is the VS Code API fighting with our linter, these need to be human readable: https://code.visualstudio.com/api/references/vscode-api#SaveDialogOptions
I'm thinking I might make a follow up story to do a pass on our linter warnings and see if we can adjust some configurations to make everything happy, as this has come up numerous times now.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This change adds the ability to export the Entity and System trend data to a CSV for external analysis.
As part of this change, I've also ensured that using the
Clearbutton will reset all the trend data. Additionally I've added the ability to increase the trend data capture duration via user dropdown, similar to how we handle the CPU Profiler capture window.