|
Have a tested Regex I am trying to use to keep events. I ran it through some online regex checkers. When I run it through Splunk I am not getting my events. I think it is a case issue, how do I make this entire expression case insensitive? Props.conf
Transforms.conf
[setparsingvipp]
Thanks |
|
dchodur, I think the main issue here is with your "setparsingvipp" transforms.conf stanza. You are sending data to the "vipp" queue, which is not a valid Splunk queue. Do you want this to go to the "parsingQueue" instead? 1
though, fwiw, you simply prefix a PCRE regular expression with
(26 May '11, 17:13)
gkanapathy ♦
|
|
hazekamp you were correct, need to send to the indexQueue and not the index name, Thanks! I misread how that was to be setup in the documenation. Here is what is working for me now. Props.conf
transforms.conf
Looks like I needed to use (?m) as well. Have not tried the (?i) yet. Thanks for the help. Hope this helps someone else. |