Splunk Search

How do I parse a key value field in Splunk and search based on values of that field?

gb0143
New Member

I have a log as follows

14AUG2017_12:54:44.903 3418:13 INFO filename.cpp:200 ID:abc123 contextInfo: [ peer_service: someservice ] object: [ prop1:SOMETHING, prop2:SOMETHING2, prop3:someInt ] otherInfo: [ numEvents:1, dates:[ 01AUG2017 - 01AUG2017 ] otherInfo: [ someOtherInfo:23, someMoreOtherInfo:MID ] ]

How would I extract the "numEvents" field and query based on it. For example, numFields > 10. I intend to eventually extract all the fields and make a dashboard but in order to do that I have to understand how the field extraction works.

0 Karma

somesoni2
Revered Legend

You can add following search time field extraction (using transforms) on your search head(s).

props.conf (on search head)

[YourSourceTypeGoesHere]
REPORT-extractFields = colon_separated_fields

transforms.conf(on search head)

[colon_separated_fields]
REGEX = (\w+)\:([^,\s]+)
FORMAT = $1:$2

This should extract your fields which are separated by colon, which you can use in the base search to filter (index=foo sourucetype=YourSourcetype numEvents>0)

If you want to do it inline in the search, do like this

index=foo sourucetype=YourSourcetype |  extract pairdelim="," kvdelim=":" | where numEvents>0
0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...