Getting Data In

black list regex files starting with a period (.)

coreyCLI
Path Finder

I have seen a few regex examples on this and I have used the regex tools online to test my regex to blacklist files that begin with a period (.) yet this example is not working.

example of inputs

[monitor:///dir/dir/dir/syslog]

index = index

sourcetype = sourcetype

host_regex=syslog\/(?P<host>.*)\.syslog

blacklist = ^\.\S

 

example filename = .filename.syslog.2021-01-01

Labels (1)
Tags (3)
0 Karma

coreyCLI
Path Finder

Thanks for the quick reply Jacob.  While that didnt work for our specific case I do appreciate the response.  In the end, and I am usure why TBH, this is whats currently in place and working for us to blacklist files that start with a dot (.)

blacklist = \/dir\/dir\/syslog\/\.\S+

0 Karma

jacobpevans
Motivator

You have the ^\. part of the regex correct, but \S is matching a single non-whitespace character as seen here. I assume what you are really going for is ^\.\S*, but it would be more accurate to use ^\..* to blacklist every single file that either is a . or starts with one (see that here). The difference is that using \S* would not blacklist files that start with a . but have a space in them.

(Sorry for the bad formatting. Splunk is throwing all kinds of errors when I try to properly format the text)

Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.

coreyCLI
Path Finder

sady its not working for me.  I have also tried something more specific and still no joy.

blacklist = /dir/dir/dir/syslog/.*

and

blacklist = \/dir\/dir\/dir\/syslog\/\..*

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...