Querying Monitoring Data (Offline Soon)
Function
This API is used to query monitoring data of metrics within a specified time period. You can specify a dimension or period to query data.
URI
POST /v1/{project_id}/ams/metricdata?fillValue=xx
For details about the substitute API, see Querying Monitoring Data.
Table 1 describes the parameters.
Parameter |
Mandatory |
Type |
Value Range |
Description |
---|---|---|---|---|
project_id |
Yes |
String |
- |
Project ID applied from Identity and Access Management (IAM). Generally, it is a string containing 32 characters. |
fillValue |
No |
String |
–1, 0, null, and average |
Filled value for breakpoints in monitoring data. Default value: –1.
|
Request
Request parameters
Table 2 describes the request parameters.
Parameter |
Mandatory |
Type |
Value Range |
Description |
---|---|---|---|---|
metrics |
Yes |
Array |
The JSON array can contain a maximum of 20 metrics. |
List of metrics. |
namespace |
Yes |
String |
PAAS.CONTAINER, PAAS.NODE, PAAS.SLA, PAAS.AGGR, and CUSTOMMETRICS. |
Metric namespace. |
metricName |
Yes |
String |
1–255 characters. |
Metric name. |
dimensions |
Yes |
Array |
Neither the array, nor the name/value of any dimension in the array can be left blank. |
Metric dimension. dimensions.name: dimension name. Example: appName. dimensions.value: dimension value, such as a specific application name. |
period |
Yes |
Integer |
Enumerated value. Options:
|
Data monitoring granularity. |
timerange |
Yes |
String |
Format: start time (UTC, in ms).end time (UTC, in ms).number of minutes in the time period When the start time and end time are –1, it indicates the latest N minutes. N indicates the time period by the granularity of minute. |
Query time period. For example, –1.–1.5 indicates the latest 5 minutes. 1501545600000.1501632000000.1440 indicates the fixed time period from 08:00:00 on August 1, 2017 to 08:00:00 August 2, 2017.
NOTE:
Time range/period ≤ 1440 During calculation, timerange and period must be in the same unit. |
statistics |
Yes |
Array |
maximum, minimum, sum, average, or sampleCount. |
Statistic. |
Request headers
Table 3 describes the request headers.
Name |
Mandatory |
Description |
---|---|---|
X-Auth-Token |
Yes |
User token obtained from IAM. |
Content-Type |
Yes |
Content type, which is application/json. |
Example request
{ "metrics": [ { "namespace": "abc", "metricName": "def", "dimensions": [ { "name": "instance_id", "value": "demo1" } ] } ], "period": 60, "timerange": "-1.-1.5",//Last 5 minutes "statistics": [ "maximum", "minimum", "sum" ] }
Response
Response parameters
Table 4 describes the response parameters.
Parameter |
Type |
Description |
---|---|---|
errorCode |
String |
Response code. |
errorMessage |
String |
Response message. |
metrics |
Object |
- |
Example response
{ "errorCode": "SVCSTG.AMS.2000", "errorMessage": "success", "metrics": [{ "metric": { "namespace": "abc", "metricName": "def", "dimensions": [{ "name": "ghi", "value": "lmn" }] }, "dataPoints": [{ "timestamp": 1467892800000, "unit": "Percent", "statistics": [{ "statistic": "maximum", "value": 23 }] }] }] }
Status Code
- Success response
Table 5 describes the status code.
- Error response
Table 6 describes the status codes. For more information, see Status Codes.
Table 6 Status codes Status Code
Message
Description
400
Bad Request
The request is invalid.
The client should not repeat the request without modifications.
401
Unauthorized
The authorization information provided by the client is incorrect or invalid.
403
Forbidden
The request is rejected.
The server has received the request and understood it, but the server is refusing to respond to it. The client should not repeat the request without modifications.
500
InternalServerError
The server is able to receive the request but unable to understand the request.
503
Service Unavailable
The requested service is invalid.
The client should not repeat the request without modifications.
Error Code
Error Code |
Message |
Solution |
---|---|---|
SVCSTG_AMS_4000101 |
Projectid is left blank. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000102 |
The metric data parameter is null. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000103 |
Invalid period. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000104 |
Invalid statistics. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000105 |
Invalid metrics. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000106 |
Invalid time range. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000107 |
The number of data points in a time range exceeds 1440. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_4000110 |
Invalid fillValue. |
Check whether the parameter meets requirements. |
SVCSTG_AMS_5000000 |
Internal server error. |
Contact technical support. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot