Hello,
Can you tell me how to set default value of field_datatype is true.
Whenever i delete indices in this location Management --> Index Management --> indices
in kibana. Field_datatype is changed to false automatically... So, i run this command then only it changed to field_data is true.
curl -X PUT localhost:9200/
<beat_name>
/_mapping -H "Content-Type: application/json" -d '{ "properties": { "<field_type>
": { "type": "text", "fielddata":true } } }'
Please help me to how to solve this.