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
When having an multi_field in my index, the non default Value is not shown/selectable in the fields selector of the Table Panel. It's also not shown/suggested when typing the fieldname.
The only way to use it in a Panel is, to know that the type is a multi_field and use typed navigation.(i.e. "@iislog.csuseragent.as_keyword") manually.
Multi field now shows in typeahead, however showing the multi-field values in the table will not be supported, the table is really only for viewing _source fields.
When having an multi_field in my index, the non default Value is not shown/selectable in the fields selector of the Table Panel. It's also not shown/suggested when typing the fieldname.
The only way to use it in a Panel is, to know that the type is a multi_field and use typed navigation.(i.e. "@iislog.csuseragent.as_keyword") manually.
Example from Mapping:
"@iislog" : {
"properties" : {
"csuseragent" : {
"type" : "multi_field",
"fields" : {
"csuseragent" : {
"type" : "string"
},
"as_keyword" : {
"type" : "string",
"analyzer" : "keyword",
"include_in_all" : false
}
}
...
}}}
The text was updated successfully, but these errors were encountered: