Radius Client Metrics (v2.0)
POST/sdwan/v2.0/api/monitor/aaa_client_metrics
List the AAA client metrics. The start time, end time, and max datapoints attibutes are optional with at least one of them specified. All three attributes can not be specified, as the result will be ambiguous.
Request
- application/json
Body
Query request for getting aaaclientmetrics
The end time to get the client metrics. If not specified, it is default to now. End times need to be specified in ISO8601 UTC format.
filter RadiusClientMetricsFilter
Filters according to the specifications.
Element
Interfaces
Site
The max data points.
The description of the client metrics. Maz size = 128.
The start time to get the client metrics. If not specified, it is default to epoch. Start times need to be specified in ISO8601 UTC format.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The end time to get the client metrics. If not specified, it is default to now. End times need to be specified in ISO8601 UTC format.
items ClientDetails[]
Filters according to the specifications.
The aging timeout value.
The authentication type. Only closed mode and single host authentication is supported.
The element ID.
The interface ID.
The MAC address.
The re-auth timeout.
The ION device authenticates or reinitializes the client after a session timeout based on the value of the Termination-Action. Values 1 and 0.
The stats start time in milliseconds.
Indicates the time for which the neighbor has been up.
The client user name.
The virtual LAN ID.
The start time to get the client metrics. If not specified, it is default to epoch. Start times need to be specified in ISO8601 UTC format.
{
"end_time": "string",
"items": [
{
"aging_timeout": 0,
"auth_type": "string",
"element_id": "string",
"interface_id": "string",
"mac_address": "string",
"reauth_timeout": 0,
"reauthentication_timeout": 0,
"stats_start_time_ms": 0,
"uptime": 0,
"username": "string",
"vlan_id": 0
}
],
"start_time": "string"
}
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": "EMPTY_REQ_BODY"
},
{
"code": "SCHEMA_MISMATCH"
},
{
"code": "START_TIME_GREATER_THAN_END_TIME"
},
{
"code": "INVALID_REQUEST_ERROR_0001"
},
{
"code": "EMPTY_FILTER"
},
{
"code": "INTERFACES_WITH_ELEMENT_MISSING"
},
{
"code": "SITE_WITH_ELEMENT_MISSING"
}
]
}
}