-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
feat(dashboards): Register pre-built dashboards for Mobile Vitals #105149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(dashboards): Register pre-built dashboards for Mobile Vitals #105149
Conversation
|
🚨 Warning: This pull request contains Frontend and Backend changes! It's discouraged to make changes to Sentry's Frontend and Backend in a single pull request. The Frontend and Backend are not atomically deployed. If the changes are interdependent of each other, they must be separated into two pull requests and be made forward or backwards compatible, such that the Backend or Frontend can be safely deployed independently. Have questions? Please ask in the |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #105149 +/- ##
===========================================
+ Coverage 80.61% 80.62% +0.01%
===========================================
Files 9419 9419
Lines 403881 403883 +2
Branches 25637 25637
===========================================
+ Hits 325571 325633 +62
+ Misses 77841 77781 -60
Partials 469 469 |
| import {type DashboardDetails} from 'sentry/views/dashboards/types'; | ||
| import {HTTP_DOMAIN_SUMMARY_PREBUILT_CONFIG} from 'sentry/views/dashboards/utils/prebuiltConfigs/http/domainSummary'; | ||
| import {HTTP_PREBUILT_CONFIG} from 'sentry/views/dashboards/utils/prebuiltConfigs/http/http'; | ||
| import {MOBILE_VITALS_APP_STARTS_PREBUILT_CONFIG} from 'sentry/views/dashboards/utils/prebuiltConfigs/mobileVitals/appStarts'; |
This comment was marked as outdated.
This comment was marked as outdated.
Sorry, something went wrong.
Blank configs for now! Just getting the configurations into the code so I can reserve the pre-built dashboard IDs and make sure everything's there. CI will complain that I have both frontend and backend changes, but it's safe in this case, it really doesn't matter.