Splunk Search

How to add work week date in Splunk query (or) how to convert date to work week?

samadhuazad
Engager

how to add work week date in splunk query (or) how to convert date to work week ?

Labels (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @samadhuazad,

you can use the solution from @yuanliu to analyze only days from Monday to Friday, that's perfect.

If you want also to consider holydays and time out of working time, you have to use a solution like the one I described in this answer: https://community.splunk.com/t5/Splunk-Search/How-to-write-query-for-including-non-business-hours-an...

Ciao.

Giuseppe

yuanliu
SplunkTrust
SplunkTrust

Unclear what the real requirements are.  By work week, I suppose you mean Monday to Friday (common numeric representation 1 to 5).  Is there an intention/designation for dates that fall outside work week?  Or is the intention to add a marker "workweek" to each date that falls in a work week?

If you just want the day of week, strftime is sufficient

| eval weekday = strftime(_time, "%w")

If you want to mark dates within work weeks, you can create a new field for this:

| eval weekday = strftime(_time, "%w")
| eval isworkweek = if(0 < weekday and weekday < 6, weekday, null())

There are a million other ways the question can be interpreted.

Get Updates on the Splunk Community!

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...

Auto-Injector for Everything Else: Making OpenTelemetry Truly Universal

You might have seen Splunk’s recent announcement about donating the OpenTelemetry Injector to the ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...