使用 Elmah 进行 ASP.NET 监控
我想使用 Elmah 来监视 ASP.NET 应用程序上进行的每项活动。
我对仅记录错误不感兴趣,而是对 ASP.NET 应用程序上进行的所有活动感兴趣,例如:
- 用户需要多长时间提交表单(以检查我的应用程序的可用性)
- 他采取哪些操作来完成任务(单击按钮 1) @10:41 单击按钮 2 @10.51)
- 将此信息存储在数据库中
该应用程序使用 C# 和 JavaScript。
我可以通过 Elmah 实现这一目标还是还有其他选择?
I want to use Elmah to monitor every activity made on my ASP.NET application.
I am not interested in logging only errors rather every activities made on my ASP.NET application, like:
- How long need a user to submit a form (to check usability of my application)
- Which action he takes to complete a task (click button 1 @10:41 click button 2 @10.51)
- Store this information in a database
The application is using C# and JavaScript.
Can I achieve this with Elmah or are there other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 ELMAH 来做到这一点。在配置中,您可以将日志记录目标设置为 xml/db 或电子邮件,并轻松更改它。我已经在 esmall 应用程序上使用过。它快速且有用。
Yes you can do it using ELMAH. In configuration you can set the logging destination to xml/db or email and easily change it. I have used for on esmall application. It is quick and useful.