Created
December 5, 2022 23:09
-
-
Save Qazeer/48e5895a958b32c223e6d0e92e2182ac to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Description: Winlogbeat configuration to parse a single EVTX file to JSON. | |
# Authors: Thomas DIOT (_Qazeer) | |
# Version: 1.0 | |
# Last modified: 2022-12-05 | |
winlogbeat.event_logs: | |
- name: ${EVTX_FILE} | |
no_more_events: stop | |
winlogbeat.registry_file: "${OUTPUT_FOLDER}\\winlogbeat_registry_file.yml" | |
disk: | |
read_ahead: 8092 | |
processors: | |
- drop_fields: | |
fields: ["beat", "metadata", "log", "agent", "ecs", "event", "host"] | |
logging.level: error | |
output.file: | |
path: "${OUTPUT_FOLDER}" | |
number_of_files: 1024 | |
rotate_every_kb: 500000 | |
rotate_on_startup: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment