Splunk Search

Is there a shorthand way to round all values in a search without using "eval value=round()" for each individual value?

HattrickNZ
Motivator

if I have the following search that gives:

   _time        val1           val2       val3            val4
1  2016-02-22   14298.520982   2083.388889   10311.996070668   1658.393286670

Is there a shorthand way to round all the numbers?

Or do I just have to do a round on each val

| eval val1=round(val1,2)....

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

What you need is a foreach command
http://docs.splunk.com/Documentation/Splunk/6.1/SearchReference/Foreach

Something like this

your current search giving above output |  foreach * [eval <<FIELD>>=round('<<FIELD>>',2)]

View solution in original post

somesoni2
Revered Legend

What you need is a foreach command
http://docs.splunk.com/Documentation/Splunk/6.1/SearchReference/Foreach

Something like this

your current search giving above output |  foreach * [eval <<FIELD>>=round('<<FIELD>>',2)]

HattrickNZ
Motivator

tks, that exactly what I was looking for

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 ...