为了账号安全,请及时绑定邮箱和手机立即绑定

EventFlow自定义输出中的依赖注入

EventFlow自定义输出中的依赖注入

C#
一只斗牛犬 2021-04-07 13:15:05
我正在使用EventFlow跟踪ETW事件。为此,我创建了一个充当侦听器的ASP Net Core服务。我已经在配置文件中配置了自己的自定义输出。这些是我的Output和OutputFactory类:class CustomOutput : IOutput{    public Task SendEventsAsync(IReadOnlyCollection<EventData> events, long transmissionSequenceNumber, CancellationToken cancellationToken)    {        foreach(var e in events)        {            //...;        }        return Task.CompletedTask;    }}class CustomOutputFactory : IPipelineItemFactory<CustomOutput>{    public CustomOutput CreateItem(IConfiguration configuration, IHealthReporter healthReporter)    {        return new CustomOutput();    }}此CustomOutput在启动时(创建EventFlow管道时)仅实例化一次,并且用于所有事件。主要方法是这样的:private static void Main(){    try    {        using (var diagnosticsPipeline = ServiceFabricDiagnosticPipelineFactory.CreatePipeline("MyApplication-MyService-DiagnosticsPipeline"))        {            ServiceRuntime.RegisterServiceAsync("Stateless1Type",            context => new Stateless1(context)).GetAwaiter().GetResult();            ServiceEventSource.Current.ServiceTypeRegistered(Process.GetCurrentProcess().Id, typeof(Stateless1).Name);            Thread.Sleep(Timeout.Infinite);        }    }    catch (Exception e)    {        ServiceEventSource.Current.ServiceHostInitializationFailed(e.ToString());        throw;    }}输出和工厂输出类型在配置文件eventFlowConfig.json中引用:"extensions": [{  "category": "outputFactory",  "type": "CustomOutput",  "qualifiedTypeName": "MyProyect.Service.MyApp.SqlOutputFactory, MyProyect.Service.MyApp"}]因此,实例是在Program类的main方法中创建的,即在调用Startup配置方法之前。如果容器在实例化时仍然不存在,如何从我的Output类访问我的依赖项容器服务?目前,我已经创建了IServiceCollection类型的静态属性,并通过“启动配置”方法(使用setter注入)对其进行了设置。我不喜欢这种解决方案,因为我不应该使用对服务的静态访问,但是我不知道其他解决方案。这是有效的做法吗?
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 118 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信