- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在asp.net的服务中,我们可以为app Insight设置cloud_rolename。使用此功能,我们的服务团队可以跟踪应用程序洞察中的错误。我如何从 Angular 设置它。这就是我以 Angular 运行应用程序洞察的方式:
export class MonitoringService {
private appInsights: ApplicationInsights;
constructor(private router: Router) {
this.appInsights = new ApplicationInsights({
config: {
instrumentationKey: environment.appInsights.instrumentationKey,
},
});
this.appInsights.loadAppInsights();
this.loadCustomTelemetryProperties();
this.createRouterSubscription();
}
最佳答案
您可以使用Telemetry Initializers ,示例代码:
var telemetryInitializer = (envelope) => {
envelope.tags["ai.cloud.role"] = "your role name";
envelope.tags["ai.cloud.roleInstance"] = "your role instance";
}
appInsights.addTelemetryInitializer(telemetryInitializer);
关于angular - 在 Angular 的应用洞察中设置 cloud_RoleName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65297908/
我有一个应用程序 (dotnet core 2.0),它通过 ILogger 机制将遥测数据发送到我们的 AppInsights 实例 //Startup.cs::Configure() 工厂.Add
在asp.net的服务中,我们可以为app Insight设置cloud_rolename。使用此功能,我们的服务团队可以跟踪应用程序洞察中的错误。我如何从 Angular 设置它。这就是我以 Ang
我有一个应用程序 (dotnet core 2.0),它通过 ILogger 机制将遥测数据发送到我们的 AppInsights 实例 //Startup.cs::Configure() 工厂.Add
在asp.net的服务中,我们可以为app Insight设置cloud_rolename。使用此功能,我们的服务团队可以跟踪应用程序洞察中的错误。我如何从 Angular 设置它。这就是我以 Ang
我一直在关注这篇文章,将 cloud_RoleName 添加到我的 Web 应用程序 ( https://github.com/MicrosoftDocs/azure-docs/blob/master
我尝试设置 cloud_RoleName 属性来消除使用 Azure Application Insights 跟踪的系统中不同组件的歧义。 如何设置使用 ASP.NET Core 运行的服务的属性?
我是一名优秀的程序员,十分优秀!