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!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

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

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...