A colleague created an index through an API
Name of the index: LF_IDX_THE_INDX
But - no idea how - with a leading TAB
char in front
When running
GET _cat/indices?v
the LF_IDX_THE_INDX
shows a "whitespace" in the listing
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
green open .monitoring-kibana-6-2019.11.09 IPyXpkSmRMKlpTzuPIFe2g 1 1 8637 0 4.4mb 2.2mb
green open .kibana_1 pqpPwUYxR9GxuklEEIJ2SQ 1 1 232 3 650.6kb 325.3kb
green open .reporting-2019.01.13 6MUE5n9-TOGVXw_ZA0OHsw 1 1 4 0 29.8mb 14.9mb
green open .monitoring-kibana-6-2019.11.12 0yapl5Z0Rp6hUAbaIqsYXQ 1 1 8637
green open LF_IDX_THE_INDX 81zbvGIIRKu36kszRtnE4Q 5 1 3248575 31489 86gb 43gb
But when running
GET *LF_IDX_THE_INDX/_settings
Shows
{
"\tLF_IDX_THE_INDX" : {
"settings" : {
"index" : {
"creation_date" : "1573809743739",
"number_of_shards" : "5",
"number_of_replicas" : "1",
"uuid" : "WKBJDi-bTl2FWYi0IHATCg",
"version" : {
"created" : "6050499"
},
"provided_name" : "\tLF_IDX_THE_INDX"
}
}
}
}
With a magnificient '\t' in the 'leader' position.
Is there a way to escape this shar to rename, create an alias or whatever?
Thanks in advance
Thierry