MultiTenant自定义ILogger - 不能从单例中使用作用域服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MultiTenant自定义ILogger - 不能从单例中使用作用域服务相关的知识,希望对你有一定的参考价值。

我正在尝试为每个由asp.net核心完成的日志添加租户名称。我使用Sasskit为多租户。

我得到了一些范围问题。我想要一些关于如何让它工作的反馈:

这是我的自定义记录器:

public class MultiTenantLogger : IMultiTenantProvider
{
    private AppTenant _tenant;

    public MultiTenantLogger(AppTenant tenant)
    {
        _tenant = tenant;
    }

    public string GetTenantName<T>()
    {
        var typeDisplayName = GetTypeDisplayName(typeof(T));

        if (_tenant == null)
        {
            return typeDisplayName;
        }

        return $"Tenant: {_tenant.Name}";
    }

}

.

public class MultiTenantLogger<T> : ILogger<T>
{
    private readonly ILogger _logger;

    public MultiTenantLogger(ILoggerFactory factory, IMultiTenantProvider multiTenantProvider)
    {
        if (factory == null)
        {
            throw new ArgumentNullException(nameof(factory));
        }
        if (multiTenantProvider == null)
        {
            throw new ArgumentNullException(nameof(multiTenantProvider));
        }

        var category = multiTenantProvider.GetTenantName<T>();
        _logger = factory.CreateLogger(category);
    }

    IDisposable ILogger.BeginScope<TState>(TState state) => _logger.BeginScope(state);

    bool ILogger.IsEnabled(LogLevel logLevel) => _logger.IsEnabled(logLevel);

    void ILogger.Log<TState>(LogLevel logLevel,
                             EventId eventId,
                             TState state,
                             Exception exception,
                             Func<TState, Exception, string> formatter)
        => _logger.Log(logLevel, eventId, state, exception, formatter);
 }

这是我的创业公司:

public void ConfigureServices(IServiceCollection services)
{
    _services = services;
    services.AddMultitenancy<AppTenant, CachingAppTenantResolver>();

    services.AddDbContext<ApplicationDbContext>(options =>
        options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

    services.AddIdentity<ApplicationUser, IdentityRole>()
        .AddEntityFrameworkStores<ApplicationDbContext>()
        .AddDefaultTokenProviders();

    // Add application services.
    services.AddTransient<IEmailSender, EmailSender>();

    services.Configure<MultitenancyOptions>(Configuration.GetSection("Multitenancy"));

    services.AddMvc();

    services.AddTransient<IMultiTenantProvider, MultiTenantLogger>();
    services.Replace(ServiceDescriptor.Transient(typeof(ILogger<>), typeof(MultiTenantLogger<>)));
}

我收到此错误:

无法从单身'Microsoft.AspNetCore.Hosting.IApplicationLifetime'中使用作用域服务'AspNetMvcSampleModels.AppTenant'。

任何有关如何使这项工作的反馈是值得欢迎的!

答案

我认为你需要同时制作Singleton或Scoped

你可以尝试替换

services.AddTransient<IMultiTenantProvider, MultiTenantLogger>();

services.AddSingleton<IMultiTenantProvider, MultiTenantLogger>();

以上是关于MultiTenant自定义ILogger - 不能从单例中使用作用域服务的主要内容,如果未能解决你的问题,请参考以下文章

Application Insights - ILogger 参数呈现为自定义维度中的对象名称

从 Function App ILogger (C#) 在 Application Insights 中记录自定义对象

在 Asp.Net Core 5.0 中注册 HttpClient 时注入 ILogger

指定没有 IServiceProvider 新实例的自定义 IModelBinderProvider?

使用 Azure Function V2 Durable 函数时,ILogger 不记录到 Application Insights

EF Core如何输出日志到Visual Studio的输出窗口