Splunk Search

how to ignore fields runtime which arent available from being considered in the calculation?

sangs8788
Communicator

I am doing a calculation to add up all the time spent in each layer. But there are cases where few fields not existing/relevant. In that case how do i make it to consider only the fields present during runtime.

eval processing_time = Layera + layerb + layerc + layerd

Say a particular event doesnt have layerc - the processiing time isnt getting calculated. So how do i make it to ignore the fields which arent present ?

Tags (1)
0 Karma
1 Solution

vnravikumar
Champion

Hi @sangs8788

Try

your query...| fillnull value=0 Layera,layerb,layerc,layerd | eval processing_time = Layera + layerb + layerc + layerd

View solution in original post

0 Karma

vnravikumar
Champion

Hi @sangs8788

Try

your query...| fillnull value=0 Layera,layerb,layerc,layerd | eval processing_time = Layera + layerb + layerc + layerd
0 Karma

renjith_nair
Legend

@sangs8788 ,

Try

|eval processing_time=if(isnull(Layera),0,Layera)+if(isnull(layerb),0,layerb)+if(isnull(layerc),0,layerc)+if(isnull(layerd),0,layerd)

OR

|eval processing_time=0|foreach Layer* [eval processing_time=processing_time+<<FIELD>>]
---
What goes around comes around. If it helps, hit it with 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 ...