The copy configuration option of a mutate filter in Logstash
is as follows:
filter {
mutate {
copy => { "source_field" => "dest_field" }
}
}Whereas the copy function of the mutate filter in the Chronicle documentation
is as follows:
mutate {
copy => {
"destinationToken" => "sourceToken"
}
}
They seem to be differing in their logic. The destination field is on the left in Chronicle and on the right in Logstash. Which one is correct?


