elmah定制提供商及暴露事件

发布于 2024-10-24 18:54:10 字数 361 浏览 1 评论 0原文

我想知道如何创建自定义提供程序来存储错误日志,例如。 Windows 事件查看器的提供者。

如果到目前为止不可能,我还想知道是否有任何可以覆盖的公开事件,以便我可以注入我的代码,获取异常,做任何我想做的事情。

我知道 Global.asax 中有一些我可以覆盖的事件。喜欢过滤:

void ErrorLog_Filtering(object sender, ExceptionFilterEventArgs e)
{
}
void ErrorMail_Filtering(object sender, ExceptionFilterEventArgs )
{
}

还有更多吗?我在哪里可以找到这些事件的列表?

I am wondering how do I create my customized provider for storing the error logs, eg. a provider to windows event viewer.

If it is not possible so far, I am also wondering is there any exposed events I can override, so that I can inject my code, get the exception, do whatever I want.

I know there are some event I can override in Global.asax. like for filtering:

void ErrorLog_Filtering(object sender, ExceptionFilterEventArgs e)
{
}
void ErrorMail_Filtering(object sender, ExceptionFilterEventArgs )
{
}

is there more? where can I find the list of these events?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅语花开 2024-10-31 18:54:10

关于创建 Elmah 事件日志提供程序,如果您打算将错误信息存储在事件日志中并同时使用 ELMAH UI,那么这可能不是一个好主意。 相关问题对此有 Matthew Daugherty 的出色回答话题:

ELMAH错误日志类不是
只写;他们还阅读了日志
数据,以便可以显示在
ELMAH 网络界面。此外,
ELMAH 记录的不仅仅是异常
信息。它还记录服务器
变量、表单集合以及
复制所需的信息
黄屏死机。即使
你要记录所有这些
信息到事件日志它会
难以以纯文本形式阅读,
并且很难读回
这样 ELMAH 网络
接口可以使用它。如果你不是
将使用 ELMAH 网络界面
那么显然这不是问题。

为了创建自定义日志记录提供程序,您可以子类化 ErrorLog 并覆盖 GetError(通过 id 获取单个错误;由 Elmah UI 使用)、GetErrors(列出页面上的所有错误;由 Elmah UI 使用)和 Log(日志)一个新的错误)方法来提供您自己的存储机制。请参阅本文了解有关如何实现自定义错误日志的示例。

然后,您在配置中注册新的 ErrorLog 提供程序:

<elmah> 
  <errorLog type="MyNamespace.MyErrorLog, MyAssemblyName"/> 
</elmah> 

关于事件,它们由 Elmah 模块发出。在 ErrorLogModule 中有两个事件 - Logged 和 Filtering。在 ErrorMailModule 中有四个事件 - Filtering、Mailing、Mailed 和 DisposeMail。

About creating an Elmah Event Log provider it's probably not a good idea if you intend to store the error information in the event log and also use the ELMAH UI. A related question has an excellent answer from Matthew Daugherty on this topic:

ELMAH error log classes are not
write-only; they also read the log
data so that it can be displayed in
the ELMAH web interface. Additionally,
ELMAH logs more than just exception
information. It also logs server
variables, the form collection, and
the information necessary to reproduce
the yellow screen of death. Even if
you were to log all of this
information to the event log it would
be difficult to read as plain text,
and very difficult to read back in
such a way that the ELMAH web
interface could use it. If you are not
going to use the ELMAH web interface
then clearly that is not an issue.

In order to create a custom logging provider you can subclass ErrorLog and override the GetError (gets a single error by id; used by the Elmah UI), GetErrors (lists all errors on a page; used by the Elmah UI) and Log (logs a new error) methods to provide your own storage mechanism. See this article for an examle on how to implement a custom ErrorLog.

You then register your new ErrorLog provider in the config:

<elmah> 
  <errorLog type="MyNamespace.MyErrorLog, MyAssemblyName"/> 
</elmah> 

Regarding the events, they are emitted by the Elmah modules. In the ErrorLogModule there are two events - Logged and Filtering. In the ErrorMailModule there are four events - Filtering, Mailing, Mailed and DisposingMail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文