-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename auditd fields for ECS #10577
Rename auditd fields for ECS #10577
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm good with event.original
.
I'm not convinced for error.message
, but let me know if I'm misunderstanding this one.
type: keyword | ||
type: alias | ||
migration: true | ||
path: error.message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a fan of using error.message
for debugging output. It's not an actual error message from the source, nor is it a processing error, really, according to the description below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a processing error. For example, message would be included if an expected field were missing while processing the events from the kernel. It holds any of the error messages that are returned by go-libaudit while processing the messages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotcha, I'm good with that, then.
@@ -25,7 +25,7 @@ | |||
description: > | |||
Program to run at login. | |||
- name: user_information | |||
type: text | |||
type: keyword |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Change `auditd.messages` to `event.original` and `auditd.warnings` to `error.message`. And also change `user.user_information` from text to keyword.
84404be
to
c5fb6fa
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm good with this, once the pull request link is fixed :-)
Will fix. I did a rebase and lost the fix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Only Jenkins failure is metricbeat. Unrelated |
Change
auditd.messages
toevent.original
andauditd.warnings
toerror.message
.And also change
user.user_information
from text to keyword.