Correlated timeline lanes for Overview/Server Trends (#688)#791
Merged
erikdarlingdata merged 3 commits intodevfrom Apr 6, 2026
Merged
Correlated timeline lanes for Overview/Server Trends (#688)#791erikdarlingdata merged 3 commits intodevfrom
erikdarlingdata merged 3 commits intodevfrom
Conversation
Replaces the 2x2 chart grid with 5 vertically stacked lanes sharing a synchronized time axis and crosshair: CPU, Wait Stats, Blocking & Deadlocking, Memory, and I/O Latency. Hovering any lane shows values from all lanes at that time point. New files: - CorrelatedTimelineLanesControl (XAML + code-behind) - CorrelatedCrosshairManager (cross-chart sync with multi-series support) - GetTotalWaitTrendAsync (aggregated wait stats query) Also fixes GetDeadlockTrendAsync granularity from hourly to per-minute buckets to match blocking trend. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Ports the Lite correlated lanes feature to the Dashboard app: - Replaces Server Trends 2x2 grid with 5 synchronized lanes - Adds GetTotalWaitStatsTrendAsync (aggregate wait ms/sec trend) - Adds GetDeadlockTrendAsync (per-minute deadlock counts) - All queries read from existing collected data, no new collectors Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Resolve conflicts: keep correlated lanes, discard old overview methods Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
GetDeadlockTrendAsyncgranularity from hourly to per-minute buckets (both apps)GetTotalWaitTrendAsync(Lite) andGetTotalWaitStatsTrendAsync(Dashboard) for aggregated wait statsGetDeadlockTrendAsyncto DashboardNew files
*/Controls/CorrelatedTimelineLanesControl.xaml(.cs)— lane layout and data loading*/Helpers/CorrelatedCrosshairManager.cs— cross-chart sync with multi-series supportTest plan
🤖 Generated with Claude Code