自定义错误信息并写入到Elmah
在ap.net Web项目中一直使用Elmah进行日志记录,
但一直有一个问题困扰我很久,那就是我如何自己生成一个错误并记录到Elmah里去。
你知道有时你需要在项目中生成一个错误用于一些特殊的需求
最开始之前我是这样处理的。
使用Sql语句自定义错误信息添加到Elmah的Sqlite数据库中,但这样做有一个问题,
如果Elmah更改存储方式非Sqlite(如Xml,txt,Mysql等)那么下面的方式就无效啦(错误信息无法在Elmah中显示)
public class CustomErrorSqlite{
static string UrlDecodeUtf( string _val)
{
return HttpUtility .UrlDecode(_val, System.Text. Encoding .UTF8);
}
static string StrDecode(string str)
{
return UrlDecodeUtf(str).Replace("&", "&").Replace("<br />", " ").Replace("<br>", " ").Replace("<", "<").Replace(">", ">").Replace("\"", """).Replace("\'", "'").Replace(")", ")").Replace("(", "(").Replace("{", "{").Replace("}", "}").Replace("/", "/");
}
static string GetServerVariables
{
get
{
StringBuilder sb = new StringBuilder("<serverVariables>");
foreach (string str in HttpContext.Current.Request.ServerVariables)
{
sb.Append(string.Format("<item name='{0}'><value string='{1}'/></item>", str, StrDecode(HttpContext.Current.Request.ServerVariables[str])));
}
sb.Append("</serverVariables>");
return sb.ToString();
}
}
/// <summary>
/// 错误信息,错误地址,错误详细信息
/// AllXml列需要将@#等特殊字符进行处理,否则在查看Elmah详情时会出现
/// </summary>
/// <param name="message">错误信息</param>
/// <param name="source">错误来源</param>
/// <param name="detailmessage">详细的错误信息</param>
public static void AddLog(string message, string source, string detailmessage)
{
detailmessage = StrDecode(UrlDecodeUtf(detailmessage));
message = StrDecode(UrlDecodeUtf(message));
source = StrDecode(UrlDecodeUtf(source)); //使用Elmah的Sqlite数据库
//如果在配置文件中更改sqlite数据库位置或更改为其他存储方式
//下面的处理方式无效(数据无法在Elmah中显示和查看)
string ConnectionString = string.Empty;
foreach (ConnectionStringSettings str in ConfigurationManager.ConnectionStrings)
{
if (!str.Name.Contains("Elmah_SQLiteErrorLog"))
continue;
ConnectionString = str.ConnectionString;
break;
}
using (SQLiteConnection sQLiteConnection = new SQLiteConnection(ConnectionString))
{
using (SQLiteCommand sQLiteCommand = new SQLiteCommand("INSERT INTO Error (Application, Host, Type, Source, Message, User, StatusCode, TimeUtc, AllXml)VALUES (@Application, @Host, @Type, @Source, @Message, @User, @StatusCode, @TimeUtc, @AllXml);SELECT last_insert_rowid();", sQLiteConnection))
{
SQLiteParameterCollection parameters = sQLiteCommand.Parameters;
parameters.Add("@Application", DbType.String, ).Value = "/";
parameters.Add("@Host", DbType.String, ).Value = Environment.UserName;
parameters.Add("@Type", DbType.String, ).Value = "UserType";
parameters.Add("@Source", DbType.String, ).Value = "UserType";
parameters.Add("@Message", DbType.String, ).Value = message;
parameters.Add("@User", DbType.String, ).Value = Environment.UserName;
parameters.Add("@StatusCode", DbType.Int64).Value = ;
parameters.Add("@TimeUtc", DbType.DateTime).Value = DateTime.Now;
parameters.Add("@AllXml", DbType.String).Value = string.Format("<error type=\"UserType\" message=\"{0}\" source=\"{1}\" detail=\"\r\n{2}\r\nSource:{3} \">{4}</error>", message, source, detailmessage + "\r\ndatetime:" + DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss:ms"), source, GetServerVariables); try
{
sQLiteConnection.Open();
sQLiteCommand.ExecuteScalar();
}
catch (Exception)
{ }
finally
{
sQLiteCommand.Clone();
}
}
}
}
}
经过搜索 发现一个更好的解决方案使用Elmah内部对象来添加错误信息,但可能性能上会有损耗,每次都会创建Error或Exception对象
using System;
using System.Web;
using Elmah;
namespace CustomErrorElmah
{
public partial class Default : System.Web.UI.Page
{ protected void Page_Load(object sender, EventArgs e)
{ string querystr = "\r\n";
if (!string.IsNullOrEmpty(Request.QueryString.ToString()))
querystr += Request.QueryString; //自定义错误
CustomErrorSqlite.AddLog("THIS IS TEST ,自定义Sql添加到Elmah的Sqlit数据库中", "Page_Load()", "自定义错误 自定义Sql添加到Elmah的Sqlit数据库中" + querystr); #region
//创建一个Elmah的Error对象并写错误日志 Error error = new Error();
error.Message = "THIS IS TEST 使用Elmah的Error对象";
error.HostName = Request.Url.Host;
error.StatusCode = ;
error.Time = DateTime.Now;
error.User = Environment.UserName;
error.Type = "Elmah 自定义类型";
error.Detail = "THIS IS TEST ,创建一个Elmah的Error对象并写错误日志 但没有Server Variables,cookie等信息" + querystr;
error.Source = "Page_Load"; Elmah.ErrorLog.GetDefault(HttpContext.Current).Log(error);
#endregion //创建一个异常并写入错误日志,无法自定义错误的类型
Elmah.ErrorSignal.FromCurrentContext().Raise(new Exception("创建一个异常并写入错误日志" + querystr));
}
}
}
Web.config配置Elmah
<?xml version="1.0" encoding="utf-8"?> <configuration>
<configSections>
<!--监控应用程序-->
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/>
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/>
<section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah"/>
</sectionGroup>
</configSections> <!--Elmah连接数据库-->
<elmah>
<security allowRemoteAccess="yes"/>
<errorLog type="Elmah.SQLiteErrorLog, Elmah" connectionStringName="Elmah_SQLiteErrorLog"/> </elmah>
<connectionStrings>
<!--监控应用程序 数据存储位置-->
<add name="Elmah_SQLiteErrorLog" connectionString="Data Source=|DataDirectory|Error.db3"/>
</connectionStrings>
<system.web> <!--出现错误时的处理模块-->
<httpHandlers>
<add verb="POST,GET,HEAD" path="Elmah/Error.aspx" type="Elmah.ErrorLogPageFactory, Elmah"/>
</httpHandlers>
<httpModules>
<!--出错时的处理模块-->
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
<!--发送Email-->
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/>
</httpModules>
<customErrors defaultRedirect="/404.html" mode="Off"/>
</system.web>
</configuration>
有图有真相:
1.
2.
.
3.
之前一直想解决完全自定义错误信息的问题,但上面三个方法总不能让我完全满意(我需要Request的完整信息)
但第二个最接近我想要的效果,只是生成的错误信息没有Request信息见图2
在Bing.com和stackoverflow.com上搜索了半天也没有解决,无奈只好下载源码自己来处理
通过源码发现实现方法完全可以实现我要的效果(自动添加Request信息)
只需要将当前的HttpContext指向“Error ”对象既可
//创建一个Elmah的Error对象并写错误日志
//没有Request信息
Error error = new Elmah. Error ( );
//当前的HttpContext指向“Error ”,在生成的错误信息时会自动添加Request信息
Error error = new Elmah. Error ( new Exception (), HttpContext .Current);
error.Message = "THIS IS TEST 使用Elmah的Error对象" ;
error.HostName = Request.Url.Host;
error.StatusCode = ;
error.Time = DateTime.Now;
error.User = Environment.UserName;
error.Type = "Elmah 自定义类型" ;
error.Detail = "THIS IS TEST ,创建一个Elmah的Error对象并写错误日志 但没有Server Variables,cookie等信息" + querystr;
error.Source = "Page_Load" ;
Elmah:http://code.google.com/p/elmah/
http://stackoverflow.com/questions/2108404/elmah-exceptions-without-httpcontext
http://stackoverflow.com/questions/3812538/elmah-add-message-to-error-logged-through-call-to-raisee
http://stackoverflow.com/questions/7441062/how-to-use-elmah-to-manually-log-errors
自定义错误信息并写入到Elmah的更多相关文章
- SpringBoot自定义错误信息,SpringBoot适配Ajax请求
SpringBoot自定义错误信息,SpringBoot自定义异常处理类, SpringBoot异常结果处理适配页面及Ajax请求, SpringBoot适配Ajax请求 ============== ...
- 自定义 ocelot 中间件输出自定义错误信息
自定义 ocelot 中间件输出自定义错误信息 Intro ocelot 中默认的 Response 中间件在出错的时候只会设置 StatusCode 没有具体的信息,想要展示自己定义的错误信息的时候 ...
- jquery.validate使用 - 自定义错误信息
自定义错误消息的显示方式 默认情况下,验证提示信息用label元素来显示, 并且会添加css class, 通过css可以很方便设置出错控件以及错误信息的显示方式. /* 输入控件验证出错*/form ...
- Java异常封装(自定义错误信息和描述)
一.checked异常和unchecked异常 checked异常: unchecked异常: 二.异常封装示例 2.1.添加一个枚举LuoErrorCode.java如下: 2.2.创建一个异常类B ...
- jQuery.validate.js 自定义错误信息
var validate = $("form").validate({....})validate.showError({"username":"us ...
- jQuery Validate自定义错误信息,自定义方法
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- asp.net mvc3 数据验证(二)——错误信息的自定义及其本地化
原文:asp.net mvc3 数据验证(二)--错误信息的自定义及其本地化 一.自定义错误信息 在上一篇文章中所做的验证,在界面上提示的信息都是系统自带的,有些读起来比较生硬.比如: ...
- strut2 自定义文件上传错误信息
在文件上传过程中我们可以指定拦截器对文件类型.后缀名.大小进行设定,action中的配置: <interceptor-ref name="fileUpload"> &l ...
- MVC验证06-自定义错误信息
原文:MVC验证06-自定义错误信息 本文体验自定义错误信息. 系统默认的错误信息 在"MVC验证02-自定义验证规则.邮件验证"中,我们自定义了一个验证Email的类.如果输 ...
随机推荐
- HTTP缓存了解(一)
引言 HTTP/1.1 200 OK X-Powered-By: Express Content-Type: text/html; charset=utf-8 Content-Length: 3 ET ...
- enumerate()和map()函数用法
一.python enumerate用法 先出一个题目: 1.有一 list= [1, 2, 3, 4, 5, 6] 请打印输出: 0, 1 1, 2 2, 3 3, 4 4, 5 5, 6 打印输出 ...
- Xamarin.Forms教程开发Xamarin.Forms应用程序需要的工具
开发Xamarin.Forms应用程序需要的工具 Xamarin.Forms教程开发Xamarin.Forms应用程序需要的工具,2014年5月8日在发布的Xamrin 3中引进了Xamarin.Fo ...
- 学点编码知识又不会死:Unicode的流言终结者和编码大揭秘
如果你是一个生活在2003年的程序员,却不了解字符.字符集.编码和Unicode这些基础知识.那你可要小心了,要是被我抓到你,我会让你在潜水艇里剥六个月洋葱来惩罚你. 这个邪恶的恐吓是Joel Spo ...
- python中对list去重的多种方法
今天遇到一个问题,用了 itertools.groupby 这个函数.不过这个东西最终还是没用上. 问题就是对一个list中的新闻id进行去重,去重之后要保证顺序不变. 直观方法 最简单的思路就是: ...
- PHP函数声明(二)
PHP的变量的范围 1.局部变量:在函数中声明的变量就是局部变量,只能在自己的函数内部使用. 2.全局变量:函数外声明,在变量声明以后的,直到整个脚本结束前都可以使用,包括在函数中和{}中都可以使用 ...
- 【51Nod 1756】【算法马拉松 23】谷歌的恐龙
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1765 设答案为\(X\). 则\[X=\frac{m}{n}\times ...
- codevs 1392 合并傻子
1392 合并傻子 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题目描述 Description 在一个园形操场的四周站着N个傻子,现要将傻子有 ...
- NOIP2017 D2T3列队
这题我改了三天,考场上部分分暴力拿了50,考完试发现与正解很接近只是没写出来. 对于每一行和最后一列建n+1颗线段树,维护前缀和. 复杂度qlogn 假如你移动一个坐标为(x,y)的人,你要将第x行线 ...
- [POI2005]A Journey to Mars --- 单调队列
[POI2005]A Journey to Mars 题目描述: Byteazar 决定去火星参加一个空间站旅行. 火星的所有空间站都位于一个圆上. Byteazar 在其中一个登陆然后变开始饶圈旅行 ...