Get Application QOS Metrics (2.0)
GET/v2.0/api/tenants/:tenant_id/monitor/application/qos_metrics/:application_name
Get details of application QoS metrics.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
application_name stringrequired
The application name.
Responses
- 200
- 404
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
metrics MetricSchema[]
The details of the metrics.
description
The description of the metric schema. Max size = 256.
name string
The name of the metric schema. Max size = 126.
statistics string[]
The metric statistics.
units string[]
The units of the metrics.
{
"metrics": [
{
"name": "string",
"statistics": [
"string"
],
"units": [
"string"
]
}
]
}
Not Found
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "APPLICATION_NOT_SUPPORTED"
}
]
}
}
Loading...