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
Seems like Kibana has problems displaying index templates created with dynamic mappings set to DynamicMapping.False. Please see issue: elastic/kibana#123809
I guess Kibana should be able to handle this, but also, maybe DynamicMapping generate boolean values instead of string values?
The text was updated successfully, but these errors were encountered:
Thanks for the report. There are a few places where Elasticsearch accepts either a boolean or a string constant, hence the use of an enumeration with True and False members that are sent as strings.
Elasticsearch is lenient and happily accepts a string for boolean values, so this is usually not an issue. In the particular case of templates however, they're stored and sent back "as is" when Kibana fetches the template definition.
The issue could be solved on either side (client library or Kibana), but I think that the client should send a JSON boolean, which is semantically more correct.
Seems like Kibana has problems displaying index templates created with dynamic mappings set to
DynamicMapping.False
. Please see issue:elastic/kibana#123809
I guess Kibana should be able to handle this, but also, maybe
DynamicMapping
generate boolean values instead of string values?The text was updated successfully, but these errors were encountered: