Returns uptime information as well as information about the application and the server it runs on.
Since Product Version: 2.0
Resource URL
/webacs/api/v1/op/info/uptimeResponse Parameters
Type | Attribute Name | Description |
---|---|---|
String |
applicationUptime |
Uptime of this application. |
String |
defaultGateway |
The default gateway used by the server. |
String |
domainName |
The domain name of this server. |
boolean |
highAvailabilityEnabled |
Is high availability enabled on this server. |
String |
highAvailabilityPrimaryServerHostname |
The high availability primary server's hostname. |
String |
highAvailabilityPrimaryServerIp |
The high availability primary server's IP address. |
HighAvailabilityRole |
highAvailabilityRole |
The role this server plays in the high availability group. Allowed values: |
String |
highAvailabilitySecondaryServerHostname |
The high availability secondary server's hostname. |
String |
highAvailabilitySecondaryServerIp |
The high availability secondary server's IP address. |
String |
hostName |
The host name of this server. |
Date |
serverTime |
Time as reported by the server. |
String |
serverUptime |
Uptime of the host server. |
long |
totalMemory |
The total amount of memory on the server in kilobytes. |
Sample Payloads
Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.
Sample XML Response Payload
https://192.168.115.187/webacs/api/v1/op/info/uptime
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <mgmtResponse rootUrl="https://192.168.115.187/webacs/api/v1/op/" requestUrl="https://192.168.115.187/webacs/api/v1/op/info/uptime" responseType="operation"> <applicationInfoDTO> <highAvailabilityEnabled>true</highAvailabilityEnabled> <highAvailabilitySecondaryServerIp>String value</highAvailabilitySecondaryServerIp> <hostName>String value</hostName> <serverUptime>String value</serverUptime> <applicationUptime>String value</applicationUptime> <defaultGateway>String value</defaultGateway> <domainName>String value</domainName> <highAvailabilityPrimaryServerHostname>String value</highAvailabilityPrimaryServerHostname> <highAvailabilityPrimaryServerIp>String value</highAvailabilityPrimaryServerIp> <highAvailabilityRole>UNKNOWN</highAvailabilityRole> <highAvailabilitySecondaryServerHostname>String value</highAvailabilitySecondaryServerHostname> <serverTime>2015-10-19T09:55:11.852-07:00</serverTime> <totalMemory>2</totalMemory> </applicationInfoDTO> </mgmtResponse>
Sample JSON Response Payload
https://192.168.115.187/webacs/api/v1/op/info/uptime.json
{ "mgmtResponse" : { "@rootUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/op\/", "@requestUrl" : "https : \/\/192.168.115.187\/webacs\/api\/v1\/op\/info\/uptime", "@responseType" : "operation", "applicationInfoDTO" : { "highAvailabilityEnabled" : true, "highAvailabilitySecondaryServerIp" : "String value", "hostName" : "String value", "serverUptime" : "String value", "applicationUptime" : "String value", "defaultGateway" : "String value", "domainName" : "String value", "highAvailabilityPrimaryServerHostname" : "String value", "highAvailabilityPrimaryServerIp" : "String value", "highAvailabilityRole" : "UNKNOWN", "highAvailabilitySecondaryServerHostname" : "String value", "serverTime" : "2015-10-19T09 : 55 : 11.855-07 : 00", "totalMemory" : 2 } } }