forked from mrebeschini/elastic-siem-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwinlogbeat.yml
38 lines (29 loc) · 848 Bytes
/
winlogbeat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
cloud.id: "${CLOUD_ID}"
cloud.auth: "elastic:${CLOUD_AUTH}"
winlogbeat.event_logs:
- name: Application
ignore_older: 72h
- name: System
- name: Security
processors:
- script:
lang: javascript
id: security
file: ${path.home}/module/security/config/winlogbeat-security.js
- name: Microsoft-Windows-Sysmon/Operational
processors:
- script:
lang: javascript
id: sysmon
file: ${path.home}/module/sysmon/config/winlogbeat-sysmon.js
setup.template.settings:
index.number_of_shards: 1
index.number_of_replicas: 1
processors:
- add_host_metadata:
netinfo.enabled: true
- add_cloud_metadata: ~
output.elasticsearch:
hosts: ["localhost:9200"]
pipeline: windows_geo_mitre
xpack.monitoring.enabled: true