gpt4 book ai didi

azure - 向无状态 Service Fabric 应用程序添加应用程序洞察

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

我正在尝试关注this documentation为了开始在我部署到服务结构的 .net core 应用程序中使用应用程序洞察。

我的代码非常简单

public FailedAuthorise(StatelessServiceContext context, IConfigManager config)
: base(context)
{
_worker = new Worker<PaymentFailedAuthorise>(config, FailedAuthoriseHandlerFactory.Create, "FailedAuthorise", "FailedAuthoriseError");
}

protected override async Task RunAsync(CancellationToken cancellationToken)
{
await _worker.RunAsync(cancellationToken);
}

作为工作人员只是一个从某些队列读取并处理消息的通用类

但如果我要遵循该文档,我需要安装一些 nuget 软件包(这实际上给我查找和/或安装带来了问题,例如无法使用 Microsoft.ApplicationInsights.ServiceFabric 访问 ; 或者需要更改管道上配置文件修改的检测 key )并开始使用我的解决方案中并不真正需要的“托管”类。

这不是一种简单的方法,只需将应用程序洞察力添加到云服务中过去的辅助角色中,而不需要托管位吗?

谢谢

最佳答案

您只需添加 this nuget package并创建您自己的自定义遥测,如下所示:

public class MyService
{
private readonly TelemetryClient telemetryClient;

public MyService()
{
telemetryClient = new TelemetryClient(configuration);
telemetryClient.Context.InstrumentationKey = "[Your Key Here]";
}

public FailedAuthorise(StatelessServiceContext context, IConfigManager config)
: base(context)
{
_worker = new Worker<PaymentFailedAuthorise>(config, FailedAuthoriseHandlerFactory.Create, "FailedAuthorise", "FailedAuthoriseError");
}

protected override async Task RunAsync(CancellationToken cancellationToken)
{
telemetryClient.TrackEvent("Worker started");
await _worker.RunAsync(cancellationToken);
}
}

您可以跟踪多项内容,例如 exceptions, traces, events, metrics and requests但如果您不使用 Asp.Net Core,则必须手动发送这些事件,而不是让某些中间件将遥测数据发送到 App Insigths。

如果您的服务调用其他服务,您可以添加 this package自动跟踪与其他服务的通信。

关于azure - 向无状态 Service Fabric 应用程序添加应用程序洞察,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53718275/

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