Splunk Search

Perform an operation on values in the column of a lookup table that share the same row values

matthewob5
Engager

I have a lookup table that looks like this (:

Column 1Column 2Column 3Column 4
Value 1--15
Value 1--60
Value 2--75
Value 2--N/A
Value 2--5

 

I want to calculate the average for all of the values in Column 4 (that aren't N/A) that have the same value in Column 1. Then I want to output that as a table:

Column 1Column 2
Value 137.5
Value 240
Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The stats command can do that, although I'm not sure how it will handle "N/A".

| stats avg('Column 4') as "Column 2" by 'Column 1'

 

---
If this reply helps you, Karma would be appreciated.
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 ...