hey
I want to know how to pass a filters output as request body to http filter
I am trying to pass output of mutate filter as body to http filter.
mutate {
remove_field => [ "@timestamp", "@version"]
}
http {
body => {}
url => "${LIGHTSABER_API_ENDPOINT}"
verb => "POST"
body_format => "json"
automatic_retries => 3
target_body => "response"
}