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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...