Splunk Search

How to find the average of daily indexed data by host for a given time range and show all hosts on a timechart, not just the top 10?

jodros
Builder

I have a search that utilizes timechart to sum the total amount of data indexed by host with 1 day span. I would like to know how to get the an average of the daily sum for each host.

Also, I am using timechart, but it groups everything that is not the top 10 into others category. Is there anyway to show all results, or utilize stats for this calculation?

Any assistance would be appreciated.

1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Assuming you just want a daily average, you can do this:

index=_internal source=*metrics.log group="per_host_thruput" | eval GB=kb/1048576 | stats sum(GB) as total by series | addinfo | eval days = (info_max_time - info_min_time) / 86400 | fields - info* | eval daily_average = total / days

That's throwing out your timechart entirely. If you somehow want the daily average appended to your timechart you can do this:

index=_internal source=*metrics.log group="per_host_thruput" | eval GB=kb/1048576 | timechart sum(GB) as "total" by series span=1d limit=0 | appendpipe [stats avg(*) as *]

The limit=0 will make your OTHER go away, be wary of huge host counts though. The appendpipe will add a row to the bottom with your averages per span.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

Assuming you just want a daily average, you can do this:

index=_internal source=*metrics.log group="per_host_thruput" | eval GB=kb/1048576 | stats sum(GB) as total by series | addinfo | eval days = (info_max_time - info_min_time) / 86400 | fields - info* | eval daily_average = total / days

That's throwing out your timechart entirely. If you somehow want the daily average appended to your timechart you can do this:

index=_internal source=*metrics.log group="per_host_thruput" | eval GB=kb/1048576 | timechart sum(GB) as "total" by series span=1d limit=0 | appendpipe [stats avg(*) as *]

The limit=0 will make your OTHER go away, be wary of huge host counts though. The appendpipe will add a row to the bottom with your averages per span.

jodros
Builder

Thanks! You the man!

0 Karma

jodros
Builder

The search that I am using is:

index=_internal source=*metrics.log group="per_host_thruput" | eval GB=kb/1048576 | timechart sum(GB) as "total" by series span=1d

This search run across seven days produces seven points of data for each host. What I would like to do is produce 1 point of data that would be the average of the 7 days, or 30 days, or whatever timeframe the search was ran.

Thanks

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...