Hi @Simon Verona ,
As you said, the request object allows you to inspect the currently executing requests on the server:
%systemroot%\system32\inetsrv\APPCMD list requests
The list can be restricted to the requests of a particular site, application pool, worker process, or url by using the appropriate property to filter the results. Here are some examples:
%systemroot%\system32\inetsrv\APPCMD list requests /apppool.name: DefaultAppPool
%systemroot%\system32\inetsrv\APPCMD list requests /wp.name: 3567
%systemroot%\system32\inetsrv\APPCMD list requests /site.id:1
Of course, you can directly view the records in the IIS log. The default IIS log path is: %SystemDrive%\inetpub\logs\LogFiles
If you want to see the detailed data content passed in, it is recommended that you enable FRT and view the corresponding FailedReqLog.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Yurong Dai