You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

The License Server Uptime endpoint delivers license usage metrics specific to license server status for the currently selected license server during any period the server status was monitored. 

Obtaining information about license server status

You can easily fetch metrics about license server status history by sending the following HTTP request.

GET /api/v1/report/uptime/server/${licenseServerId}/json?sd=${startDate}&ed=${endDate}

where $ indicates a variable value that you can replace with a value that best suits your needs. The possible parameters are described below.

ParameterRequiredTypeDescription
${licenseServerId}Yesinteger

Specifies ID of the license server for which you want to view status information.  

sdYesstring

Specifies starting date from which you want to generate the report. The date is in YYYY-MM-DD format; for example, 2017-05-20.

ed

Yes

string

Specifies end date from which you want to generate the report. The date is in YYYY-MM-DD format; for example, 2017-05-20. The date is inclusive, meaning that all data from a particular day will be included in the report.

Response

The following code block shows an example result of a successful request.

  {
      success: ${success},
      msg: ${message},
      data: [{  
         "lsucd":${licenseServerUptimeCheckDateTime},
         "lssid":${licenseServerStatusId},
         "errid":${errorLogId}
      }],
	  "code": ${errorCode},
	  "totalCount": ${totalCount}
  }

where the response fields can be explained as follows.

FieldTypeDescription

success

boolean

Indicates whether your API request was successfully processed. 

msg

string

Error message returned on failure.

lsucd

string

Date and time when License Statistics checked if license server was up.

lssid

integer

ID of license server status, which can be one of the following:

IDStatus
1UNKNOWN
2UP
3DOWN
4INTERNAL ERROR
5VERIFYING
6DISABLED

errid

integer

ID of the entry in the License Statistics error log.

codeintegerError code for unsuccessful request.
totalCountinteger

Total number of all matching results.


Example

The following example shows a command that obtains information about the uptime of license server "1" in January 2017.

curl --data "sd=2017-01-01" --data "ed=2017-01-31" -H "X-Auth-token: token" "http://yourdomain/api/v1/report/uptime/server/1/json"

You can also put parameters directly into the URL; for the above example, the command would look like the following.

curl -H "X-Auth-token: token" "http://yourdomain/api/v1/report/uptime/server/1/json?sd=2017-01-01&ed=2017-01-31"

Obtaining information about error messages

You can easily list error messages for any given log by sending the following HTTP request.

GET /api/v1/report/uptime/error/json?errid=${errorId}

where $ indicates a variable value that you can replace with a value that best suits your needs. The possible parameters are described below.

ParameterRequiredTypeDescription
${errorId}Yesinteger

Specifies ID of the error log for which the error message should be retrieved.

Response

The following code block shows an example result of a successful request.

 {
      success: ${success},
      msg: ${message},
      data: {
        "errmsg": ${errorMessage}
      },
      code: ${code}
 }

where the response fields can be explained as follows.

FieldTypeDescription
success

boolean

Indicates that your API request was successfully processed.

msg

string

License Statistics error message returned on failure.

errmsg

string

The message you want to retrieve for a specific error log.

codeinteger

Error code for unsuccessful request.


Example

The following example shows a command that lets you view the message for error "1."

curl --data "errid=1" -H "X-Auth-token: token" "http://yourdomain/api/v1/report/uptime/error/json"

You can also put parameters directly in the URL; for the above example, the command would look like the following.

curl -H "X-Auth-token: token" "http://yourdomain/api/v1/report/uptime/error/json?errid=1"
  • No labels