-
Notifications
You must be signed in to change notification settings - Fork 39
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
Convert dots in field names to nested objects #24
Comments
You might want to use https://github.com/logstash-plugins/logstash-filter-de_dot as a fallback until this plugin is fixed. |
logstash-filter-de_dot works great for objects, but I have not found a way to convert arrays. {
"err.0": "err 1",
"err.1": "err 2"
} to {
"err": ["err 1", "err 2"]
} |
Cactusbone
added a commit
to F4-Group/logstash-input-gelf
that referenced
this issue
Sep 14, 2016
Cactusbone
added a commit
to F4-Group/logstash-input-gelf
that referenced
this issue
Oct 4, 2016
Cactusbone
added a commit
to F4-Group/logstash-input-gelf
that referenced
this issue
Mar 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because Elasticsearch 2 do not support dots in field names anymore, my Gelf logs with dots are not saved. This input plugin could convert fields with dots to objects.
Like
to
The text was updated successfully, but these errors were encountered: