在日志分析中查询多个资源时是否可以使用变量?这就是我现在所拥有的:
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