azure 导出应用洞察名称和InstrumentationKey的列表

lo8azlld  于 2023-01-05  发布在  其他
关注(0)|答案(1)|浏览(140)

我需要导出包含两列的应用程序洞察列表:名称和仪器键。
使用下面的命令,我得到了名称,但是InstrumentationKey列始终为空。

az resource list --resource-type "Microsoft.Insights/components" --query "[].{Name:name, InstrumentationKey:properties.InstrumentationKey}"

无需过滤列,只需运行

az resource list --resource-type "Microsoft.Insights/components"

我找不到检测键。
获取订阅中所有资源的检测密钥和相对名称的命令是什么?

qpgpyjmq

qpgpyjmq1#

从我的终端复制后,我可以使用az monitor app-insights component show得到预期的结果。下面是为我工作的完整查询。

$a = az monitor app-insights component show | ConvertFrom-Json
$a | Select-Object name,instrumentationKey
    • 结果:**

相关问题