如何通过IIS日志查找服务器处理时间?

从IIS日志中,我发现一旦它从客户端机器得到适当的服务确认后,它就会在日志中进行输入。 因此,从使用IIS日志的属性时间开始,我们可以说它也具有客户端等待时间。

Time Taken In IIS Logs = Server Processing Time + Client Wait Time to download the response

这些是我们在IIS日志中获得的值:

  • 日期(日期)
  • 时间(时间)
  • 客户端IP地址(c-ip)
  • 用户名(cs-username)
  • 方法(cs方法)
  • URI词干(cs-uri-stem)
  • URI查询(cs-uri-query)
  • 协议状态(sc-status)
  • Win32状态(sc-win32-status)
  • 发送的字节数(sc-bytes)
  • 所花时间(所花时间)
  • 主机(cs-host)
  • 用户代理(cs(User-Agent))
  • Referer(cs(Referer))
  • 我的问题是 - 有没有办法找到IIS提供的每个Web请求的服务器处理时间?


    有没有办法找到IIS提供的每个Web请求的服务器处理时间?

    可能不是常规的IIS日志,但尝试“高级日志记录”请参阅http://www.iis.net/learn/extensions/advanced-logging-module/advanced-logging-for-iis-custom-logging#custom

    在这里输入图像描述

    链接地址: http://www.djcxy.com/p/60433.html

    上一篇: How to find the server processing time by IIS logs?

    下一篇: Call web service methods in specific order