Skip to main content

GET /events/config

Use this method to return the configuration settings for the event log.

Authentication

Authentication with username and password is required.

Request URL

GET https://{management_server_IP}/events/config

Query parameters

None

Request body

None

Response codes

CodeDescriptionComments
200OKThe request completed successfully.
400Bad RequestA query parameter or request attribute is missing or not valid, or the operation is not supported. A descriptive error message is returned in the response body.
401UnauthorizedThe user cannot be authenticated. Authentication has not been provided or has failed. A descriptive error message is returned in the response body.
500Internal Server ErrorAn internal error occurred. A descriptive error message is returned in the response body.

Response body

AttributesTypeDescription
auditLog100FillStringIndicates whether the audit log is 100 percent full. This can be one of the following values.
  • true. The event log is 100 percent full.
  • false. The event log is not 100 percent full.
auditLog80FillStringIndicates whether the audit log is 80 percent full. This can be one of the following values.
  • true. The event log is 80 percent full.
  • false. The event log is not 80 percent full.
auditLogCurrentSizeStringCurrent number of entries in the audit log
auditLogMaxSizeStringMaximum number of entries allowed in the audit log. Any entries beyond this number causes the oldest entry to be removed from the log.
eventAggSubscTimeOutStringAmount of time to wait for an event aggregation subscription
eventLogCurrentSizeStringCurrent number of entries in the event log
eventLogMaxSizeStringMaximum number of entries allowed in the event log. Any entries beyond this number causes the oldest entry to be removed from the log.
eventLog100FillStringIndicates whether the event log is 100 percent full. This can be one of the following values.
  • true. The event log is 100 percent full.
  • false. The event log is not 100 percent full.
eventLog80FillStringIndicates whether the event log is 80 percent full. This can be one of the following values.
  • true. The event log is 80 percent full.
  • false. The event log is not 80 percent full.
The following example is returned if the request is successful.
{
"auditLog100Fill": "false",
"auditLog80Fill": "false",
"auditLogCurrentSize": "264",
"auditLogMaxSize": "2000",
"eventLog100Fill": "true",
"eventLog80Fill": "true",
"eventAggSubscTimeOut": "2",
"eventLogCurrentSize": "2000",
"eventLogMaxSize": "2000"
}