LogStream 在同一流中显示两个完全不同的 Azure Web 应用程序
LogStream showing two totally different Azure web apps in same stream
我公司的 Azure 组织中有两个基于容器的 Web 应用程序。虽然他们在同一个订阅下,但他们在不同的资源组中拥有不同的资源;他们从不同的 Azure 容器注册表开始;每个应用程序中都有一个诊断设置,将 HTTPAPI 日志发送到 LogAnalytics 工作区,每个应用程序都不同。
然而,当我在 resource/subscriptions/
subscriptionId/resourceGroups/
[= 查看 one 应用程序的日志流页面时20=]resourceGroupName/providers/Microsoft.Web/sites/
websiteName/logStream
我看到了两个网络应用程序的日志。
这正常吗?
作为 Azure 门户中日志流 UI 的替代方案,可以尝试使用 Azure CLI az log tail
来实现:
az webapp log tail --name <webSiteName> --resource-group <resourceGroupName>
顺便说一句,这种通过日志流 (and/or Application Insights) 的渗漏在过去已被观察到几次,这肯定是 Azure App Service 支持人员可能想知道的事情。
我公司的 Azure 组织中有两个基于容器的 Web 应用程序。虽然他们在同一个订阅下,但他们在不同的资源组中拥有不同的资源;他们从不同的 Azure 容器注册表开始;每个应用程序中都有一个诊断设置,将 HTTPAPI 日志发送到 LogAnalytics 工作区,每个应用程序都不同。
然而,当我在 resource/subscriptions/
subscriptionId/resourceGroups/
[= 查看 one 应用程序的日志流页面时20=]resourceGroupName/providers/Microsoft.Web/sites/
websiteName/logStream
我看到了两个网络应用程序的日志。
这正常吗?
作为 Azure 门户中日志流 UI 的替代方案,可以尝试使用 Azure CLI az log tail
来实现:
az webapp log tail --name <webSiteName> --resource-group <resourceGroupName>
顺便说一句,这种通过日志流 (and/or Application Insights) 的渗漏在过去已被观察到几次,这肯定是 Azure App Service 支持人员可能想知道的事情。