(Available from version 1.11) This operation returns the ingest data for a specific live stream. You'll use the query parameters to return live vs historic data, as well as specific types of ingest data.
Querying live data
To get data for currently live streams, do not send include, from, and to values.
This operation returns a hash of metrics keys, each of which identifies a status, text description, unit, and value.
Querying historic data
To get data for streams that ran previously, send include, from, and to values.
This operation returns a hash of metrics keys, each of which identifies a status, text description, unit, and value in addition to trend data.
Success
object (live_stream) | |
object (limits_metric) The time frame represented in the response. |
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/analytics/ingest/live_streams/tvctq36g?from=2024-03-14T10:31:54.486&to=2024-04-13T10:31:54.486Z&include=trend"
{- "live_stream": {
- "id": "tvctq36g",
- "audio_codec": {
- "status": "normal",
- "text": "",
- "units": "",
- "value": "aac"
}, - "bits_in_rate": {
- "status": "normal",
- "text": "",
- "units": "Kbps",
- "value": 317.3
}, - "bytes_in_rate": {
- "status": "normal",
- "text": "",
- "units": "KBps",
- "value": 317.3
}, - "connected": {
- "status": "normal",
- "text": "",
- "units": "",
- "value": "Yes"
}, - "frame_size": {
- "status": "warning",
- "text": "Configured frame size is different from what Wowza Video is receiving from the source: 1280x720.",
- "units": "",
- "value": "1280x720"
}, - "frame_rate": {
- "status": "normal",
- "text": "",
- "units": "FPS",
- "value": 30
}, - "height": {
- "status": "warning",
- "text": "Configured height is different from what Wowza Video is receiving from the source: 720.",
- "units": "px",
- "value": 720
}, - "keyframe_interval": {
- "status": "normal",
- "text": "",
- "units": "GOP",
- "value": 69
}, - "video_codec": {
- "status": "normal",
- "text": "",
- "units": "",
- "value": "h264"
}, - "width": {
- "status": "warning",
- "text": "Configured width is different from what Wowza Video is receiving from the source: 1280.",
- "units": "px",
- "value": 1280
}, - "stream_target_status": [
- {
- "status": "normal",
- "text": "",
- "units": "",
- "value": "Active",
- "id": "3lftlf1r_fcm6d98"
}
], - "trend": [
- {
- "bits_in_rate": 1030123,
- "created_at": "2023-03-30T22:42:57Z",
- "frame_rate": 30,
- "height": 288,
- "keyframe_interval": 60,
- "width": 512
}, - {
- "bits_in_rate": 866928,
- "created_at": "2023-03-30T22:42:58Z",
- "frame_rate": 30,
- "height": 288,
- "keyframe_interval": 60,
- "width": 512
}
]
}, - "limits": {
- "from": "2024-03-14T10:31:54.000Z",
- "to": "2024-04-13T10:31:54.000Z"
}
}