Splunk Search

How do I extract the entire value for a field in my sample data?

ynegoro
New Member

I'd like to get contents between fields. Here is a sample log.

CheckPointCount=N/A,CheckPointRestart=no,CheckPointInterval=5,StatusMsg=Open file "d:\data\Inbound Files\ABCSystems\DIFF.PRN" failed.  ,CrlMsg=N/A,StatusDiagCode=08,StatusSeverity=01,

When I use "StatusMsg" in query, only "Open" is selected. I'd like to retrieve all content before "CrlMsg".
How can I retrieve entire StatusMsg?

0 Karma
1 Solution

masonmorales
Influencer
| rex "StatusMsg=(?<StatusMsg>[^,]+),CrlMsg"

View solution in original post

0 Karma

gokadroid
Motivator

If the one @masonmorales gave isn't sufficient already Or perhaps to get the comma as well in the capture try below 🙂

your query to return events
| rex "StatusMsg=(?<statusMsg>.*?)CrlMsg="
| table statusMsg
0 Karma

masonmorales
Influencer
| rex "StatusMsg=(?<StatusMsg>[^,]+),CrlMsg"
0 Karma
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 ...