feat(dashboards): register backend overview#106541
Merged
DominikB2014 merged 1 commit intomasterfrom Jan 19, 2026
Merged
Conversation
Comment on lines
+138
to
+141
| { | ||
| "prebuilt_id": PrebuiltDashboardId.BACKEND_OVERVIEW, | ||
| "title": "Backend Overview", | ||
| }, |
Contributor
There was a problem hiding this comment.
Bug: The new 'Backend Overview' dashboard is registered but won't be synced because its ID (12) isn't added to the dashboards.prebuilt-dashboard-ids option, which is empty by default.
Severity: HIGH
Suggested Fix
To enable the new 'Backend Overview' dashboard, add its ID (12) to the default list for the dashboards.prebuilt-dashboard-ids option in src/sentry/options/defaults.py. This will ensure it is synced for organizations by default.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: src/sentry/dashboards/endpoints/organization_dashboards.py#L138-L141
Potential issue: The PR adds the 'Backend Overview' prebuilt dashboard with ID `12`.
However, the dashboard synchronization logic in `sync_prebuilt_dashboards()` only
creates dashboards whose IDs are present in the `dashboards.prebuilt-dashboard-ids`
system option or if the
`organizations:dashboards-sync-all-registered-prebuilt-dashboards` feature flag is
active. Since the option defaults to an empty list and the flag is not enabled by this
PR, the new dashboard will never be created for any organization. This makes the new
feature non-functional by default.
Did we get this right? 👍 / 👎 to inform future reviews.
Contributor
Author
There was a problem hiding this comment.
This is fine, we don't want it enabled
narsaynorath
approved these changes
Jan 19, 2026
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.
Register backend overview as prebuilt dashboard