feat(dashboards): Adds series display type support for Dashboard Issue Widgets#104291
Merged
edwardgou-sentry merged 4 commits intomasterfrom Dec 3, 2025
Merged
feat(dashboards): Adds series display type support for Dashboard Issue Widgets#104291edwardgou-sentry merged 4 commits intomasterfrom
edwardgou-sentry merged 4 commits intomasterfrom
Conversation
1bdd043 to
4a62ea1
Compare
narsaynorath
approved these changes
Dec 3, 2025
Member
narsaynorath
left a comment
There was a problem hiding this comment.
Everything looks good to me. I just had a question about the intervals, but that's for my own understanding
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Adds timeseries support to Issue type widgets in dashboards. Feature is gated on the
displayTypedropdown by checking for thedashboards-issue-widget-series-display-typefeature flag.Current feature limitations:
count(new_issues)andcount(resolved_issuesare supported yAxes.release(TODO: this is not yet added to the UI, handle in follow up PR)Implementation notes:
/issues-timeseriesendpointIssuesSeriesResponsetype to match the response payload received in the frontend/issues-timeseriesendpoint not sharing query parameters with the/issuesendpoint for tables, specialized logic has been added to handle resetting the widget builder state when switching between table and series display types:typeSelector.tsxhas been updated to reset the current query state on changegenerateIssueWidgetFieldOptionsupdated to accept display type and return results based on table or series displaydefaultSeriesFieldwhich represents the default field for a series/chart display widget. Used as the default when adding a new yAxis to an Issue series widget.defaultSeriesWidgetQuerywhich represents the default widget query for a series/chart display. This is used for Issue widgets when switching between table and series display views to set the default query.