Logging and transactional functionality.
This resource represens a specific action log.
Resource URI:
/rest/hosting/log/<UUID>/
Retrieve the specified action log by submitting an HTTP GET request. The UUID in the resource URI should be the uuid of the target action log.
..note
This resource requires *read* permission on the *elastic_hosting* extension module.
| Return type: | log.RepLogUUID |
|---|
This resource represents a list of action logs and running transactions.
Resource URI:
/rest/hosting/log/list/
Retrieve a list of action logs and running transactions by submitting an HTTP GET request.
..note
This resource requires *read* permission on the *elastic_hosting* extension module.
| Return type: | log.RepLogList |
|---|
This is a representation of an action log.
Representation:
{"user": log.user,
"timestamp": log.timestamp,
"error": log.error,
"message": log.message}
This is a representation of a list of action logs and running transactions.
Representation:
{"errno": response.errno,
"message": response.message,
"logs": [log1, log2],
"transactions": [transaction1, transaction2]}