Getting Data In

How to configure props.conf and transforms.conf to select events containing a string of words?

dseabury
Explorer

I have scoured the 'Net, Splunk docs and the Answers and found lots of good information on setting up my indexer filtering to reduce the noise coming from my firewall syslog UDP feed. I feel like I'm really close, because now there is nothing coming through. What I WANT to see are only messages that contain "TCP access denied". I can apply a piped REGEX statement on the search and it works, but I don't seem to have props and transforms files set up quite right yet.

This works in search: source=firewall | regex _raw="TCP access denied"

Props.conf:
[source::firewall]
TRANSFORMS-set= setnull,setparsing

Transforms.conf:
[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue

[setparsing]
REGEX _raw="TCP access denied"
DEST_KEY = queue
FORMAT = indexQueue

Any additional insight would be welcome!

1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Replace this:

REGEX _raw="TCP access denied"

With this:

REGEX = TCP access denied

That's assuming the quotes aren't part of the to-be-matched event.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Try reversing the order of your TRANSFORMS-set statement. The setnull transform is matching everything, leaving nothing for setparsing to index.

---
If this reply helps you, Karma would be appreciated.
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

The order setnull,setparsing is correct. Both are run, nullQueue is always set and sometimes overwritten by indexQueue.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Replace this:

REGEX _raw="TCP access denied"

With this:

REGEX = TCP access denied

That's assuming the quotes aren't part of the to-be-matched event.

martin_mueller
SplunkTrust
SplunkTrust

As a rule of thumb, restarting is necessary for all index-time configuration file changes, which this very much is.

Search-time config file changes may get along with a debug/refresh call.

dseabury
Explorer

SUCCESS!!! Thanks for the responses. I made the change recommended by martin_mueller and restarted Splunk (is that necessary?).

This will throw open the door for me to add more filtering and get our firewall index fully tuned...

Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...