WIP: Waterfall Viewer - #168
Open
3dgiordano wants to merge 1 commit into
Open
Conversation
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 pull request introduces a new feature, the Waterfall Viewer, to the project. The Waterfall Viewer provides a browser-like, time-aligned visualization of sample executions, helping users analyze performance bottlenecks in test runs. The changes include comprehensive documentation, a new Java interface, and a main panel implementation for the viewer.
Major additions and documentation:
Documentation and User Guide:
README.mddescribing the Waterfall Viewer, including its purpose, usage, phases displayed, details panel, live/file-based operation, expanded window mode, and configuration options. [1] [2]blazemeter.waterfall.maxSamplesproperty, which limits the number of retained samples for memory management.Implementation of the Waterfall Viewer:
Core Components:
WaterfallHostinterface, defining actions required by the viewer's toolbar and supporting both embedded and expanded (windowed) modes.WaterfallPanelclass, implementing the main UI for the Waterfall Viewer. This panel handles sample queuing, periodic draining and rendering, selection management, switching between embedded and expanded modes, clearing/resetting results, and proper resource disposal.These changes lay the groundwork for a powerful, interactive visualization tool to help users diagnose and analyze performance issues in their test runs.