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 want to query logs as nested fields by using elastic's nested query
There is a missing "type": "nested" field in the elastic mapping for "log" filed of the span type.
... "logs" : { "type" : "nested", "dynamic" : "false", ...
I used this query to search for logs:
GET jaeger-span-*/_search?filter_path=took,hits.hits._source { "_source": ["logs.timestamp", "logs.fields.key", "logs.fields.tagType", "logs.fields.value"], "query": { "nested": { "path": "logs.fields", "query": { "bool": { "must_not": [ {"wildcard": { "logs.fields.value": "anything*you*want" }} ] } } } } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Requirement - what kind of business use case are you trying to solve?
I want to query logs as nested fields by using elastic's nested query
Problem - what in Jaeger blocks you from solving the requirement?
There is a missing "type": "nested" field in the elastic mapping for "log" filed of the span type.
Proposal - what do you suggest to solve the problem or improve the existing situation?
Notes for queryable logs
I used this query to search for logs:
The text was updated successfully, but these errors were encountered: