Splunk Search

Key value pair extraction not working

viswanathsd
Path Finder

Sample Event:

2015-07-01 09:17:22,962|CACHE-NAME:upf-cccc-ttt-yyy2-zzz-cache|BACK-CACHE-ENTRIES:0|BACK-CACHE-SIZE-IN-BYTES:0|BACK-CACHE-SIZE-IN-MB:0|BACK-CACHE-AVG-SIZE:0|BACK-CACHE-NO-OF-GETS:0|BACK-CACHE-NO-OF-HITS:0

Tried below options...
Transforms.conf:

[sampleextract]
([A-Z|\-]+):([a-z|\-|\d]+)   

OR

\|(?<_KEY_1>[A-Z|\-]+):(?<_VAL_1>[^|]+)

OR

\|(?<_KEY_1>[^:]+):(?<_VAL_1>[^|]+)

OR

\|([A-Z|\-]+):([a-z|\-|\d]+) 
_raw
$1::$2

Props.conf:

Name                                      Type             Extraction/Transform

sampleextract : REPORT-samplesource       Uses transform   sampleext
0 Karma

woodcock
Esteemed Legend

Try this:

Transforms.conf:

[sampleextract]
REGEX = ([^|:\s]{3,}):([^|:\s]+)
FORMAT = $1::$2
MV_ADD = 1

Props.conf:

[mySourceType]
REPORT-sampleextract sampleextract
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!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

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

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...