0

我需要一种在 Azure Monitor 中选择“自午夜以来”的数据集的方法 - 例如相对于当天。

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

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

干杯

4

1 回答 1

3

您可以尝试使用startofday().

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

于 2021-07-05T18:24:58.363 回答