我在我的web api应用程序中使用ExceptionFilterAttribute来捕获不同的未处理异常,即:
public class InvalidDriverExceptionAttribute : ExceptionFilterAttribute
{
public override void OnException(HttpActionExecutedContext actionExecutedContext)
{
if (actionExecutedContext.Exception != null)
{
if (actionExecutedContext.Exception is Domain.InvalidDriverException)
{
var resp = actionExecutedContext.Request.CreateErrorResponse(HttpStatusCode.NotFound, "User is not a driver");
actionExecutedContext.Response = resp;
}
}
//base.OnException(actionExecutedContext);
}
}
但我想为我的网络工作提供类似的引擎。有可能吗?
答案 0 :(得分:1)
但我想为我的网络工作提供类似的引擎。有可能吗?
是。但由于Web作业是连续的或计划的,因此它们的实现方式存在一些差异。您可以使用 ErrorTrigger 来实现目标。一个错误触发器,允许您在发生错误时注释运行时自动调用的函数。它可以在执行时监视Web作业中的错误。我的演示结果如下:filter null exception。有关详细信息,请参阅此article。
使用Azure WebJob开发作业时,如果在执行作业时出现问题,实施错误监控是一种很好的做法。
WebJobs ErrorTrigger扩展,是Core扩展的一部分,将帮助我们实现这一目标。
答案 1 :(得分:1)
我已经从FunctionExceptionFilterAttribute
创建了派生类public class ErrorHandlerAttribute : FunctionExceptionFilterAttribute
{
public override async Task OnExceptionAsync(FunctionExceptionContext exceptionContext, CancellationToken cancellationToken)
{
string body = $"ErrorHandler called. Function '{exceptionContext.FunctionName}': {exceptionContext.FunctionInstanceId} failed. ";
CombineErrorWithAllInnerExceptions(exceptionContext.Exception, ref body);
string[] emailList = System.Configuration.ConfigurationManager.AppSettings["SendErrorEmails"].Split(';');
await SendEmail.SendErrorNotificationAsync("WebJob - Common Driver Error", body);
}
private void CombineErrorWithAllInnerExceptions(Exception ex, ref string error)
{
error += $"ExceptionMessage: '{ex.Message}'.";
if (ex is Domain.BadStatusCodeException)
{
error += $"Status code: {((Domain.BadStatusCodeException)ex).StatusCode}";
}
if (ex.InnerException != null)
{
error += $"InnerEx: ";
CombineErrorWithAllInnerExceptions(ex.InnerException, ref error);
}
}
}
然后将其用于方法:
[NoAutomaticTrigger]
[ErrorHandler]
public async Task GetDriversAsync(TextWriter logger)
{
发生异常时,请调用此代码并向我发送通知电子邮件