Splunk Search

How to edit my eval statement to convert numerical values from a field into MB?

asarran
Path Finder

I have a field [B] that consists of some numbers and strings.

10 gb
20 gb 
30 gb 

I would like to implement a eval statement that would convert the numerical values into MB.

B=*"GB"| eval GB=*/1024 | table GB 

I'm not sure what is incorrect about this statement?

Tags (2)
0 Karma

lweber
Path Finder

if you have a 'string' field, first get the numeric value (i am using the rex command here)
then multiply the extracted value (field: numericB) with 1024 to get the MB...

| rex field=B "\D?(?<numericB>\d*)\D?" 
| eval MB=numericB*1024
| table MB
0 Karma
Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...