I'm having a hard time in a few days.
In my cloud of words the whole sentences appear.
I already did the command below but it did not work.
Can someone help me?
I already tried this direct command in kibana
PUT db2-bb2 / _mappings / _doc
{
"properties": {
"text_descricao": {
"type": "text",
"fielddata": true
}
}
}
I already tried this code in .conf
filter {
json {
source => "Texto_Descricao"
remove_field => ["Texto_Descricao"]
}
split {
field => "Texto_Descricao"
add_field => {
"string" => "%{[result][string]}"
}
remove_field => "result"
}
}