Queries the trend of the number of auto triggered node instances within a specified period of time.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | ListInstanceAmount | The operation that you want to perform. Set the value to ListInstanceAmount. |
ProjectId | Long | Yes | 10000 | The ID of the DataWorks workspace. You can log on to the DataWorks console and go to the Workspace Management page to obtain the workspace ID. |
BeginDate | String | Yes | 2021-06-13T00:00:00+0800 | The beginning of the time range to query, accurate to the day. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. |
EndDate | String | Yes | 2021-06-16T00:00:00+0800 | The end of the time range to query, accurate to the day. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
RequestId | String | 95279527adhfj**** | The ID of the request. You can use the ID to troubleshoot issues. |
InstanceCounts | Array of IntanceCounts | The trend of the number of auto triggered node instances within the specified period of time. |
|
Date | Long | 1623772800000 | The data timestamp at which the number of auto triggered node instances was obtained. This value is a UNIX timestamp. |
Count | Integer | 9527 | The number of auto triggered node instances. |
Examples
Sample requests
http(s)://[Endpoint]/?Action=ListInstanceAmount
&ProjectId=10000
&BeginDate=2021-06-13T00:00:00+0800
&EndDate=2021-06-16T00:00:00+0800
&<Common request parameters>
Sample success responses
XML
format
HTTP/1.1 200 OK
Content-Type:application/xml
<ListInstanceAmountResponse>
<RequestId>95279527adhfj****</RequestId>
<InstanceCounts>
<Date>1623772800000</Date>
<Count>9527</Count>
</InstanceCounts>
</ListInstanceAmountResponse>
JSON
format
HTTP/1.1 200 OK
Content-Type:application/json
{
"RequestId" : "95279527adhfj****",
"InstanceCounts" : {
"Date" : 1623772800000,
"Count" : 9527
}
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
403 | ResourceNotAuthorized.Api | You are not authorized to access the resources. | The error message returned because you are not authorized to access the resources. |
429 | Throttling.Api | The request for this resource has exceeded your available limit. | The error message returned because the number of requests for the resource has exceeded the upper limit. |
429 | Throttling.Api.Risk | The request for this resource has exceeded your daily available limit. | The error message returned because the number of requests per day for the resource has exceeded the upper limit. |
429 | Throttling.System | The DataWorks system is busy. Try again later. | The error message returned because the DataWorks system is busy. Try again later. |
429 | Throttling.User | Your request is too frequent. Try again later. | The error message returned because excessive requests have been submitted within a short period of time. Try again later. |
500 | Forbidden.Not.Server | The dataworksAPI service is not available in this area. Please try it in another area. | The error message returned because the DataWorks API is unavailable in this region. Try another region. |
500 | InternalError.System | An internal system error occurred. Try again later. | The error message returned because an internal error has occurred. Try again later. |
500 | InternalError.UserId.Missing | An internal system error occurred. Try again later. | The error message returned because an internal error has occurred. Try again later. |
500 | Forbidden.Wkbench.NoProject | You have not joined any project. | The error message returned because you have not joined a workspace. |
For a list of error codes, see Service error codes.