Getting Data In

What PCRE regex can we use in our transforms.conf?

roopeshetty
Path Finder

Hi

 

We need to ingest only those events which starts with any of the below strings ; (please note  its starts with not contains

 

create, drop, login, logout, alter, delete

 

For example

“ login success for user Peter”  

"create action success for user Martin"

 

 

we have edited the transforms.conf as below

 

[setnull]

REGEX = .

DEST_KEY = queue

FORMAT = nullQueue

 

[setparsing]

REGEX = login|logout!|create|drop|alter|DELETE

DEST_KEY = queue

FORMAT = indexQueue

 

But this is allowing all events which contains above strings. But our requirement is event should start with above strings;

 

Could you please help us with a PCRE regex for above conditions on transforms.conf?

Labels (2)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @roopeshetty ,

the symbol for starting log is "^", so you should try  this:

REGEX = ^login|logout!|create|drop|alter|DELETE

or

REGEX = ^(login|logout!|create|drop|alter|DELETE)

probably the second is the orrect one.

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...