i am trying to set a the value of a field to another field.
Like i have a field "date" and "name". i want the set the value of these fields to another field "log"
I am using set processor:
{
"set": {
"field": "log",
"value": "%{date} %{name}"
}
}
this does not work and set s the value of "log" as "%{date} %{name}" instead of the value in "date" and "name".
Is there a way to do this?