So, the sample data is (I think) somehow tied to the timeframe you downloaded it. Look here:
in my case, that data covered a period of approx 90 days earlier in 2025.
Whats your equivalent discover view?
EDIT: Point here is what you call the "proposals" are the results from the POST. If there are no results, an empty list, there will be no proposals presented. Why you might get zero results, it might have been a bug around that release time, or something local to your setup.
For me, the last 1 year query is below, with is POSTed to
http://$ESHOST:5601/internal/kibana/suggestions/values/kibana_sample_data_logs
which is equivalent to
kbn:/internal/kibana/suggestions/values/kibana_sample_data_logs
in Kibana DevTools.
I dont know if Kibana itself might internally cache any of these results or if every call to that endpoint results in a query to elasticsearch itself.
{
"query": "",
"field": "agent.keyword",
"fieldMeta": {
"count": 0,
"name": "agent.keyword",
"type": "string",
"esTypes": [
"keyword"
],
"scripted": false,
"searchable": true,
"aggregatable": true,
"readFromDocValues": true,
"subType": {
"multi": {
"parent": "agent"
}
},
"shortDotsEnable": false,
"isMapped": true
},
"filters": [
{
"range": {
"timestamp": {
"format": "strict_date_optional_time",
"gte": "2024-07-07T00:00:00.000Z",
"lte": "2025-07-07T18:55:59.999Z"
}
}
}
],
"method": "terms_enum"
}