Getting Data In

How to filter out any directory starts out with "."

vincenty
Explorer

I am monitoring a series of directories. I want to blacklist any (sub)directories that is starting with a ".".

i.e.
/home/logs/dir1/dir2/.zfs/...
/home/logs/dir1/dir2/dir3/.snapshot/...

I can't seem to get a blacklist regex working for "any directory starting with a ."

[monitor:///home/logs/dir1/]
blacklist = \/.*

Tags (1)
0 Karma

kristian_kolb
Ultra Champion

/.* would match any character, 0 or more times. This would match all your files/dirs most likely.

Try /\.[^/]+/

Should mean 'slash, literal dot, not-slash (1 or more), slash'

/K

0 Karma

BobM
Builder

Blacklists and whitelists use perl compatible regular expressions (PCRE) so you need to change the blacklist. Replace . with \. and * with .*

try

blacklist = /\..*
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...