gpt4 book ai didi

azure - 是否可以减少 AzureDiagnostics 日志(Log Analytics)?

转载 作者:行者123 更新时间:2023-12-03 03:39:45 29 4
gpt4 key购买 nike

寻找一种方法来减少 Azure Log Analytics 中的 AzureDiagnostics 表。

是否可以减少日志收集时间?例如,对于所有或自定义资源,每 1 小时(而不是 5 分钟)获取 CPU 或磁盘统计信息?

或者,也许有一种方法可以清理小于默认期限 31 天的日志?

最佳答案

You can set the workspace default retention policy in the Azure portal to 30, 31, 60, 90, 120, 180, 270, 365, 550, and 730 days. To set a different policy, use the Resource Manager configuration method described below. If you're on the free tier, you need to upgrade to the paid tier to change the data retention period.

  • 如果您要查找 CPU 统计数据的平均值,您可以使用以下查询,该查询将为您提供 5 分钟的时间段。

 Perf
| where ObjectName == "Processor Information" and CounterName == "% Processor Time" and InstanceName == "_Total"
| summarize AggregatedValue = avg(CounterValue) by Computer, bin(TimeGenerated, 5m)

  • 您还可以筹集feature request在这里,这甚至可以帮助其他有同样问题的人。

关于azure - 是否可以减少 AzureDiagnostics 日志(Log Analytics)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71780025/

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