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
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
400 | Bad Request | A 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. |
401 | Unauthorized | The user cannot be authenticated. Authentication has not been provided or has failed. A descriptive error message is returned in the response body. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Attributes | Type | Description |
---|---|---|
auditLog100Fill | String | Indicates whether the audit log is 100 percent full. This can be one of the following values.
|
auditLog80Fill | String | Indicates whether the audit log is 80 percent full. This can be one of the following values.
|
auditLogCurrentSize | String | Current number of entries in the audit log |
auditLogMaxSize | String | Maximum number of entries allowed in the audit log. Any entries beyond this number causes the oldest entry to be removed from the log. |
eventAggSubscTimeOut | String | Amount of time to wait for an event aggregation subscription |
eventLogCurrentSize | String | Current number of entries in the event log |
eventLogMaxSize | String | Maximum number of entries allowed in the event log. Any entries beyond this number causes the oldest entry to be removed from the log. |
eventLog100Fill | String | Indicates whether the event log is 100 percent full. This can be one of the following values.
|
eventLog80Fill | String | Indicates whether the event log is 80 percent full. This can be one of the following values.
|
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"
}
Give documentation feedback