Splunk Search

Use | eval to sum float numbers

maurelio79
Communicator

Hi, i have 2 fields and they are float numbers, for example 2,7 and 0,6.
I need to create a field that is the sum of these 2 fields, but if i use

| eval toal=field_1+field_2

The result is a concatenate string.

I tried also convert num but 2 fields become 2 and 06 then the sum is 8.

Could you help me?

Thanks

Tags (4)
0 Karma
1 Solution

MuS
Legend

Hi maurelio79,

looks like the , is the problem, because this will fail

index=_internal | head 1 | eval foo="2,6" | eval bar="3,5" | eval myResult=foo+bar | table myResult

but this will work

index=_internal | head 1 | eval foo="2.6" | eval bar="3.5" | eval myResult=foo+bar | table myResult

any way to replace the , with a dot . maybe by using some regex in SED mode?

Based on the above run everywhere example you can do something like this:

index=_internal | head 1 | eval foo="2,6" | eval bar="3,5" | rex field=foo mode=sed "s/,/./g" | rex field=bar mode=sed "s/,/./g" | eval myResult=foo+bar | table myResult

If this fits your needs you can then set it up to be done automatically, just follow the docs example here.
Or if possible, change the event source to have the numbers logged like this 2.5

hope this helps ...

cheers, MuS

View solution in original post

0 Karma

MuS
Legend

Hi maurelio79,

looks like the , is the problem, because this will fail

index=_internal | head 1 | eval foo="2,6" | eval bar="3,5" | eval myResult=foo+bar | table myResult

but this will work

index=_internal | head 1 | eval foo="2.6" | eval bar="3.5" | eval myResult=foo+bar | table myResult

any way to replace the , with a dot . maybe by using some regex in SED mode?

Based on the above run everywhere example you can do something like this:

index=_internal | head 1 | eval foo="2,6" | eval bar="3,5" | rex field=foo mode=sed "s/,/./g" | rex field=bar mode=sed "s/,/./g" | eval myResult=foo+bar | table myResult

If this fits your needs you can then set it up to be done automatically, just follow the docs example here.
Or if possible, change the event source to have the numbers logged like this 2.5

hope this helps ...

cheers, MuS

0 Karma

MuS
Legend

see my update 😉

0 Karma

maurelio79
Communicator

Good! Thanks! Values are genereted by a bash script, so i can replace "," with "." using sed. It will works. Thanks very much!

0 Karma
Get Updates on the Splunk Community!

Wondering How to Build Resiliency in the Cloud?

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

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...

Introducing the Splunk Community Dashboard Challenge!

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