-
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
Winlogbeat add "fields" and "fields_under_root" configuration options #989
Comments
That also relates to #726 |
You can currently configure tags in the shipper section that can help you identify the server that generated the data. When tags is enabled, then each json object will contain a tags field with the value that you set in the configuration file. Would that help you? I think it makes sense to add the fields configuration to libbeat, so all Beats would make use of it. With the fields configuration you can add more fields to the exported than you can with tags. |
@monicasarbu i looked at tags, but that doesn't serve our used cases. we create some sort of data domain and group those events based on the value of "customer_id". |
Yes, I agree that tags is not an ideal solution as you need to rely on the ordering, but it might be a good temporary solution until we implement fields in libbeat. |
+1, thanks @tommynsong for opening the issue. We'll try to get this in one of the next releases. |
Closing. Please follow #726 for updates. |
This feature has been implemented. See #1092 for usage examples. This will be released in v5. It can be tested now from the 5.0 development builds. |
We have used cases where we add custom fields to each log events.
Currently we are doing that with "fields" options for logstash-forwarded/filebeat and we do mutation and add_field with logstash on Windows.
We would like to replace logstash with Winlogbeat on Windows as a shipper, but we currently can't due to not able to create custom fields.
The text was updated successfully, but these errors were encountered: