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
Is your feature request related to a problem? Please describe.
Users often format the index with values from the Event or EventMetadata, and this can commonly lead to invalid index names that don't follow the guidelines below
OpenSearch Service indexes have the following naming restrictions:
All letters must be lowercase.
Index names cannot begin with _ or -.
Index names can't contain spaces, commas, :, ", *, +, /, \, |, ?, #, >, or <.
**Describe the solution
Have the index parameter always conform to a valid index naming. The index will always take what is given and perform the following operations. This could be enabled with a separate flag enforce_valid_index: true or normalize_index: true
Make lowercase
Replace starting _ or - with `` (should this character be configurable?)
Replace invalid characters with _ (should this character be configurable?)
Alternatives
Create expression functions that will do this getValidIndex or getValidIndexMetadata
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Users often format the
index
with values from the Event or EventMetadata, and this can commonly lead to invalid index names that don't follow the guidelines below**Describe the solution
Have the
index
parameter always conform to a valid index naming. The index will always take what is given and perform the following operations. This could be enabled with a separate flagenforce_valid_index: true
ornormalize_index: true
_
or-
with `` (should this character be configurable?)_
(should this character be configurable?)Alternatives
getValidIndex
orgetValidIndexMetadata
The text was updated successfully, but these errors were encountered: