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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...

Monitoring AI Agents with Splunk Observability Cloud

Let’s say I’m running a travel planning AI app in production. A user asks for three concise hotel options in ...

[Puzzles] Solve, Learn, Repeat: Tiling

This puzzle (first published here) is based on finding groups of tessellated tiles (inspired by floor tiles I ...