Event Monitor
Real-time dashboard for monitoring Server-Sent Events (SSE) and EventHub activity.
Overview
The Event Monitor provides visibility into the real-time event system:
- Active EventHub connections per module
- Recent BroadcastEvent deliveries
- Event type distribution
- Connection health metrics
Features
Connection Stats
| Metric | Description |
|---|---|
| Total Connections | Active SSE connections across all modules |
| AuthProxy Events | Events from authentication module |
| TrexWallet Events | Events from wallet module |
| Chat Events | Events from chat module |
| CRM Events | Events from CRM module |
Event Stream
Live view of recent events:
- Event type (e.g.,
balance_update,order_status_changed) - Target user ID
- Module source
- Timestamp
- Delivery status
Event Format (BroadcastEvent)
All events use the unified BroadcastEvent format:
{
"eventType": "balance_update",
"userId": 17234567890001,
"data": { "currency": "USDT", "balance": "1000000" },
"module": "trexwallet",
"tick": 17080234567890
}
Note: The legacy
NotifyMessformat was deprecated in February 2026. See the Platform Changelog for migration details.