Get System Performance Information

API Type

Web Services

Description

Retrieves system performance information for AgilePoint Server.

Syntax

public virtual WFSysPerfInfo GetSysPerfInfo()

Parameters

Name Description
None Not Applicable

Output

WFSysPerfInfo object.

Example

IWFAdminService svc = GetAdminService();

try
	{
    WFSysPerfInfo sysPerfInfo = svc.GetSysPerfInfo();
    Console.WriteLine("1) ServerID = '{0}'",sysPerfInfo.ServerID);
    Console.WriteLine("2) MemoryAllocated = '{0}'",
    sysPerfInfo.MemoryAllocated);
    //...
	}

catch (Exception ex)
	{
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}

/*
This example produces the following results:
1) ServerID = 'DEMO/4356'
2) MemoryAllocated = '7329'
*/

Supported Versions

3.2.0.4 and higher