-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ASA log path to account for events with no hostname
* Update ASA log path and add filter to detect events with no hostname included
- Loading branch information
Mark Bonsack
committed
Jan 31, 2020
1 parent
a1198b8
commit f32c9a1
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| filter f_cisco_asa { | ||
| message('^%ASA-\d+-\d{1,10}: '); | ||
| }; | ||
| message('^%ASA-\d+-\d{1,10}: ') or | ||
| match('^%ASA-\d+-\d{1,10}:', value("LEGACY_MSGHDR")); | ||
| }; | ||
|
|
||
| filter f_cisco_asa_nohost { | ||
| match('^%ASA-\d+-\d{1,10}:', value("LEGACY_MSGHDR")); | ||
| }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters