如果每个时间跨度发生/发生超过 N 次,我如何设置 log4net 来记录某些事件?

发布于 2025-01-07 19:15:34 字数 116 浏览 1 评论 0原文

基本上,我希望能够在我的应用程序中记录诸如“HTTP 超时”之类的事件,前提是这些事件每分钟发生超过 100 次(例如)。

有没有办法配置 log4net 来处理这样的任务?

提前致谢,

Basically, I would like to be able to log events such as "HTTP timeouts" in my application only if they happen more than 100 times per minute (for example).

Is there any way to configure log4net to handle such a task?

Thanks in advance,

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

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

发布评论

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

评论(2

耳根太软 2025-01-14 19:15:34

不,您不能将其配置为那样运行。

但是,您可以通过编写自己的自定义 Appender 来相当轻松地实现这一点。只需从 AppenderSkeleton 继承,并使用您自己的逻辑覆盖 Append 方法(根据需要将事件参数传递给基本实现)。

log4net 可以从配置文件中自动加载类中的任何公共属性,因此您也可以通过这种方式指定阈值速率。

No, you cannot configure it to behave that way.

But, you can achieve this fairly easily by writing your own, custom Appender. Simply inherit from AppenderSkeleton, and override the Append method with your own logic (passing the event parameter to the base implementation as needed).

Any public property in your class can will be automatically loaded by log4net from the configuration file, so you can also specify the threshold rate this way.

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