Splunk Search

How to get upcoming friday date

vb1612
New Member

I have a date field in my feed as "2/15/2019" , want to compare this with upcoming friday date value in search.
please help how to do this

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

@vb1612,

To get next friday, you can use

|eval next_friday=relative_time(now(),"+1w@w5")

To get the difference ,

"your base search"
|eval give_date_in_epoch=strptime("2/15/2019","%m/%d/%Y")
|eval next_friday=relative_time(now(),"+1w@w5")
|eval diff=next_friday-give_date_in_epoch

Feel free to change the variable names.

---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

@vb1612,

To get next friday, you can use

|eval next_friday=relative_time(now(),"+1w@w5")

To get the difference ,

"your base search"
|eval give_date_in_epoch=strptime("2/15/2019","%m/%d/%Y")
|eval next_friday=relative_time(now(),"+1w@w5")
|eval diff=next_friday-give_date_in_epoch

Feel free to change the variable names.

---
What goes around comes around. If it helps, hit it with Karma 🙂
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...