0

我在 //Build 2015 上看到了一些演员,它使用 microsoft azure 应用程序洞察力来跟踪站点/应用程序的财富。我想知道是否有办法在 Internet 访问受限的 Intranet 应用程序上这样做。有没有办法在 Windows 服务器上安装见解服务?或者是否存在类似的工具?

谢谢

4

1 回答 1

1

开箱即用您将无法在 Internet 访问受限的服务器上使用 ApplicationInsights,因为 ApplicationInsights 需要将收集的遥测数据发送到 ApplicationInsights 服务以进行分析和聚合。但是,如果要在具有 Internet 连接的服务器上配置中间终结点,可以替换 ApplicationInsights.config 中的终结点地址。在 TelemetryChannel 节点内,将 EndpointAddress 属性的值设置为您的自定义端点:

<TelemetryChannel>
        <EndpointAddress><your custom endpoint></EndpointAddress>
</TelemetryChannel>

然后在您的中间端点将流量路由到http://dc.services.visualstudio.com/v2/track

于 2015-06-14T15:09:52.537 回答