Microsoft Application Insights未显示在Azure控制台中,Fiddler显示了来自dc.services.visualstudio.com的200条响应

Microsoft Application Insights未显示在Azure控制台中,Fiddler显示了来自dc.services.visualstudio.com的200条响应,azure,azure-devops,azure-application-insights,azureportal,telemetry,Azure,Azure Devops,Azure Application Insights,Azureportal,Telemetry,我已经为我们的一个应用程序设置了应用程序洞察 private TelemetryClient telemetry = new TelemetryClient(new Microsoft.ApplicationInsights.Extensibility.TelemetryConfiguration("xxx")); protected override void OnActionExecuting(ActionExecutingContext filterC

我已经为我们的一个应用程序设置了应用程序洞察

    private TelemetryClient telemetry = new TelemetryClient(new Microsoft.ApplicationInsights.Extensibility.TelemetryConfiguration("xxx"));

    protected override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        base.OnActionExecuting(filterContext);
        telemetry.TrackPageView(new PageViewTelemetry { Name = filterContext?.HttpContext?.Request?.RawUrl });
        ViewBag.CurrentUser = db.GetCurrentUser();
    }
在每次页面加载时,它都应该触发跟踪事件

我可以通过fiddler看到请求在
dc.services.visualstudio.com
上被激发,我得到了200个响应

但是azure控制台中没有任何内容


可能会发生什么,如何进一步调试?

显示的代码跟踪页面视图。页面视图不会显示在application Insights资源的概览页面中

相反,在“使用”部分的左侧菜单中有一个菜单项“事件”,请尝试该菜单项。在页面底部有一个按钮查看更多细节,它将显示页面视图

或者,在左侧菜单中单击“日志”(在“部分监控”中)并执行如下查询:

pageViews
| order by timestamp desc
最后,您可以使用左侧菜单中的事务搜索,并选择如下页面视图:

pageViews
| order by timestamp desc

您可能也想在Fiddler中解密HTTPS消息。现在,您正在考虑建立TLS隧道,而不是消息本身。