Splunk Search

How can I convert the format of the values for a multivalue field?

sfatnass
Contributor

Hi

I want to change a multivalue field from:

Abcd=0.3333
GBTDF=0.25
JKLLIH=0.5

to:

Abcd 33%
GBTDF 25%
JKLLIH 50%

thx

ps: it's a not a simple field

0 Karma
1 Solution

javiergn
Super Champion

What about this? You can ignore the first 4 lines that I used to replicate your use case.

| stats count
| fields - count
| eval event = "Abcd=0.3333, GBTDF=0.25, JKLLIH=0.5"
| eval event = split(event, ",")
| mvexpand event
| rex field=event "(?<key>[^=]+)=(?<value>[\d\.]+)"
| eval keyvalue = key . " " . round(value*100,0) . "%"
| fields - key, value, event
| stats list(keyvalue) as keyvalue

Output:

keyvalue
--------------
Abcd 33%
GBTDF 25%
JKLLIH 50% 

View solution in original post

gabriel_vasseur
Contributor

Have you had a look at wether multikv can do what you want? If it doesn't, please provide more information.

0 Karma

javiergn
Super Champion

What about this? You can ignore the first 4 lines that I used to replicate your use case.

| stats count
| fields - count
| eval event = "Abcd=0.3333, GBTDF=0.25, JKLLIH=0.5"
| eval event = split(event, ",")
| mvexpand event
| rex field=event "(?<key>[^=]+)=(?<value>[\d\.]+)"
| eval keyvalue = key . " " . round(value*100,0) . "%"
| fields - key, value, event
| stats list(keyvalue) as keyvalue

Output:

keyvalue
--------------
Abcd 33%
GBTDF 25%
JKLLIH 50% 

sfatnass
Contributor

thx javiergn it work ^^

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 Splunk MVPs!

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

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...