Splunk Search

Incremental average over the time

CarmineCalo
Path Finder

Splunkers!
As usual I'm learn from you.

I'd need to plot an "incremental average" over time, i mean to calculate the average value of a field considering a static starting point , but the ending period corresponding to the time value.

Example:
Starting point Jan-2016, value to be averaged is the "Application Availability" (AppAv)
On Jan-16 i need the Average of AppAv only for the month
On Feb-16 average calculation will have to consider values both for Jan and Feb
ON Mar-16 average calculation will have to consider values from Jan to March
... and so on and so forth

Any hints?

Tks!
Carmine

0 Karma
1 Solution

mayurr98
Super Champion

try something like this !

<base_Search> 
| timechart span=1mon avg(AppAv) as app_av_avg 
| streamstats avg(app_av_avg) as cumulative_Avg 
| eval month_year=strftime(_time, "%b %Y")

let me know if this helps !

View solution in original post

mayurr98
Super Champion

try something like this !

<base_Search> 
| timechart span=1mon avg(AppAv) as app_av_avg 
| streamstats avg(app_av_avg) as cumulative_Avg 
| eval month_year=strftime(_time, "%b %Y")

let me know if this helps !

micahkemp
Champion

This will give an average of averages, which is probably not really what you want.

0 Karma

CarmineCalo
Path Finder

This is fine, I just need to tune in this way

| timechart span=1mon **sum**(AppAv) as app_av_avg
| streamstats avg(app_av_avg) as cumulative_Avg
| eval month_year=strftime(_time, "%b %Y")

as far as need to evaluate AppAv on weekly basis.

Tks!
Carmine

0 Karma

micahkemp
Champion

I believe you’re looking for streamstats.

Perhaps something like:

| timechart span=1mon count(AppAv) AS count, sum(AppAv) as sum_month 
| streamstats sum(count) as cumulative_count, sum(sum_month) as cumulative_sum 
| eval cumulative_average=cumulative_sum/cumulative_count
0 Karma
Get Updates on the Splunk Community!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...