-
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
Update winlogbeat-options.asciidoc #2919
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,6 +149,38 @@ winlogbeat.event_logs: | |
event_id: 4624, 4625, 4700-4800, -4735 | ||
-------------------------------------------------------------------------------- | ||
|
||
[WARNING] | ||
======================================= | ||
If you specify more that 22 event IDs to include or 22 event IDs to exclude, | ||
Windows will prevent Winlogbeat from reading the event log because it limits the | ||
number of conditions that can be used in an event log query. If this occurs a similar | ||
warning as shown below will be logged by Winlogbeat, and it will continue | ||
processing data from other event logs. For more information, see | ||
https://support.microsoft.com/en-us/kb/970453. | ||
|
||
`WARN EventLog[Application] Open() error. No events will be read from this | ||
source. The specified query is invalid.` | ||
|
||
If you have more than 22 event IDs, you can workaround this Windows limitation | ||
by using a drop_event[drop-event] processor to do the filtering after | ||
Winlogbeat has received the events from Windows. The filter shown below is | ||
equivalent to `event_id: 903, 1024, 4624` but can be expanded beyond 22 | ||
event IDs. | ||
|
||
[source,yaml] | ||
-------------------------------------------------------------------------------- | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
processors: | ||
- drop_event.when.and: | ||
- equals.log_name: Security | ||
- not.or: | ||
- equals.event_id: 903 | ||
- equals.event_id: 1024 | ||
- equals.event_id: 4624 | ||
-------------------------------------------------------------------------------- | ||
|
||
======================================= | ||
|
||
|
||
===== event_logs.level | ||
|
||
A list of event levels to include. The value is a comma-separated list of | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is not the usual way to create warnings, but it might be difficult in this case because you have code section in it. I'll wait for @dedemorton to suggest something.
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.
This is valid asciidoc tagging. You could add
[source,yaml]
above the dashed line that starts the example to format the code correctly.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.
Keeping [WARNING] and added [source,yaml]