-
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.
Fix startup warnings at startup caused by fake comments in csv file
- Loading branch information
Mark Bonsack
committed
Dec 10, 2019
1 parent
858c42a
commit 492b81c
Showing
2 changed files
with
7 additions
and
6 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,5 +1,6 @@ | ||
| @version: 3.24 | ||
| #filter f_test_test { | ||
| # host("something-*" type(glob)) or | ||
| # netmask(192.168.100.1/24) | ||
| #}; | ||
| filter f_test_test { | ||
| # host("something-*" type(glob)) or | ||
| # netmask(169.254.100.0/24) | ||
| host("cannot_ever_happen") | ||
| }; |
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,2 +1,2 @@ | ||
| #f_test_test,.splunk.index,"badindex" | ||
| #f_test_test,fields.compliance,"pci" | ||
| f_test_test,.splunk.index,"will_never_happen_index" | ||
| f_test_test,fields.compliance,"pci" |