Splunk Search

Missing Stats Data

jkwilling
Engager

When mean & avg are both present on a "stats" search, the first one in order will be missing so:

| makeresults count=100 | eval Value=random() % 100
| Stats count(Value) AS Count avg(Value) AS Avg mean(Value) AS Mean

results in:

CountAvgMean
100 49.49

 

While

| makeresults count=100 | eval Value=random() % 100
| Stats count(Value) AS Count mean(Value) AS Mean avg(Value) AS Avg

results in:

CountMeanAvg
100 43.78

 

So why is one of the values missing?

 

John W.

Labels (1)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

As @richgalloway says, mean and average are the same, so it's a pointless aggregation.

| makeresults count=100 | eval Value=random() % 100, Value2=Value
| Stats count(Value) AS Count avg(Value2) AS Avg mean(Value) AS Mean

Making Value2 as Value, will give you both aggregations, but as you can see they are the same.

 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

mean() and avg() are the same so perhaps stats just takes the last one specified.  If you only use one of those functions then you won't have any "missing" data. 😀

---
If this reply helps you, Karma would be appreciated.
0 Karma

jkwilling
Engager

Now that you pointed it out, I should have know that Mean/Avg are the same....

I was just playing with extracting all of the aggregate functions and just noticed the conditions and thought that I would report it.

 

Thanks,

John  

Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...