We always advise users not to cut out data as in almost all cases, users will want that data at some point. However, let us assume you really do have a chatty system that you absolutely cannot control becuase it is setup in a DEBUG mode....
You can leverage the conditional routing to implement programmatic polling. For example, if you know that your data consistently shows up every second of every minute, you can leverage a regex that sends data to the nullqueue. Specifically, I could tell Splunk to index only events that occur every other second. To do this, my regex would ONLY look for events that have a timestamp with a character class that includes odd numbers. I believe the following regex would call timestamps that are all odd (create one that applies for your specific events):
\d\d:\d\d:\d[13579]
In theory, the aforementioned regex would indexevents with 12:00:01, 12:00:03, 12:00:05, 12:00:07, 12:00:09, 12:34:01, etc...
It would NOT index (instead sending events to nullqueue) events with a timestamp of 12:00:02, 12:00:04, 12:00:06, 12:00:08, 12:00:00.
... View more