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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...