I wanted to create index like myindex:logstash-012
so I can create index pattern myindex:logs*
in opensearch dashbaord.
Every time I`m getting is following error
{
"error": {
"root_cause": [
{
"type": "invalid_index_name_exception",
"reason": "Invalid index name [my-test:test], must not contain ':'",
"index": "my-test:test",
"index_uuid": "_na_"
}
],
"type": "invalid_index_name_exception",
"reason": "Invalid index name [my-test:test], must not contain ':'",
"index": "my-test:test",
"index_uuid": "_na_"
},
"status": 400
}
Is there any way to achieve this index pattern. I tried with alias ans index templates but nothing worked.
thanks