Getting Data In

Can I "/dev/null" a sourcetype?

Steve_Litras
Path Finder

So I need to temporarily free up some indexing license. Rather than tweaking my deployment, I was hoping I could just route a few sourcetypes to /dev/null for a little while. Is there a way I can tell splunk to not index a sourcetype of a list of sourcetypes?

Thanks Steve

Tags (3)
1 Solution

ftk
Motivator

Yes you can by routing the undesired events to the nullQueue. Check this part of the documentation: http://www.splunk.com/base/Documentation/latest/Admin/Routeandfilterdata#Discard_specific_events_and...

Let's assume you don't want the sourcetype my_sourcetype. On your indexer, set up your props.conf:

[my_sourcetype]
TRANSFORMS-null= setnull

and then in transforms.conf:

[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue

You can of course tweak the REGEX to not be as greedy and just throw out specific events. But the example as is will discard everything coming in as the my_sourcetype sourcetype.

View solution in original post

ftk
Motivator

Yes you can by routing the undesired events to the nullQueue. Check this part of the documentation: http://www.splunk.com/base/Documentation/latest/Admin/Routeandfilterdata#Discard_specific_events_and...

Let's assume you don't want the sourcetype my_sourcetype. On your indexer, set up your props.conf:

[my_sourcetype]
TRANSFORMS-null= setnull

and then in transforms.conf:

[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue

You can of course tweak the REGEX to not be as greedy and just throw out specific events. But the example as is will discard everything coming in as the my_sourcetype sourcetype.

Steve_Litras
Path Finder

Worked like a charm! Thanks.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...