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
I tried to point filebeat master at a 5.6.14 ES cluster and it fails with:
{"type":"invalid_type_name_exception","reason":"Document mapping type name can't start with '_', f ound: [_doc]"}
It will be the same for ES <6.2 since support for _doc was added to 6.2: elastic/elasticsearch#27816
_doc
According to the PR switching to _doc it should only do so for ES 7.0 #9056 But it looks like it's hard coded:
beats/libbeat/outputs/codec/json/event.go
Line 49 in 41f87a4
beats/libbeat/outputs/elasticsearch/client.go
Lines 693 to 697 in 41f87a4
The text was updated successfully, but these errors were encountered:
This should work now with recent master.
Sorry, something went wrong.
This should be fixed in latest releases.
No branches or pull requests
I tried to point filebeat master at a 5.6.14 ES cluster and it fails with:
{"type":"invalid_type_name_exception","reason":"Document mapping type name can't start with '_', f ound: [_doc]"}
It will be the same for ES <6.2 since support for
_doc
was added to 6.2: elastic/elasticsearch#27816According to the PR switching to _doc it should only do so for ES 7.0 #9056
But it looks like it's hard coded:
beats/libbeat/outputs/codec/json/event.go
Line 49 in 41f87a4
Shouldn't this use eventType?
beats/libbeat/outputs/elasticsearch/client.go
Lines 693 to 697 in 41f87a4
The text was updated successfully, but these errors were encountered: