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!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...