Splunk Search

How can we exclude weekends from the count of the number of days for the age of a ticket?

splunker9999
Path Finder

Hi ,

We have a field called AGING which tells how many days a ticket exists.

In order to get the accurate age, we want to subtract weekends from the AGING field.

For example: If aging has value of 30 days, we need to exclude all Saturdays and Sundays from these 30 days and need to output the results.

Can you please help?

Thanks.

0 Karma

sundareshr
Legend

Try this

... | eval end=_time | eval start=end-(aging*86400)| eval range=mvrange(start, end, 86400) | convert ctime(range) timeformat="%+" | eval BusinessDays=mvcount(mvfilter(NOT match(range,"(Sun|Sat).*"))) 

woodcock
Esteemed Legend

Brilliant; I learned mvrange today!

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