🔗 Console REST APIConnection Analytics
Gets time-series connection event analytics with flexible filtering for the current organization
Returns connection event analytics for your organization aggregated by time intervals and event types. Use for trend analysis, monitoring dashboards, and event pattern recognition.
Authorization<token>
API Key is required to access the endpoints
In: header
Query Parameters
serviceName?string
Optional service name filter
protocolName?string
Optional protocol name filter
dataCenter?string
Optional data center filter
eventType?string
Optional event type filter
timeStart?string
Start time for the analysis period
timeEnd?string
End time for the analysis period
minutes?integer
Minutes back from now (alternative to timeStart/timeEnd)
intervalMinutes?integer
Time interval in minutes for grouping (5, 15, 30, 60, 360, 720, 1440)
limit?integer
Maximum number of records to return
Response Body
curl -X GET "https://example.com/api/connection-analytics/events/timeseries"[
{
"timeSlot": "2024-01-01T11:00:00.0000000Z",
"eventType": "connect",
"eventCount": 12,
"uniqueConnections": 11,
"uniqueOrganizations": 1
},
{
"timeSlot": "2024-01-01T11:00:00.0000000Z",
"eventType": "heartbeat",
"eventCount": 156,
"uniqueConnections": 11,
"uniqueOrganizations": 1
},
{
"timeSlot": "2024-01-01T11:00:00.0000000Z",
"eventType": "disconnect",
"eventCount": 9,
"uniqueConnections": 9,
"uniqueOrganizations": 1
}
]Empty
Empty
