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
The issue is the default index patterns setting index = ["winlogbeat-*", "logs-system.*"]. If you are using Windows Event Forwarding (WEF), collect logs from several machines on a single host and collect them with the Elastic Agent (Windows Integration - Forwarded Event Logs), then the default index patterns does not match as it is logs-windows.forwarded-*. Is it possible to add the index pattern for forwarded Windows logs in the default patterns?
Example Data
No rule logic changes.
Change index = ["winlogbeat-*", "logs-system.*"] to index = ["winlogbeat-*", "logs-system.*", "logs-windows.forwarded-*"]
The text was updated successfully, but these errors were encountered:
there is another Problem to consider, some rules will still not work because the EQL Query requires the host.id field to be set which is not the case if you use the EventLog Forwarding.
Maybe You consider Here working with just the source.ip or hostname...
Link to rule
For example, but applies to several windows rules: https://github.com/elastic/detection-rules/blob/main/rules/windows/credential_access_bruteforce_multiple_logon_failure_same_srcip.toml
Description
The issue is the default index patterns setting
index = ["winlogbeat-*", "logs-system.*"]
. If you are using Windows Event Forwarding (WEF), collect logs from several machines on a single host and collect them with the Elastic Agent (Windows Integration - Forwarded Event Logs), then the default index patterns does not match as it islogs-windows.forwarded-*
. Is it possible to add the index pattern for forwarded Windows logs in the default patterns?Example Data
No rule logic changes.
Change
index = ["winlogbeat-*", "logs-system.*"]
toindex = ["winlogbeat-*", "logs-system.*", "logs-windows.forwarded-*"]
The text was updated successfully, but these errors were encountered: