编写代码来使用 Application Insights 跟踪请求
Application Insights 需要跟踪对应用程序的请求,以便在 Azure 门户的“性能”页面上为应用程序提供配置文件。 对于基于已检测的框架(如 ASP.NET 和 ASP.NET Core)生成的应用程序,Application Insights 可以自动跟踪请求。
对于其他应用程序(如 Azure 云服务辅助角色和 Azure Service Fabric 无状态 API),需要使用告诉 Application Insights 请求开始和结束位置的代码来跟踪请求。 然后,将请求遥测发送到 Application Insights,你可以在“性能”页上查看该遥测。 为这些请求收集配置文件。
手动跟踪请求:
在应用程序生命周期的早期添加以下代码:
using Microsoft.ApplicationInsights.Extensibility; ... // Replace with your own Application Insights instrumentation key. TelemetryConfiguration.Active.InstrumentationKey = "00000000-0000-0000-0000-000000000000";
有关此全局检测密钥配置的详细信息,请参阅 Use Service Fabric with Application Insights(结合使用 Service Fabric 和 Application Insights)。
对于想要检测的任何代码片段,请在其两侧添加
StartOperation<RequestTelemetry>
using 语句,如以下示例所示:using Microsoft.ApplicationInsights; using Microsoft.ApplicationInsights.DataContracts; ... var client = new TelemetryClient(); ... using (var operation = client.StartOperation<RequestTelemetry>("Insert_Your_Custom_Event_Unique_Name")) { // ... Code I want to profile. }
不支持在其他
StartOperation<RequestTelemetry>
作用域中调用StartOperation<RequestTelemetry>
。 可以改为在嵌套作用域中使用StartOperation<DependencyTelemetry>
。 例如:using (var getDetailsOperation = client.StartOperation<RequestTelemetry>("GetProductDetails")) { try { ProductDetail details = new ProductDetail() { Id = productId }; getDetailsOperation.Telemetry.Properties["ProductId"] = productId.ToString(); // By using DependencyTelemetry, 'GetProductPrice' is correctly linked as part of the 'GetProductDetails' request. using (var getPriceOperation = client.StartOperation<DependencyTelemetry>("GetProductPrice")) { double price = await _priceDataBase.GetAsync(productId); if (IsTooCheap(price)) { throw new PriceTooLowException(productId); } details.Price = price; } // Similarly, note how 'GetProductReviews' doesn't establish another RequestTelemetry. using (var getReviewsOperation = client.StartOperation<DependencyTelemetry>("GetProductReviews")) { details.Reviews = await _reviewDataBase.GetAsync(productId); } getDetailsOperation.Telemetry.Success = true; return details; } catch(Exception ex) { getDetailsOperation.Telemetry.Success = false; // This exception gets linked to the 'GetProductDetails' request telemetry. client.TrackException(ex); throw; } }
后续步骤
对 Application Insights Profiler 进行故障排除。