我需要导出包含两列的应用程序洞察列表:名称和仪器键。
使用下面的命令,我得到了名称,但是InstrumentationKey列始终为空。
az resource list --resource-type "Microsoft.Insights/components" --query "[].{Name:name, InstrumentationKey:properties.InstrumentationKey}"
无需过滤列,只需运行
az resource list --resource-type "Microsoft.Insights/components"
我找不到检测键。
获取订阅中所有资源的检测密钥和相对名称的命令是什么?
1条答案
按热度按时间qpgpyjmq1#
从我的终端复制后,我可以使用
az monitor app-insights component show
得到预期的结果。下面是为我工作的完整查询。