Get System Performance Information

API Type

REST

HTTP Method

GET

Description

Retrieves system performance information for AgilePoint Server.

URL Format (On Premises)

https://[domain]:[port]/AgilePointServer/Admin/GetSysPerfInfo

URL Format (AgilePoint for Azure)

https://[domain]:[port]/AgilePointService/Admin/GetSysPerfInfo

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

$("#btnGetSysPerfInfo").click(function () {
  
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Admin/GetSysPerfInfo",
    type: "GET"
  });
  
});

Java Code Example

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);
}

C# Code Example

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);
  }

Output

WFSysPerfInfo object.

JSON Response Body Example

{
  "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"
  }
}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher