Queries all applications monitored by the frontend monitoring feature in a specified region.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | ListRetcodeApps |
The operation that you want to perform. Set the value to ListRetcodeApps. |
RegionId | String | Yes | cn-hangzhou |
The ID of the region. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
RequestId | String | 99A663CB-8D7B-4B0D-A006-03C8EE38E7BB |
The ID of the request. |
RetcodeApps | Array of RetcodeApp |
The information about monitored applications. |
|
AppId | Long | 16064 |
The ID of the application. The parameter is an auto-increment parameter. |
AppName | String | A1 |
The name of the application. |
Pid | String | atc889zkcf@d8deedfa9bf**** |
The process identifier (PID) of the application. |
RetcodeAppType | String | web |
The type of the application.
|
Examples
Sample requests
http(s)://[Endpoint]/?Action=ListRetcodeApps
&RegionId=cn-hangzhou
&<Common request parameters>
Sample success responses
XML
format
<ListRetcodeAppsResponse>
<RequestId>99A663CB-8D7B-4B0D-A006-03C8EE38E7BB</RequestId>
<RetcodeApps>
<RetcodeAppType>web</RetcodeAppType>
<AppId>16064</AppId>
<Pid>atc889zkcf@d8deedfa9bf****</Pid>
<AppName>A1</AppName>
</RetcodeApps>
</ListRetcodeAppsResponse>
JSON
format
{
"RequestId": "99A663CB-8D7B-4B0D-A006-03C8EE38E7BB",
"RetcodeApps": {
"RetcodeAppType": "web",
"AppId": 16064,
"Pid": "atc889zkcf@d8deedfa9bf****",
"AppName": "A1"
}
}