I have json string array that I am decomposing into separate fields, such as:
'{"eventid":1,"content":["a","b","c","d"]}'
after adding some field names and remove_field content. I get the following:
{
"@timestamp" => 2017-08-08T13:16:02.523Z,
"@version" => "1",
"eventid" => 1,
"one0" => "a",
"one1" => "b",
"one2" => "c",
"one3" => "d"
}
I removed all my indices. Started fresh and I tried to convert one1 from string to integer value in the same mutate filter that I added fields and remove_field above, except that the field still shows as string in Kibana. Not sure why it does not set the type to integer.