Вы можете создать шаблон индекса через внешний интерфейс или консоль с помощью запроса ниже
POST .kibana/_doc/index-pattern:<index-name>
{
"type" : "index-pattern",
"index-pattern" : {
"title": "index-*", ---> pattern to match index
"timeFieldName": "execution_time"
}
}
Запрос на просмотр шаблонов индекса
GET .kibana/_search
{
"query": {
"bool": {
"filter": {
"term": {
"type": "index-pattern"
}
}
}
}
}