-
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
[Filebeat] user_agent field errors with Filebeat 7 and Elasticsearch 6 #10655
Comments
Elasticsearch 6.6 / 6.7 has a config option This is also related to: #10650 |
In order to allow Filebeat 7.x remain compatible with Elasticsearch 6.x, Filebeat would need to dynamically inject |
@andrewkroh thanks for this suggestion, I am giving a try to this idea in #10875. I have seen that |
… 7.0 and ES version is 6.7.X (#10875) When using the `user_agent` processor to ingest data from Filebeat 7.0 into Elasticsearch 6.X conflicts appear with ECS user_agent fields, this can be solved by setting `ecs: true` when pipelines are being loaded into Elasticsearch 6.7.0. For minor versions where `ecs` option is not available, pipelines will fail to load. Fix #10655
… 7.0 and ES version is 6.7.X (elastic#10875) When using the `user_agent` processor to ingest data from Filebeat 7.0 into Elasticsearch 6.X conflicts appear with ECS user_agent fields, this can be solved by setting `ecs: true` when pipelines are being loaded into Elasticsearch 6.7.0. For minor versions where `ecs` option is not available, pipelines will fail to load. Fix elastic#10655 (cherry picked from commit 34eaf57)
… 7.0 and ES version is 6.7.X (#10875) (#10930) When using the `user_agent` processor to ingest data from Filebeat 7.0 into Elasticsearch 6.X conflicts appear with ECS user_agent fields, this can be solved by setting `ecs: true` when pipelines are being loaded into Elasticsearch 6.7.0. For minor versions where `ecs` option is not available, pipelines will fail to load. Fix #10655 (cherry picked from commit 34eaf57)
The Suricata modules's ingest pipeline fails due to changes (elastic/elasticsearch#37329) in the
user_agent
processor in ES ingest node. I suspect other modules are affected by this problem.{"type":"mapper_parsing_exception","reason":"object mapping for [user_agent.os] tried to parse field [os] as object, but found a concrete value"}
{"type":"mapper_parsing_exception","reason":"object mapping for [user_agent.device] tried to parse field [device] as object, but found a concrete value"}
In order to make the ES 6.x user_agent processor's output compatible with the Filebeat template we need to add some renames/sets after the
user_agent
in the pipeline.The text was updated successfully, but these errors were encountered: