我正在尝试在 Azure 资源图中随时间推移可视化特定资源的总数。
例如,2018 年应用洞察总数为 10 个,2019 年总数为 20 个,依此类推。
这是查询,但它有问题: 1- 它不聚合资源的总数 2- 它不接受渲染时间表
resources
| where type == "microsoft.insights/components"
| extend CreationDate = todatetime(properties.CreationDate)
| summarize count() by bin(CreationDate, 365d)