Getting Data In

Parsing comma separated values

danurag
Explorer

I have a script that outputs data in the following format. The problem is that the value of the Error field gets initialized to "No" and ignores the Error part. Also, the Error field could have have a completed stack trace and flow into multiple lines. How do I write the transforms stanza so that it assigns all the values to the "Error" field.

ElapsedTime=2.2812208, StatusCode=OK, ContentMatched=False, Error=No Error

Thank you

Tags (1)
0 Karma

yannK
Splunk Employee
Splunk Employee

try the inline regex,

mysearch | rex field=hop "Error=(?<Error>([^=]*)$)" | table Error

then once confirmed working, you can define an automatic field extraction
see http://docs.splunk.com/Documentation/Splunk/4.2.5/Knowledge/Managesearch-timefieldextractions

danurag
Explorer

Hi MuS, I need help with writing the complete regex. Could you please give me some pointers.

Thanks.

0 Karma

MuS
Legend

Hi danurag

you can use a regex like this ([^=]*)$ to match everything after the last = to be extracted

cheers

Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

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