Get Top N Data (v3.1)
POST/sdwan/v3.1/api/monitor/topn
List all the top N data.
Request
- application/json
Body
Filter for top N
The end time to get the Topn N reports. The time period for the Topn N reports is usually for a week.
filter AppStatsTopNFilter
Details of the filter used in this query.
Filter by apps.
Filter by element.
Filter by path.
Possible values: [public_direct
, public_vpn
, private_direct
, private_vpn
, unknown
, servicelink
]
Filter by path type.
Filter by site.
The WAN interface of the network.
The name of the Top N report. Maz size = 128.
The start time to get the Topn N reports. The time period for the Topn N reports is usually for week.
top_n AppStatsTopNViewrequired
The details of the limit and type of the Top N reports.
The limit of the Top N reports.
Possible values: [app
, site
]
The type of Top N reports.
Possible values: [traffic_volume
, transaction_failure
, initiation_failure
, tcp_flow
, udp_flow
, audio_traffic_volume
, video_traffic_volume
, ingress_audio_pkt_loss
, egress_audio_pkt_loss
, ingress_video_pkt_loss
, egress_video_pkt_loss
, ingress_audio_jitter
, egress_audio_jitter
, ingress_video_jitter
, egress_video_jitter
, ingress_audio_mos
, egress_audio_mos
]
The basis of the Top N reports.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
top_n AppStatsTopNResponseData
The details of the Top N reports.
The end time to get the Topn N reports. The time period for the Topn N reports is usually a week.
The items in the query.
The details of the limit and type of the Top N reports.
The start time to get the Topn N reports. The time period for the Topn N reports is usually a week.
Possible values: [traffic_volume
, transaction_failure
, initiation_failure
, tcp_flow
, udp_flow
, audio_traffic_volume
, video_traffic_volume
, ingress_audio_pkt_loss
, egress_audio_pkt_loss
, ingress_video_pkt_loss
, egress_video_pkt_loss
, ingress_audio_jitter
, egress_audio_jitter
, ingress_video_jitter
, egress_video_jitter
, ingress_audio_mos
, egress_audio_mos
]
The basis of the Top N reports.
Possible values: [app
, site
]
The type of Top N report.
{
"top_n": {
"end_time": "string",
"items": [
"string"
],
"limit": 0,
"start_time": "string",
"topn_basis": "traffic_volume",
"type": "app"
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
The error code.
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INVALID_REQUEST_ERROR_0001"
},
{
"code": "APP_FILTER_NOT_SUPPORTED_FOR_TYPE"
},
{
"code": "SITE_FILTER_NOT_SUPPORTED_FOR_TYPE"
},
{
"code": "FILTER_NOT_SUPPORTED_WITHOUT_SITE"
},
{
"code": "START_TIME_GREATER_THAN_END_TIME"
},
{
"code": "PATH_NOT_SUPPORTED_WITH_PATH_TYPE"
},
{
"code": "TOPN_BASIS_NOT_SUPPORTED_WITHOUT_FILTER"
},
{
"code": "INVALID_LIMIT"
},
{
"code": "REQUIRED_PROPERTY"
},
{
"code": "PATH_TYPE_LIST_LENGTH_EXCEEDED"
},
{
"code": "LENGTH_EXCEEDED"
},
{
"code": "INVALID_FILTER"
}
]
}
}