I need a way to select dataset "since midnight" in Azure Monitor - e.g relative to current day.
Using ago(1d) is obviously not doing the trick :)
StorageBlobLogs
| where TimeGenerated > ago(1d) and StatusText contains "success"
Cheers
You could try using startofday().
For example: ... | where TimeGenerated > startofday(now())
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With