We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hi I use this plugin to create a new key (or a new field),the value is "123",how can I get a integer 123?as I output it to EFK stack for statistics
The text was updated successfully, but these errors were encountered:
Hi. you must use fluent-plugin-elasticsearch and write own template with mapping field: example_template:
{ "index_patterns": ["logstash-*", "otherpattern-*"], "mappings": { "properties": { "size":{ "type": "integer"}, "coordinates":{ "type": "geo_point"}, "remote":{ "type": "ip"}, "code":{ "type": "short"} } } }
and configure fluent in elasticsearch section like: ... template_file /fluentd/etc/example_template template_name example_template template_overwrite true max_retry_putting_template 15 ...
Sorry, something went wrong.
No branches or pull requests
hi
I use this plugin to create a new key (or a new field),the value is "123",how can I get a integer 123?as I output it to EFK stack for statistics
The text was updated successfully, but these errors were encountered: