We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
current traces or traces data stream mapping has this attributes definition
"attributes": { "type": "object", "data_stream": { "properties": { "dataset": { "ignore_above": 128, "type": "keyword" }, "namespace": { "ignore_above": 128, "type": "keyword" }, "type": { "ignore_above": 56, "type": "keyword" } } } } },
that is uneven bracket'ed and I think uses an incorrect schema for type object, the correct one should be
"attributes": { "type": "object", "properties": { "data_stream": { "properties": { "dataset": { "ignore_above": 128, "type": "keyword" }, "namespace": { "ignore_above": 128, "type": "keyword" }, "type": { "ignore_above": 56, "type": "keyword" } } } } },
The text was updated successfully, but these errors were encountered:
@chikei thanks for your help We will issue a fix ASAP
Sorry, something went wrong.
remove unnecessary data_stream mapping support form all signals [is…
data_stream
3a570cc
…sue](opensearch-project#199) Signed-off-by: YANGDB <yang.db.dev@gmail.com>
@chikei see #200 - soon to be reviewed and merged
YANG-DB
No branches or pull requests
current traces or traces data stream mapping has this attributes definition
that is uneven bracket'ed and I think uses an incorrect schema for type object, the correct one should be
The text was updated successfully, but these errors were encountered: