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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...