我正在创建一个有角度的应用程序,并尝试将appinsights添加到角度应用程序。配置设置如下:
private config: Microsoft.ApplicationInsights.IConfig = {
instrumentationKey: environment.appInsights.instrumentationKey,
disableCorrelationHeaders: false,
enableDebug : true,
verboseLogging : true
}
和app见解在角度服务中初始化如下。
if (!AppInsights.config) {
AppInsights.downloadAndSetup(this.config);
}
但我没有看到具有以下标头的依赖调用 '请求-ID' '请求 - 语境'
有人成功地让这个工作吗?
答案 0 :(得分:0)
也可以尝试设置enableCorsCorrelation: true
https://docs.microsoft.com/en-au/azure/azure-monitor/app/javascript#configuration