KQL 查询 - where 子句中今天的相对 select 数据

KQL query - Relatively select data for today in where clause

我需要一种方法来 select Azure Monitor 中“从午夜开始”的数据集 - 例如相对于当天。

使用 ago(1d) 显然不能解决问题:)

StorageBlobLogs
    | where TimeGenerated > ago(1d) and StatusText contains "success"

干杯

您可以尝试使用 startofday()

例如:... | where TimeGenerated > startofday(now())