开发者

IIS 7 Logs Vs Custom

开发者 https://www.devze.com 2023-01-18 10:06 出处:网络
I want to log some information about my visitors.Is it better to use the II开发者_JAVA技巧S generated log or to create my own in an SQL 2008 db.

I want to log some information about my visitors. Is it better to use the II开发者_JAVA技巧S generated log or to create my own in an SQL 2008 db.

I know I should probably provide more information about my specific scenario, but I'd like just generally, pros and cons of either proposal.


You can add additional information to the IIS logs from ASP.NET using HttpResponse.AppendToLog, additionally you could use the Advanced Logging Module to create your own logs with custom filters and custom data including data from Performance Counters, and more.


It all depends on what information you want to analyse.

If you're doing aggregations and rollups then you'd want to pull this data into a database for analysis. Pulling your data into a database will give you access to indexes and better querying tools.

If you're doing infrequent one-off simple queries then LogParser might be sufficient for your needs. However you'll be constantly scanning unindexed flat files looking for data which is I/O intensive.

But as you say, without knowing more about your specific scenario it's hard to say what would be best.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号