Splunk Search

Getting text from raw event with regex

g_paternicola
Path Finder

 

Hi everyone, 

I'm trying to get a simple text from a raw event, but I can't make it works.

The event looks like this:

2021-09-13_15-24-17.png

and my regex looks like this:

| rex field=_raw "Allow\s(?<GroupName>\w.+)\s+Enroll" 

my issue is, that I only going to get a few of those groups, but not all... for example I will get the Domain Users but not the Enterprise Users which is in the same raw file...

Could please someone help me with this regex?

Labels (3)
Tags (3)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

It's not clear to me what the problem is, but I think the rex command is not extracting all instances of the "Allow" field.  If so, then the max_match option should help.

| rex field=_raw max_match=0 "Allow\s(?<GroupName>\w.+)\s+Enroll" 
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

It's not clear to me what the problem is, but I think the rex command is not extracting all instances of the "Allow" field.  If so, then the max_match option should help.

| rex field=_raw max_match=0 "Allow\s(?<GroupName>\w.+)\s+Enroll" 
---
If this reply helps you, Karma would be appreciated.
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 ...