I currently have logstash input for rest API HTTPs webhooked to my Logstash server.
The application sending is sending heartbeats along with the data packets, and I don't need to store those. So im looking for something like the following in the logstash config:
filter {
if [heartbeat]: {
drop{}
}
}
or something along those lines so that the event that contains that field is dropped
Thanks