Splunk Search

extract with quoted values

bowa
Path Finder

In our logs we have keyvalue pairs that looks like this

key1='valuex'
key2='value value val'
keyx=''
keyxx='lksajdf lajsdf'

just the default |extract does a good job but all the values still have the single quotes around them. One thing to remember is that we dont know how many keys and what keys there will be, so i cant hard code them, they are volatile.

i would like to apply this regexp to all the values of my extractions ^'(.*)'$

can i configure this somewhere in my transforms.conf ?

Tags (1)
0 Karma

bojanz
Communicator

Something like this should work:

props.conf:

[mysourcetype]
REPORT-ex = myreport

transforms.conf:

[myreport]
REGEX = ([^=]+)='([^']+)'\s
FORMAT = $1::$2
REPEAT_MATCH = true

This should automatically extract all values and populate keyX fields with them, no matter how many there are.

0 Karma

bowa
Path Finder

doesn't work for me ... just using |extract works but all values are still with the single quotes around them .

0 Karma
Get Updates on the Splunk Community!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...