You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since OpenSearch 2.0, support for the transport client has been removed. The transport client was removed from the security plugin in this PR: #1701
My understanding of disabled_transport_categories is that it is used to enable an audit logging to log events from originating from the transport client.
Below is an example of a audit logging config of the security plugin's audit.yml file from the demo configuration:
config:
# enable/disable audit logging
enabled: true
audit:
# Enable/disable REST API auditing
enable_rest: true
# Categories to exclude from REST API auditing
disabled_rest_categories:
- AUTHENTICATED
- GRANTED_PRIVILEGES
# Enable/disable Transport API auditing
enable_transport: true
# Categories to exclude from Transport API auditing
disabled_transport_categories:
- AUTHENTICATED
- GRANTED_PRIVILEGES
The disabled_transport_categories setting may not be needed here after the TransportClient's removal.
First: Determine if it is safe to remove values from settings.
Second: If safe to remove, remove. If not, update documentation.
The text was updated successfully, but these errors were encountered:
cwperks
added
bug
Something isn't working
untriaged
Require the attention of the repository maintainers and may need to be prioritized
labels
Sep 19, 2023
davidlago
removed
the
untriaged
Require the attention of the repository maintainers and may need to be prioritized
label
Oct 2, 2023
Since OpenSearch 2.0, support for the transport client has been removed. The transport client was removed from the security plugin in this PR: #1701
My understanding of disabled_transport_categories is that it is used to enable an audit logging to log events from originating from the transport client.
Below is an example of a audit logging config of the security plugin's audit.yml file from the demo configuration:
The
disabled_transport_categories
setting may not be needed here after the TransportClient's removal.First: Determine if it is safe to remove values from settings.
Second: If safe to remove, remove. If not, update documentation.
The text was updated successfully, but these errors were encountered: