0

在日志分析中查询多个资源时是否可以使用变量?这就是我现在所拥有的:

let all = app('app-insights-1').dependencies | union app('app-insights-2').dependencies; all | where type == 'SQL' and success == false

是否可以对上述参数进行参数化?例如:

let foo = 'app-insights-1'
let all = app(foo).dependencies | union app('app-insights-2').dependencies; all | where type == 'SQL' and success == false
4

1 回答 1

0

我们已经在我们的环境中进行了测试并了解我们无法使用变量初始化标识符并将其传递给 app(identifier)。 在此处输入图像描述

  • 根据文档,以下参数只能传递给 app(identifier) 表达式。

在此处输入图像描述

于 2021-08-19T07:04:37.580 回答