Splunk Search

How to include a duration that started out of time range of the search into stats/timechart command?

akocak
Contributor

I have a dataset like below:
Ticket#| StartDate | EndDate

In my search, I am more into EndDate of the tickets as

|eval _time=EndDate | eval Duration = EndDate - StartDate

Later on if I try to search something like

|timechart avg(Duration) by TicketNum

with YTD time range, it excludes the data that started in 2016 and ended in 2017. It only shows correct numbers, if I set earliest to min time of the ticket from last year. This time however, I don't get my time chart for YTD.

What should be my approach to get desired result-set? Do you guys have any similar experience. Thanks up front for your time.

0 Karma
1 Solution

somesoni2
Revered Legend

Since the time range picker values applies on the _time value available in base search (before first pipe, where I believe _time is based on StartDate value), it's missing events which have StartDate in 2016. For that you should set your time range to include 2016 and add a where clause in your search to filter YTD data based on updated _time/EndDate, like this

your base search with timerange earliest=-1y@y latest=now 
|eval _time=EndDate | where _time>=relative_time(now(),"@y")
| eval Duration = EndDate - StartDate
|timechart avg(Duration) by TicketNum

View solution in original post

somesoni2
Revered Legend

Since the time range picker values applies on the _time value available in base search (before first pipe, where I believe _time is based on StartDate value), it's missing events which have StartDate in 2016. For that you should set your time range to include 2016 and add a where clause in your search to filter YTD data based on updated _time/EndDate, like this

your base search with timerange earliest=-1y@y latest=now 
|eval _time=EndDate | where _time>=relative_time(now(),"@y")
| eval Duration = EndDate - StartDate
|timechart avg(Duration) by TicketNum

akocak
Contributor

you hit the bull eye again somesoni , please check my other questions too 🙂

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...