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
terms
I've tried to exclude some values from the "pie" chart, but they are still presented.
Here is a picture:
Kibana made following query:
{ "_source": { "excludes": [] }, "aggs": { "0": { "terms": { "exclude": [ "A" ], "field": "foo.keyword", "order": { "_count": "desc" }, "shard_size": 25, "size": 3 } } }, "fields": [ { "field": "@timestamp", "format": "date_time" } ], // "query" part is removed "track_total_hits": true }
Elastic returns:
... "aggregations": { "0": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ { "key": "b", "doc_count": 1 }, { "key": "c", "doc_count": 1 } ] } } ...
Quesma returns:
... "aggregations": { "0": { "buckets": [ { "doc_count": 1, "key": "A" }, { "doc_count": 1, "key": "b" }, { "doc_count": 1, "key": "c" } ], "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0 } } ...
The text was updated successfully, but these errors were encountered:
Terms
exclude
Terms: start supporting exclude param (#1140)
c5d1baa
#1085 TODO (next PRs): * `include` parameter can probably be quite easily handled the same way * our regex translator is pretty basic, it requires tests + possibly a better implementation Issue from the issue works fine now: <img width="1420" alt="Screenshot 2024-12-27 at 01 30 32" src="https://github.com/user-attachments/assets/2b943135-7d10-4dd7-b418-600cd3a2632c" /> <img width="1416" alt="Screenshot 2024-12-27 at 01 32 17" src="https://github.com/user-attachments/assets/39b82688-1816-42b9-8823-77a93af6e108" />
Fixed by #1140.
Sorry, something went wrong.
No branches or pull requests
I've tried to exclude some values from the "pie" chart, but they are still presented.
Here is a picture:
Kibana made following query:
Elastic returns:
Quesma returns:
The text was updated successfully, but these errors were encountered: