Hi, I'm making a request in logstash through http_poller_plugin and the data that return in full in json.
I'm trying to make a filter to display in the json only the necessary fields.
What would be the correct way to clean up the information display?
using split or json:
filter {
split {
field => "[message]"
}
mutate {
remove_field => [ "[array]" ]
}
}