-
-
Notifications
You must be signed in to change notification settings - Fork 359
Add UptimeRobot incident reporting integration #5282
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
Open
inodb
wants to merge
1
commit into
cBioPortal:master
Choose a base branch
from
inodb:add-uptime-robot
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Adds support for automatically fetching and displaying ongoing events from an UptimeRobot status page as warning banners at the top of the portal. Configuration (both properties required): - uptime_robot_status_page_url: URL of the UptimeRobot status page - uptime_robot_api_key: API key for the event feed endpoint Features: - Automatically fetches events from UptimeRobot event feed API - Only displays active/ongoing events (status = 2) within their time window - Banner color adapts based on event severity (red/orange/blue/green) - Includes link to full status page for more details - Users can dismiss banners (stored in localStorage) - Status provider messages have priority over static portal messages Architecture: - Uses provider pattern for easy addition of new status integrations - IStatusProvider interface for all status page integrations - UptimeRobotStatusProvider implements the interface - STATUS_PROVIDERS registry for enabling/disabling providers - All provider logic self-contained (no clutter in UserMessage.tsx) File structure: src/shared/lib/statusProviders/ ├── IStatusProvider.ts ├── UptimeRobotStatusProvider.tsx ├── index.ts └── uptimeRobot.ts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
inodb
added a commit
to inodb/cbioportal
that referenced
this pull request
Oct 20, 2025
Adds configuration properties for the UptimeRobot status page integration that automatically displays service status banners in the frontend. Changes: - Add uptime_robot_status_page_url and uptime_robot_api_key properties to application.properties.EXAMPLE - Create comprehensive UptimeRobot-Integration.md documentation - Update application.properties-Reference.md with UptimeRobot section Configuration: Both properties are required to enable the integration: - uptime_robot_status_page_url: URL of the UptimeRobot status page - uptime_robot_api_key: API key for the event feed endpoint Documentation covers: - Setup and configuration instructions - How to obtain API key from UptimeRobot - Event filtering and display logic - Banner styling based on severity - Troubleshooting common issues - Security considerations - Architecture overview Related frontend PR: cBioPortal/cbioportal-frontend#5282
inodb
added a commit
to inodb/cbioportal
that referenced
this pull request
Oct 20, 2025
Adds configuration properties for the UptimeRobot status page integration that automatically displays service status banners in the frontend. Changes: - Add uptime_robot_status_page_url and uptime_robot_api_key properties to application.properties.EXAMPLE - Create comprehensive UptimeRobot-Integration.md documentation - Update application.properties-Reference.md with UptimeRobot section Configuration: Both properties are required to enable the integration: - uptime_robot_status_page_url: URL of the UptimeRobot status page - uptime_robot_api_key: API key for the event feed endpoint Documentation covers: - Setup and configuration instructions - How to obtain API key from UptimeRobot - Event filtering and display logic - Banner styling based on severity - Troubleshooting common issues - Security considerations - Architecture overview Related frontend PR: cBioPortal/cbioportal-frontend#5282
inodb
added a commit
to inodb/cbioportal
that referenced
this pull request
Oct 20, 2025
Adds configuration properties for the UptimeRobot status page integration that automatically displays service status banners in the frontend. Changes: - Add uptime_robot_status_page_url and uptime_robot_api_key properties to application.properties.EXAMPLE - Create comprehensive UptimeRobot-Integration.md documentation - Update application.properties-Reference.md with UptimeRobot section Configuration: Both properties are required to enable the integration: - uptime_robot_status_page_url: URL of the UptimeRobot status page - uptime_robot_api_key: API key for the event feed endpoint Documentation covers: - Setup and configuration instructions - How to obtain API key from UptimeRobot - Event filtering and display logic - Banner styling based on severity - Troubleshooting common issues - Security considerations - Architecture overview Related frontend PR: cBioPortal/cbioportal-frontend#5282
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.
Adds support for automatically fetching and displaying ongoing events from an UptimeRobot status page as warning banners at the top of the portal.
You can add these announcements via uptimerobot:
Configuration (both properties required):
Features:
Architecture:
Requires: cBioPortal/cbioportal#11759