May I know what is the specific date and format being used when using the date operators in session relevance?
Below is the session relevance I am working on:
((id of it, name of it) of computer of it, (id of it, name of it, name of issuer of it, time issued of it) of action of it, start time of it, status of it) of results whose ((start time of it > (now-7*day)) AND (status of it as string = "Fixed" OR status of it as string = "Pending Restart" OR status of it as string = "Completed")) of bes actions whose ((name of issuer of it contains "USER01" OR name of issuer of it contains "USER02") AND name of it as lowercase contains "Google Chrome" as lowercase)
Would like to substitute “now” with a specific date if in case I missed running the session relevance on a specific day that needs the weekly results.
Thanks, that's great info. I do want to add some of the edges of which I'm aware -
// String, of the kind we output with 'now'
Q: time "Thu, 29 Jan 2026 11:59:03 +0000"
A: Thu, 29 Jan 2026 05:59:03 -0600
I: singular time
// We can omit the "day of week" and it still works
Q: time "29 Jan 2026 11:59:03 +0000"
A: Thu, 29 Jan 2026 05:59:03 -0600
I: singular time
// The three-letter month is not case-sensitive
Q: time "31 JAN 2026 11:59:03 +0000"
A: Sat, 31 Jan 2026 05:59:03 -0600
I: singular time
// An invalid date will throw error
Q: time "32 Jan 2026 11:59:03 +0000"
E: Singular expression refers to nonexistent object.
Q: time "28 Feb 2026 11:59:03 +0000"
A: Sat, 28 Feb 2026 05:59:03 -0600
I: singular time
Q: time "29 Feb 2026 11:59:03 +0000"
E: Singular expression refers to nonexistent object.
// We do track Leap-Years
Q: time "29 Feb 2028 11:59:03 +0000"
A: Tue, 29 Feb 2028 05:59:03 -0600
I: singular time
// We cannot use a numeral for month_of_year
Q: time "31 01 2026 11:59:03 +0000"
E: Singular expression refers to nonexistent object.
// We cannot use a the full month name for month_of_year
Q: time "31 January 2026 11:59:03 +0000"
E: Singular expression refers to nonexistent object.