Hi,
I want to use a simple Term aggregation in a data table but I have a problem with the Field selector. The field that I want to use for aggregation is not in the dropdown list. However, the aggregation works perfectly if I query elasticsearch directly:
GET /entities/_search
{
"size": 0,
"aggs": {
"category": {
"terms": {
"field": "Cat_EN.keyword",
"size": 10
}
}
}
}
I use the latest version (6.4.0) of ES and Kibana.
Do you have any idea on what is going wrong?
Thank you,
Aurelien