I did a test to create index:
Add Index
PUT /access.log.2020.04.07/_doc/1
{
"domain":"www.amazon.com",
"status":200
}
#There is no problem when I query this index, GET _cat/indices
yellow open access.log.2020.04.07 t_IYm_OFQqmx83ObV4Bodw 5 1 1 0 4.5kb 4.5kb
But If my index name contains IP:
PUT /access.log.192.168.10.7/_doc/1
{
"domain":"www.amazon.com",
"status":200
}
#GET _cat/indices
yellow open access.log.x.x.x.x r3Iut699QPqO4awkTwpn4g 5 1 1 0 6.9kb 6.9kb
Why does the index name become x.x.x.x?
But the index name displayed in kibana is normal
Has anyone encountered this situation? I tested it with ES 6.X and 7.X version,All have this kind of problem
