I am trying to add a field as below within one of our ingest pipelines
"set": {
"field": "upstream_response_time_int",
"copy_from": "upstream_response_time"
}
But it gives the below error even though the docs say either copy_from
or value
only one needs to be specified ? Can someone please help ?
{
"error" : {
"root_cause" : [
{
"type" : "parse_exception",
"reason" : "[value] required property is missing",
"processor_type" : "set",
"property_name" : "value"
}
],
"type" : "parse_exception",
"reason" : "[value] required property is missing",
"processor_type" : "set",
"property_name" : "value"
},
"status" : 400
}