Wrong filter?
Posted: Sun Apr 11, 2021 3:54 am
Hello,
What could be wrong with the following filter:
I have a logentry:
And my filter looks like this:
If I apply this filter all logging seems to be dropped for this logsource.
Best regards,
What could be wrong with the following filter:
I have a logentry:
Code: Select all
VMM01 wms[6466]: <126005> <6466> <WARN> <VMM01 10.10.32.11> |ids| Interfering AP: The system classified an access point (BSSID 00:df:03:00:00:26 and SSID MB WLAN 61619 on CHANNEL 6) as interfering. Additional Info: Detector-AP-Name:AP-03-AP135; Detector-AP-MAC:00:5d:00:48:00:c0; Detector-AP-Radio:2.Code: Select all
if [message] =~ /VMM01.*\|ids\|.*/ {
grok {
match => [ 'message', 'VMM01.*\|ids\| %{GREEDYDATA:dis-type}: %{GREEDYDATA:data}' ]
}
mutate {
replace => [ 'type', 'aruba-ids' ]
}
}Best regards,