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!

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 ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...