31 May 2023 03:00 PM - edited 31 May 2023 03:02 PM
Hi Team,
Solved! Go to Solution.
01 Jun 2023
07:39 AM
- last edited on
01 Jun 2023
03:55 PM
by
sinisa_zubic
Hi Sinisa, the Notebooks app has a snippet for this use case:
Here's the query anyways:
fetch bizevents, from:now()-7d, to:now()
| fieldsAdd hour=toLong(formatTimestamp(timestamp,format:"H")), day_of_week = formatTimestamp(timestamp,format:"EE")
| filterOut day_of_week == "Sat" or day_of_week == "Sun" // Remove weekend days
| filterOut hour <= 5 or hour >= 15 // Remove everything that is not between 5am and 3pm
08 Jan 2026 06:04 PM
I would suggest to use getHour() and getDayOfWeek() functions instead of formatTimestamp() and conversion.
06 Jan 2026 04:41 PM
How would you do this using the timeseries command (using metrics)?
08 Jan 2026 06:15 PM
For timeseries you can also use getHour() and getDayOfWeek() functions, but you need first timestamps of particular buckets using start() funtion, so you can filter out irrelevant values:
timeseries {d=avg(dt.host.cpu.usage), timestamp=start()}, interval:1h
| fieldsAdd d = if(getHour(timestamp[])>=7 and getHour(timestamp[])<=16 and not in(getDayOfWeek(timestamp[]), {6,7}) , d[])
| fieldsRemove timestamp
Featured Posts