我使用NServiceBus 4.6和Serilog。我已将NServiceBus配置为通过以下方式使用Serilog:
global::NServiceBus.SetLoggingLibrary.Custom(new SeriLoggerFactory());
工厂本身也非常简单:
public class SeriLoggerFactory : ILoggerFactory
{
public ILog GetLogger(Type type)
{
return new SeriLoggerAdapter(Log.ForContext(type));
}
public ILog GetLogger(string name)
{
var contextLogger = Log.ForContext("SourceContext", name);
return new SeriLoggerAdapter(contextLogger);
}
}
我肯定会获得与NServiceBus相关的日志条目,但缺少的一件事是处理消息但抛出异常时的异常细节。我可以在NServiceBus消息头中看到异常信息(直接通过查看错误队列中的消息,或通过Service Insight),但NServiceBus记录的消息缺少最相关的信息:
消息' 0d255d19-85f9-4915-a27c-a41000da12ed' id已失败FLR 并将被移交给SLR进行重试1
或
SLR无法通过消息解决问题 0d255d19-85f9-4915-a27c-a41000da12ed并将转发给 MYERRORQUEUE的错误队列
没有关于根异常的任何细节会使调试变得有点困难。它要求开发人员打开Service Insight,或者打开一个工具来查看队列本身的消息。两者都很麻烦,两者都缺乏可扩展性。
例如,Serilog允许您创建ILogEventEnricher类,这些类可以记录有关异常的特殊细节 - 这些异常并未由简单的.ToString记录。如果没有NServiceBus实际记录我的异常,我无法提取这些细节。
我在这里缺少什么?
答案 0 :(得分:1)
NServiceBus有一个名为NServiceBus.Faults.ErrorsNotifications的类,其中包含以下可观察对象:
您可以在端点启动时订阅这些observable,就像在下面的示例中记录一个错误,将messeages发送到第一级重试:
public class GlobalErrorHandler : IWantToRunWhenBusStartsAndStops
{
private readonly ILogger _logger;
private readonly BusNotifications _busNotifications;
readonly List<IDisposable> _notificationSubscriptions = new List<IDisposable>();
public GlobalErrorHandler(ILogger logger, BusNotifications busNotifications)
{
_logger = logger;
_busNotifications = busNotifications;
}
public void Start()
{
_notificationSubscriptions.Add(_busNotifications.Errors.MessageHasFailedAFirstLevelRetryAttempt.Subscribe(LogWhenMessageSentToFirstLevelRetry));
}
public void Stop()
{
foreach (var subscription in _notificationSubscriptions)
{
subscription.Dispose();
}
}
private void LogWhenMessageSentToFirstLevelRetry(FirstLevelRetry message)
{
var properties = new
{
MessageType = message.Headers["NServiceBus.EnclosedMessageTypes"],
MessageId = message.Headers["NServiceBus.MessageId"],
OriginatingMachine = message.Headers["NServiceBus.OriginatingMachine"],
OriginatingEndpoint = message.Headers["NServiceBus.OriginatingEndpoint"],
ExceptionType = message.Headers["NServiceBus.ExceptionInfo.ExceptionType"],
ExceptionMessage = message.Headers["NServiceBus.ExceptionInfo.Message"],
ExceptionSource = message.Headers["NServiceBus.ExceptionInfo.Source"],
TimeSent = message.Headers["NServiceBus.TimeSent"]
};
_logger.Error("Message sent to first level retry. " + properties, message.Exception);
}
}
observable是通过使用Reactive Extensions实现的,因此您必须安装NuGet软件包Rx-Core才能工作。