Logging
The XML Interface accepts requests to log message to the CipherTrust Manager Logs.
RecordEventRequest
Submit a message to be recorded.
<RecordEventRequest>
<ID>...</ID>
<MessageSize>...</MessageSize>
<Message>...</Message>
</RecordEventRequest>
Element | Description |
---|---|
ID | Contains the user-specified request ID. |
MessageSize | Contains the size of the data in the Message element. |
Message | Contains the text of the message to be recorded. |
Note
The CipherTrust Manager logs generated using the RecordEventRequest
can be accessed in the keysecure.system.log
file via ssh at the following location: /opt/keysecure/logs
.
You can also download the logs from UI.
The client needs to send the log message and message size.
RecordEventResponse
Server response to a RecordEventRequest.
<RecordEventResponse>
<ID>...</ID>
<Success>true</Success>
</RecordEventResponse>
Element | Description |
---|---|
ID | Contains the user-specified request ID. |
Success | Indicates whether the operation was successful. true indicates success. false indicates failure. When the operation is unsuccessful, the response element contains the FatalError and ErrorString elements to illustrate why the failure occurred and help you troubleshoot. For a list of possible error IDs and strings, see Error Messages. |