请求记录器,以异步方式将每个请求记录到站点

时间:2015-10-02 06:16:19

标签: c# asp.net-mvc entity-framework asp.net-mvc-5 async-await

我正在尝试将每个请求记录到我的网站(Asp.net mvc)。为此,我创建了一个全局过滤器属性,用于从当前请求收集日志信息。以异步方式执行此操作的主要思想是不阻止我的主应用程序。并且只是静默地记录数据。当我的动作记录器无法记录请求时,我设置错误记录器以记录错误时,一切都正常。

下面的代码是我的过滤器

public class RequestLoggingAttribute : ActionFilterAttribute
{
    private readonly IActionLogService _actionLogService;
    public RequestLoggingAttribute(IActionLogService actionLogService)
    {
        _actionLogService = actionLogService;
    }

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {           
        //Run an async method here to log any data you need.
        Task.Run(() => GatherActionLog(filterContext)).ConfigureAwait(false); 

        base.OnActionExecuting(filterContext);           
    }

    private async Task GatherActionLog(ActionExecutingContext filterContext)
    {
        try
        {                                
            var httpContext = filterContext.RequestContext.HttpContext;
            var request = httpContext.Request;
            if (!request.Url.AbsoluteUri.Contains("elmah"))
            {
                var roles = ((ClaimsIdentity) httpContext.User.Identity).Claims
                    .Where(c => c.Type == ClaimTypes.Role)
                    .Select(c => c.Value).ToArray();

                var parameters = filterContext.ActionParameters.Select(x => new {x.Key, x.Value});
                var jsonParameters = Json.Encode(parameters);

                var actionLog = new ActionLog()
                {
                    Action = filterContext.ActionDescriptor.ActionName,
                    Controller = filterContext.ActionDescriptor.ControllerDescriptor.ControllerName,
                    DateTimeUTC = DateTime.UtcNow,
                    IpAddress = request.UserHostAddress,
                    UserName = httpContext.User.Identity.Name,
                    Request = request.Url.AbsoluteUri,
                    ComputerName = request.UserHostName,
                    UserRole = String.Join(",", roles),
                    UserAgent = request.UserAgent,
                    ClientLoggedInUser = request.LogonUserIdentity.Name,
                    HttpMethod = httpContext.Request.HttpMethod,
                    Parameters = jsonParameters,
                    BrowserName = request.Browser.Id,
                    BrowserVersion = request.Browser.Version
                };

                await _actionLogService.InsertAsync(actionLog);
            }
        }
        catch (Exception ex)
        {               
            Elmah.ErrorLog.GetDefault(filterContext.HttpContext.ApplicationInstance.Context).Log(new Elmah.Error(ex));

        }                       
    }
}

在我的Elmah错误列表中,此方法存在两个错误。如下:

第一:

  

在上一次异步操作完成之前,在此上下文中启动了第二个操作。使用'await'确保在此上下文上调用另一个方法之前已完成任何异步操作。不保证任何实例成员都是线程安全的。

第二

  

保存或接受更改失败,因为“Domain.LogEntities.ActionLog”类型的多个实体具有相同的主键值。确保显式设置的主键值是唯一的。确保在数据库和Entity Framework模型中正确配置了数据库生成的主键。使用实体设计器进行数据库优先/模型优先配置。使用'HasDatabaseGeneratedOption'流畅API或'DatabaseGeneratedAttribute'进行代码优先配置。

ActionLog的Domain Class如下:

public class ActionLog
{
    public Guid ActionLogId { get; set; }
    public string UserRole { get; set; }
    public string UserName { get; set; }
    public string ClientLoggedInUser { get; set; }
    public string UserFullName { get; set; }
    public DateTime DateTimeUTC { get; set; }
    public string Action { get; set; }
    public string Controller { get; set; }
    public string Request { get; set; }
    public string ComputerName { get; set; }
    public string IpAddress { get; set; }
    public string HttpMethod { get; set; }
    public string Parameters { get; set; }
    public string UserAgent { get; set; }   
    public string BrowserName { get; set; }
    public string BrowserVersion { get; set; }               
}

如果重要,我使用了两个数据库,一个用于我的主应用程序,另一个用于记录(错误和请求记录)。所以我在DAL层有两个Entity Framework DbContext。一个DbContext用于应用程序,第二个用于记录器。但是我使用了一个接受DbContext来使用的BaseRepository。我对BaseRepository的调用如下:

public class GenericRepository<T> : BaseRepository<T, ApplicationDbContext> where T : class
{
    public GenericRepository(ApplicationDbContext db)
        :base(db)
    {
    }

}

public class LoggerRepository<T> : BaseRepository<T, LoggerDbContext> where T : class
{
    public LoggerRepository(LoggerDbContext db)
        :base(db)
    {

    }
}

1)有更好的方法吗?? (我不想改变整个代码,只是更适合这种方法的方法)

2)如何防止上述错误?

谢谢

2 个答案:

答案 0 :(得分:3)

希望我受够了#34;声誉&#34;将此添加到评论中。无论如何,ActionFilters应该在HTTP管道将请求移动到控制器之前完成它们的工作。请查看this post

您可以将您的日志记录详细信息发送到MQ(例如,在单独的进程中运行的MSMQ),并让MQ与数据库进行通信,以便不阻止您的主应用程序。

答案 1 :(得分:0)

您可以使用Net.CrossCutting.RequestLogger nuget软件包。它可以帮助您记录每个HTTP请求,包括对存储的响应(例如,数据库或文件)。