gpt4 book ai didi

azure - 无法激活 Application Insight(也无法激活实时流指标)

转载 作者:行者123 更新时间:2023-12-03 01:44:07 25 4
gpt4 key购买 nike

我正在 Azure 应用服务上运行 Web 应用。

我进入 --> 设置 --> 应用洞察第一次它说我需要重新启动我的网络应用程序以及我单击的按钮。花了一段时间,但现在我收到消息“您的应用程序当前处于离线状态。访问它以启用直播”。 enter image description here

当我单击“在 APPLICATION INSIGHT 中查看更多内容”时,我会看到有关如何在 VS 中安装 Application Insight 的分步指南(我已遵循该指南)

我的网络应用程序正在运行,我可以访问它,并且在我的应用程序服务的概述页面上显示状态:“正在运行”

最佳答案

这是一个article关于如何在门户中打开直播。如果您想使用直播,可以检查这些方法。

1.从应用程序洞察服务中复制InstrumentationKey。将其添加到项目中的ApplicationInsights.config中:

 <InstrumentationKey>your key</InstrumentationKey>

2.添加一些自定义遥测数据进行测试。

  public ActionResult Index()
{
Trace.TraceInformation("my trace info Home/Index");
var telemetry = new Microsoft.ApplicationInsights.TelemetryClient();
RequestTelemetry requestTelemetry = new RequestTelemetry();
telemetry.TrackTrace("Home/Index Main");
telemetry.TrackPageView("Home/Index");
return View();
}

3.在 Debug模式下运行您的项目。

4.点击应用洞察服务概览中的直播

然后您就可以在直播中看到遥测数据:

enter image description here

关于azure - 无法激活 Application Insight(也无法激活实时流指标),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49317917/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com