Real-time alert system complete implementation and fixes#26
Closed
izzathnisfer wants to merge 6 commits into
Closed
Real-time alert system complete implementation and fixes#26izzathnisfer wants to merge 6 commits into
izzathnisfer wants to merge 6 commits into
Conversation
… origin splitting
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 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.
Summary
Implements the real-time alert broadcasting pipeline and auth-protected API routes for the D2 Intelligence layer.
Changes
Real-time Alert System (Socket.IO)
/socket.ioinapp.py_consume_alerts) broadcasts incoming alerts to all connected clients in real-timesocketio_require_auth)join_room/leave_roomevents)Auth-Protected Alerts Route
GET /api/alerts— doctors/admins see all alerts; patients see only their ownPATCH /api/alerts/{id}/acknowledge— restricted todoctorandadminrolesConfiguration
session_secret_key,cors_allow_origins,socketio_require_auth,socketio_allow_originstoSettingsObservability
ALERTS_DELIVERED,ALERTS_DELIVERY_FAILED,ALERTS_ACKNOWLEDGEDTesting
Scripts
scripts/simulate_alert.py— publishes test vitals payloads to Kafka for local testingCommits
feat: implement real-time alert system with Socket.IOfeat: async handling and add unit tests for auth token extraction and origin splittingfeat: add simulate_alert script for publishing vitals payloads to Kafka