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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...