[Data Forge] Add parser for ES flag#248536
Merged
justinkambic merged 3 commits intoelastic:mainfrom Jan 13, 2026
Merged
Conversation
…function to ensure valid input. This change improves the robustness of the command-line interface.
Contributor
|
Pinging @elastic/actionable-obs-team (Team:actionable-obs) |
Contributor
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]
History
|
baileycash-elastic
approved these changes
Jan 13, 2026
smith
pushed a commit
to smith/kibana
that referenced
this pull request
Jan 16, 2026
## Summary I was utilizing Data Forge to create some fake data today, and the script continually crashed when I provided the `--payload-size` flag. After researching the script, I noted that we could include a parser for this flag to prevent the crash, the command worked with this change in place. ## Testing Example command: ```bash # failed for me on main, works on this branch NODE_OPTIONS="--max-old-space-size=8192" node x-pack/scripts/data_forge.js \ --events-per-cycle 50 \ --lookback now-2d \ --dataset fake_stack \ --payload-size 5000 \ --concurrency 3 ```
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.
Summary
I was utilizing Data Forge to create some fake data today, and the script continually crashed when I provided the
--payload-sizeflag. After researching the script, I noted that we could include a parser for this flag to prevent the crash, the command worked with this change in place.Testing
Example command: