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
We recently configured audit log in our cluster and the respective Elastic Agent integration, while doing some tests to create custom dashboards and alerts we saw that some actions that are performed with success in Kibana are being populate with event.outcome: failure by the Audit Ingest pipeline.
Looking at the ingests pipeline it seems that just a couple of events will ever be populated with event.outcome: success.
But for example, doing a put_role with success, will be shown in kibana with event.outcome: failure, which is misleading and makes pretty hard to create any security rule on this data.
I'm not sure if this can be solved on the integration, it seems that the audit logs from elasticsearch lacks a lot of basic information about the events.
The text was updated successfully, but these errors were encountered:
If you delete a native realm user, you seem to get two logs, one from the transport audit layer and other from the security_config_change audit layer.
The one from the transport audit layer will match the conditionals in the script processar as the event action is access_granted, so it will populate event.outcome with success.
But the one from the security_config_change will populate event.outcome with failure, but the user was deleted with no issues, so this failure becomes a false negative.
Hello,
We recently configured audit log in our cluster and the respective Elastic Agent integration, while doing some tests to create custom dashboards and alerts we saw that some actions that are performed with success in Kibana are being populate with
event.outcome: failure
by the Audit Ingest pipeline.Looking at the ingests pipeline it seems that just a couple of events will ever be populated with
event.outcome: success
.But for example, doing a
put_role
with success, will be shown in kibana withevent.outcome: failure
, which is misleading and makes pretty hard to create any security rule on this data.I'm not sure if this can be solved on the integration, it seems that the audit logs from elasticsearch lacks a lot of basic information about the events.
The text was updated successfully, but these errors were encountered: