使用 HttpModule 跟踪对网站的每个请求
我想保存对网站的每个请求。一般来说,我想包含以下信息:
- 用户 IP、网站 url、用户(如果存在)、日期时间。
- 响应时间、响应成功-失败状态。
在同一个动作中收集 1 和 2 是否合理? (就像相同的 HttpModule)?
您是否知道我可以跟踪的任何现有结构来跟踪对网站的每个请求/响应状态?
数据需要记录到sql server。
I want to save each request to the website. In general I want to include the following information:
- User IP, The web site url, user-if-exist, date-time.
- Response time, response success-failed status.
Is it reasonable to collect the 1 and 2 in the same action? (like same HttpModule)?
Do you know about any existing structure that I can follow that track every request/response-status to the website?
The data need to be logged to sql server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看您的网络服务器日志。
Look in your web server logs.
IIS 日志怎么样?他们已经拥有您到目前为止列出的所有数据项
How about IIS logs? they already have all the data items you listed so far
在 BeginRequest 方法中,您需要编写以下代码。
In BeginRequest Method you need to write the following code.