| Methods / Administrative Service | |
REST
GET
Retrieves system performance information for AgilePoint Server.
https://[domain]:[port]/AgilePointServer/Admin/GetSysPerfInfo
https://[domain]:[port]/AgilePointService/Admin/GetSysPerfInfo
| Name | Description |
|---|---|
| None | Not Applicable |
$("#btnGetSysPerfInfo").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetSysPerfInfo",
type: "GET"
});
});
public String GetSystemPerformanceInformation() {
String URI = "http://mydomain:9011/AgilePointServer/Admin/GetSysPerfInfo";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetSysPerfInfo()
{
string URI = "http://mydomain:9011/AgilePointServer/Admin/GetSysPerfInfo";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
WFSysPerfInfo object.
{
"GetSysPerfInfoResult":
{
"AverageEventProcessingTime":166.92028666666675,
"AverageEventProcessor":6,
"AverageWorkingRunner":6,
"CachedProcDefs":0,
"CachedProcInsts":0,
"CapEventProcessor":10,
"CapWorkingRunner":10,
"CurrentDatabaseConnections":152,
"CurrentEventProcessor":6,
"CurrentWorkingRunner":6,
"HighPriorityEventQueueLength":0,
"LowPriorityEventQueueLength":0,
"MaxDatabaseConnections":153,
"MaxEventProcessingTime":764.4013,
"MaxEventProcessor":6,
"MaxPoolSize":100,
"MaxProcInstCache":2147483647,
"MaxWorkingRunner":6,
"MemoryAllocated":13234,
"MinEventProcessingTime":0,
"MinEventProcessor":5,
"MinWorkingRunner":5,
"NormalPriorityEventQueueLength":0,
"ServerID":"DEMO3\/2664"
}
}
AgilePoint BPMS v5.0 R2 and higher