-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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(crons): Implement an all checks page for crons #85202
Conversation
Bundle ReportChanges will increase total bundle size by 44.69kB (0.14%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: app-webpack-bundle-array-pushAssets Changed:
Files in
Files in
Files in
Files in
Files in
Files in
|
❌ 1 Tests Failed:
View the top 1 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
@@ -0,0 +1,23 @@ | |||
import {CheckInStatus, CheckIn, ScheduleType} from 'sentry/views/monitors/types'; | |||
|
|||
export function CheckInFixture(params: Partial<CheckIn> = {}): CheckIn { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we really not have this already 😱
Co-authored-by: Evan Purkhiser <[email protected]>
Co-authored-by: Evan Purkhiser <[email protected]>
Co-authored-by: Evan Purkhiser <[email protected]>
Adds an all monitor checks page for cron issues with some custom cells. There is one thing that should be addressed though but it requires a backend fix, the schedule from the API currently returns the enum integer for the schedule (e.g.
1
instead ofcrontab
). I will put up a PR to fix this serialization, since without it, the number appears in the tool tip, along with 'Unknown Schedule'.todo