Splunk Search

total average number rather than average by field

andrwbn
Engager

I have the query set up to find the average duration per country. How would I get the query to find the total average duration of all the countries together?

0 Karma
1 Solution

hunters_splunk
Splunk Employee
Splunk Employee

Hi andrwbn,

Either one of the following can help you get the total average duration of all countries:

  • Remove "by country" in our query
    Change:

    ... | stats avg(duration) by country

    To:

    ... | stats avg(duration)

  • Use the addcoltotals command to view both by-country averages and total averages at the same time

    ... | stats avg(duration) by country | addcoltotals
    Hope this helps. Thanks!
    Hunter

View solution in original post

0 Karma

hunters_splunk
Splunk Employee
Splunk Employee

Hi andrwbn,

Either one of the following can help you get the total average duration of all countries:

  • Remove "by country" in our query
    Change:

    ... | stats avg(duration) by country

    To:

    ... | stats avg(duration)

  • Use the addcoltotals command to view both by-country averages and total averages at the same time

    ... | stats avg(duration) by country | addcoltotals
    Hope this helps. Thanks!
    Hunter

0 Karma

rjthibod
Champion

The community can best help you if you share the query or at least part of it. Please copy and paste what you can from the actual query.

0 Karma

skoelpin
SplunkTrust
SplunkTrust

Without seeing your query, this is hard to say. But I'm betting you're using the BY clause to sort the average by country. Remove the BY COUNTRY to get the total average

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...