-
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
Cherry-pick #16013 to 7.x: Add translate_sid processor to Winlogbeat #16941
Conversation
* Add translate_sid processor to Winlogbeat The `translate_sid` processor translates a Windows security identifier (SID) into an account name. It retrieves the name of the account associated with the SID, the first domain on which the SID is found, and the type of account. Closes elastic#7451 (cherry picked from commit 65b31bd)
Pinging @elastic/integrations-services (Team:Services) |
Pinging @elastic/siem (Team:SIEM) |
@@ -98,6 +98,9 @@ endif::[] | |||
ifndef::no_truncate_fields_processor[] | |||
* <<truncate-fields, `truncate_fields`>> | |||
endif::[] | |||
ifdef::no_translate_sid_processor[] |
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 think you meant ifndef
here.
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.
That's fixed in #16961 and I'll backport it too.
@@ -197,5 +200,8 @@ endif::[] | |||
ifndef::no_truncate_fields_processor[] | |||
include::{libbeat-processors-dir}/actions/docs/truncate_fields.asciidoc[] | |||
endif::[] | |||
ifdef::no_translate_sid_processor[] |
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.
same comment as earlier about ifndef
Cherry-pick of PR #16013 to 7.x branch. Original message:
The
translate_sid
processor translates a Windows security identifier (SID)into an account name. It retrieves the name of the account associated with the
SID, the first domain on which the SID is found, and the type of account.
Closes #7451