IIS監控工具 (IIS monitoring tool)


問題描述

IIS監控工具 (IIS monitoring tool)

I have a need for a tool that would monitor and more importantly log requests on IIS. This tool would have to report basic info about requests such as date/time of request, time spent for request, kbytes transferred... etc

What do you people use for such monitoring?


參考解法

方法 1:

You should extend and add all of the IIS properties you want to log.

To do this, do the following:

  1. Go into IIS
  2. Select properties on     your website.
  3. Under the website tab,     choose properties in the logging     section.
  4. Select the Extended     Properties tab.
  5. Select extended     properties
  6. Select all of the     items you want to log.

Reset IIS.

You can now use a log parser to look through the log. http://www.smartertools.com/ has a decent one called smarter stats, and is free for a small site.

方法 2:

You can use IIS's log files and read them using Log Parser (free download from MS).

In response to comment: the format of the IIS log file can be found here: IIS Log File Format (IIS 6.0) and here.

方法 3:

IIS Log files + log analysers. 

Log analysers like webtrends will give you a lot of information. 

方法 4:

You have a look on Operations Manager from System Center family. - http://www.microsoft.com/systemcenter/operationsmanager/en/us/default.aspx

方法 5:

Please see the eginnovations IIS web server monitoring tool - http://www.eginnovations.com/web/iismonitor.htm

(by GoranAaronSMitch WheatMischa KroonMicTechMark Berlow)

參考文件

  1. IIS monitoring tool (CC BY-SA 3.0/4.0)

#performance #monitoring #iis






相關問題

為什麼 Document.html() 這麼慢? (Why is Document.html() so slow?)

Sql中的WHERE,結合兩個快速條件會成倍增加成本 (WHERE in Sql, combining two fast conditions multiplies costs many times)

Tối ưu hóa truy vấn MySQL PHP - Phản hồi (MySQL PHP Query Optimization - Feedbacks)

jGRASP 上的編譯時間很慢——為什麼? (Slow compile times on jGRASP -- why?)

Pandas - 將直方圖桶分配給每一行 (Pandas - assign histogram bucket to each row)

VB.NET 中 Dictionary(Of String, SomeReferenceType) 的性能 (Performance of Dictionary(Of String, SomeReferenceType) in VB.NET)

發送到 Web 客戶端需要多少 JSON? (How much is too much JSON to send over to a web client?)

過期/緩存控制標頭的問題 (Problem with Expires/Cache-Control Headers)

iOS UI 性能分析 (iOS UI performance profiling)

限制內存機器性能的技巧?IIS 應用程序 (Tips for limit memory machine performance? IIS application)

監控 Rails 中站點性能的最佳方法是什麼 (What is the best approach to monitor site performance in rails)

決定 HTTP 標頭的字符集。我應該簡單地把 utf-8 和 fuggedaboutit 放在一起嗎? (Deciding charset for HTTP Headers. Should i simply put utf-8 and fuggedaboutit?)







留言討論