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!

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...