You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can create templates in Elasticsearch that define settings and mappings for newly created indices. These templates are a great way to group indices.
Get the templates (and index patterns) using the /_template call. jq pattern keys[] as $k | {name: ($k), patterns: .[$k].index_patterns}
Group all indices that don't match a pattern under a single group called Ungrouped
Group all the other indices under the name of the template
The text was updated successfully, but these errors were encountered:
You can create templates in Elasticsearch that define settings and mappings for newly created indices. These templates are a great way to group indices.
/_template
call. jq patternkeys[] as $k | {name: ($k), patterns: .[$k].index_patterns}
Ungrouped
The text was updated successfully, but these errors were encountered: