Splunk Search

Will you help me create the regex to convert the following data into a column value pair?

ppanchal
Path Finder

Hi,

Below is my sample payload. I want to convert/display it into a column value pair.
Eg, ESBTransactionID
75010569

Any help is appreciated.

75010569\n  OCS\n  \n    Update\n    TKT\n    TKT\n    \n      OCS Driver\n    \n    OCS Driver\n  \n  000141076513003\n  false\n  \n    \n      R_SUBBED\n      TKT
Tags (2)
0 Karma

valiquet
Contributor

| MAKERESULTS
| Eval s="75010569\n OCS\n \n Update\n TKT\n TKT\n \n OCS Driver\n \n OCS Driver\n \n 000141076513003\n false\n \n \n R_SUBBED\n TKT" |rex mode=sed field=s "s/\\n /=/g" | rex field=s max_match=0 "(?[^=]+)=(?[^=]+)" |fields transaction VALUE | fields - _time

0 Karma

richgalloway
SplunkTrust
SplunkTrust

See if this helps.

index=foo | rex "(?<ESBTransactionID>^\d{8})" | table ESBTransactionID
---
If this reply helps you, Karma would be appreciated.
0 Karma

woodcock
Esteemed Legend

Like this?

Your search here
| rex "^(?<ESBTransactionID>\d+)"
| table ESBTransactionID
0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...