How do I see currently executing web request on IIS 8

前端 未结 4 1129
慢半拍i
慢半拍i 2020-12-04 18:58

In IIS 7, I would click on \"worker process\" then \"View Current Request\" to see all the requests currently being executed.

http://technet.microsoft.com/en-us/libr

4条回答
  •  一整个雨季
    2020-12-04 19:43

    The required features can be installed with PowerShell.

    IIS Manager:

    Install-WindowsFeature Web-Mgmt-Tools
    

    Request Monitor:

    Install-WindowsFeature Web-Request-Monitor
    

    With these features installed, run IIS Manager, browsing to the Worker Processes section shown in the screenshot below. From the list of Worker Processes, either double click on the process of interest to view currently executing requests or use the right-click context menu.

    enter image description here

    The back/forward arrows to the left of the address bar can be used to navigate back and forth between the list of requests and worker processes. The alt+left arrow / alt+right arrow keys perform the same actions.

提交回复
热议问题