ElasticSearch + Kibana. Kibana не отображает данные в индексах
Пишу логи в ElasticSearch, структура индекса следующая:
{
"elastic-logs": {
"aliases": {},
"mappings": {
"properties": {
"action": {
"type": "keyword"
},
"admin_user_id": {
"type": "text"
},
"create_date": {
"type": "date"
},
"description": {
"type": "text"
},
"id": {
"type": "text"
},
"ip": {
"type": "text"
},
"object": {
"type": "keyword"
},
"object_id": {
"type": "text"
},
"parent_id": {
"type": "keyword"
},
"status": {
"type": "keyword"
},
"timestamp": {
"type": "date"
},
"user_id": {
"type": "keyword"
}
}
},
"settings": {
"index": {
"creation_date": "1596528511431",
"number_of_shards": "1",
"number_of_replicas": "1",
"uuid": "z2jnRxacSsaS9_BKJKZquQ",
"version": {
"created": "7080099"
},
"provided_name": "elastic-logs"
}
}
}
}
При попытке настроить визуализацию логов в Kibana /app/logs/settings
в колонках подтягиваются поля индекса, но данные не отображаются
есть идеи, что может идти не так?

