-
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.
[FILTERADD] Support Citrix SDX (#561)
* [FILTERADD] Support Citrix SDX Add support for events from the SDX appliance * Filter collection correction
- Loading branch information
Ryan Faircloth
authored and
GitHub
committed
Jul 10, 2020
1 parent
3d2df67
commit 9507108
Showing
5 changed files
with
77 additions
and
17 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
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
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| filter f_citrix_netscaler_sdx_message { | ||
| message( | ||
| '^(<\d{1,3}>) ?(\w{1,3} \d{1,2} \d{2}:\d{2}:\d{2}) (svm([^:]+): ([^ ]+) .*)' | ||
| flags(store-matches) | ||
| ); | ||
| }; | ||
|
|
||
| rewrite r_citrix_netscaler_sdx_message { | ||
| set("citrix_netscaler" value("fields.sc4s_syslog_format")); | ||
| set("citrix_netscaler" value("fields.sc4s_vendor_product")); | ||
| set("$5" value("HOST")); | ||
| set("$3" value("MESSAGE")); | ||
| }; |
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
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