I'm trying to search against an existing index but the request yields no results. I know there is data since other users can see the index and view data in the same time frame.
I am able to view data in most indices in Kibana instance, but a few indices seem to be 'unsearchable' and give no results.
I'm new to Kibana so I may be missing something obvious. Any help would be hugely appreciated.
Some useful info:
- The index does have a
@timestamp
field and is searchable - Other users can run the same request and can view the data in the index
- I have the kibana_system built-in user role.
The request:
{
"track_total_hits": false,
"sort": [
{
"@timestamp": {
"order": "desc",
"unmapped_type": "boolean"
}
}
],
"fields": [
{
"field": "*",
"include_unmapped": "true"
},
{
"field": "@timestamp",
"format": "strict_date_optional_time"
}
],
"size": 500,
"version": true,
"script_fields": {},
"stored_fields": [
"*"
],
"runtime_mappings": {},
"_source": false,
"query": {
"bool": {
"must": [],
"filter": [
{
"range": {
"@timestamp": {
"format": "strict_date_optional_time",
"gte": "2022-08-09T14:00:00.000Z",
"lte": "2022-11-08T02:06:04.033Z"
}
}
}
],
"should": [],
"must_not": []
}
},
"highlight": {
"pre_tags": [
"@kibana-highlighted-field@"
],
"post_tags": [
"@/kibana-highlighted-field@"
],
"fields": {
"*": {}
},
"fragment_size": 2147483647
}
}