Splunk Search

Date displaying as a string

cc3658
Explorer

I have a string field (publication_date) that is displaying a date in the following format YYYY/mm/dd. Ultimately I would like to display in a dashboard any logs displaying a publication_date within the last 7 days.

I suspect I am having trouble because it is a sting field and not numeric but have been unsuccessful in finding the correct syntax.

0 Karma
1 Solution

DalJeanis
Legend

In general, you want the strptime() function to change the display format into epoch time format, and strftime() to go the other way.

However, in this case, because the ISO format you showed will sort dates into the same order, you can just change current date - 7 days into the same format and compare directly.

  | eval testDate = strftime(now()-7*24*3600,"%Y/%m/%d")
  | where publication_date >= testDate

Change >= to > if you want to exclude the date one week ago (ie exclude last Friday if today is Friday).

View solution in original post

0 Karma

DalJeanis
Legend

In general, you want the strptime() function to change the display format into epoch time format, and strftime() to go the other way.

However, in this case, because the ISO format you showed will sort dates into the same order, you can just change current date - 7 days into the same format and compare directly.

  | eval testDate = strftime(now()-7*24*3600,"%Y/%m/%d")
  | where publication_date >= testDate

Change >= to > if you want to exclude the date one week ago (ie exclude last Friday if today is Friday).

0 Karma

cc3658
Explorer

This worked for me. This is the part that I was missing "(now()-7*24*3600" Thanks!

DalJeanis
Legend

@cc3658 - in real code, I'd multiply that out, but for the forum I wanted it to be obvious what the number meant.

0 Karma
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

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