Hello,
I am trying to configure Filebeat to write data to a custom index like my-index-{now/d}-000001 (using filebeat-8.8.1 and Elastcicsearch 8.8.1).
I have followed this guide; But when i try to bootstrap the index using;
PUT my-index-%7Bnow%2Fd%7D-000001
{
"aliases": {
"my-index": {}
}
}
I get the error below;
{
"error": {
"root_cause": [
{
"type": "invalid_index_name_exception",
"reason": """Invalid index name [my-index-{now/d}-000001], must not contain the following characters ['\',' ','"','<','*','?','>','|',',','/']""",
"index_uuid": "_na_",
"index": "my-index-{now/d}-000001"
}
],
"type": "invalid_index_name_exception",
"reason": """Invalid index name [my-index-{now/d}-000001], must not contain the following characters ['\',' ','"','<','*','?','>','|',',','/']""",
"index_uuid": "_na_",
"index": "my-index-{now/d}-000001"
},
"status": 400
}
Is there something i am missing?