Splunk Search

How to create a timechart search for the average of a field between two date ranges?

chrispappo
Explorer

Hi,

I have 4 dates (format mm/dd/yyyy)

start 1: 01/01/2016 end 1: 01/07/2016
Start 2: 02/01/2016 end 2: 02/07/2016

In these two ranges, I'm looking for the logs with the field delta (which is a numeric field). At the end, I would like a result like this:

date           avg(detlta)
01/07/2016     0.4
02/07/2016     0.1

I'm thinking about doing a search like this:

index=rs action  latest="01/07/2016:00:00:00" earliest="01/01/2016:00:00:00"  | append [search index=rs action  latest="02/07/2016:00:00:00" earliest="02/01/2016:00:00:00"] | timechart  avg(delta) 

but this request is very long and does not really result in what I'm looking for. Does anyone know a better solution?

thanks

Tags (4)
0 Karma

somesoni2
Revered Legend

Try this

 index=rs action  latest="01/07/2016:00:00:00" earliest="01/01/2016:00:00:00"  | stats avg(delta) | eval _time=strptime("01/01/2016","%m/%d/%Y") | append [search index=rs action  latest="02/07/2016:00:00:00" earliest="02/01/2016:00:00:00" | stats avg(delta) | eval _time=strptime("02/01/2016","%m/%d/%Y") ] 
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, ...