我在 Application Insights 和 Azure Active Directory 中都注册了一个应用程序。所以,我可以向应用程序发送请求
https://management.azure.com/subscriptions/<subId>/resourceGroups/<resGroupId>/providers/Microsoft.Insights/components/myApp/providers/microsoft.insights/metrics?api-version=2018-01-01&metricnames=traces/count&interval=PT1H
检索一些Application Insights 指标。但我还需要知道部署我的应用程序的机器的标识符(IP 或主机名)。Application Insights Analytics 查询提供此类功能(架构中有cloud_RoleInstance列对应于应用程序机器的主机名)。
但我必须使用经典的 Azure REST API(带有 access_token 且不带 Application Insights 访问密钥)。我可以这样做吗?或者,如果我不能,请您提供一些证明链接,证明 Microsoft 禁止此类请求?
先感谢您。