Page 1 of 1

Input Filter to Ignore IPs

Posted: Fri Feb 26, 2021 12:10 pm
by sagansapien
Greetings,

We have several devices that are intermittently sending log data which I wish to ignore.

Is it possible to configure an input filter to drop all log data from specific IPs? I want to keep these devices off the "Not Sending" report.

Thanks

Re: Input Filter to Ignore IPs

Posted: Fri Feb 26, 2021 1:47 pm
by scottwilkerson

Code: Select all

if [host] == 'xxx.xxx.xxx.xxx' {
    drop{ }
}

Re: Input Filter to Ignore IPs

Posted: Fri Feb 26, 2021 4:25 pm
by sagansapien
Thank you!

Re: Input Filter to Ignore IPs

Posted: Fri Feb 26, 2021 5:33 pm
by scottwilkerson
sagansapien wrote:Thank you!
No problem

Locking thread