gpt4 book ai didi

azure - 查询以显示 15 天前及更长时间内丢失的关键更新和安全更新

转载 作者:行者123 更新时间:2023-12-02 23:54:34 25 4
gpt4 key购买 nike

我正在尝试创建一个查询,该查询将显示 VM 上缺少的关键更新和安全更新,但仅限 15 天前或更长时间,但不是 15 天内。所以我创建了这个查询...

Update
| where Classification in ("Security Updates", "Critical Updates")
| where UpdateState == 'Needed' and Optional == false and Approved == true
| where TimeGenerated > ago(15d)
| summarize count() by Classification, Computer, _ResourceId

但是当我运行此查询时,它会提示我缺少 15 天内的更新,但我想要实现的目标是缺少 15 天前的更新。

任何贡献都将受到赞赏。谢谢

最佳答案

每天会多次报告更新事件。您需要过滤最后一个报告并检查发布日期。

Update
| where TimeGenerated > ago(1d)
| where PublishedDate < ago(15d)
| where Classification in ("Security Updates", "Critical Updates")
| where Optional == false
| summarize arg_max(TimeGenerated, Classification, UpdateState, Approved) by KBID, Computer, _ResourceId
| where UpdateState == 'Needed' and Approved == true
| summarize dcount(KBID) by Classification, Computer, _ResourceId

关于azure - 查询以显示 15 天前及更长时间内丢失的关键更新和安全更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74091745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com