HTTP 跟踪 <httpTracing>

概述

通过 <httpTracing> 元素,你可以为传入的 IIS 请求配置基于请求的选择性事件跟踪。 <httpTracing> 包含一个 <traceUrls> 元素,其中包含 <add> 元素的集合。 每个 <add> 元素定义一个用于启用跟踪的唯一 URL。

注意

Windows 事件跟踪 (ETW) 是操作系统提供的通用高速跟踪设施。 通过使用在内核中实现的缓冲和日志记录机制,ETW 为用户模式(应用程序)和内核模式设备驱动程序引发的事件提供跟踪机制。 此外,ETW 使你能够动态启用和禁用日志记录,从而轻松地在生产环境中执行详细的跟踪,而无需重新启动或应用程序重启。 日志记录机制使用异步写入程序线程写入磁盘的每个处理器缓冲区。 这样,大型服务器应用程序就可以最小干扰写入事件。

注意

若要启用基于 IIS 请求的 ETW,请安装 TracingModule

默认情况下,IIS 通过提供程序 IIS: WWW Server 为所有 URL 发出基于请求的 ETW 事件(详细信息可在 <traceProviderDefinitions> 元素中找到),GUID 为 {3A2A4E84-4C21-4981-AE10-3FDA0D9B0F83}。 要为 <httpTracing> 元素下的 <traceUrls> 集合指定的 ETW 启用 URL 筛选器,在运行 ETW 会话时,跟踪标志的第一位(最低有效位)必须设置为 1。 例如,若要仅为 <traceUrls> 集合中配置的 URL 启用基于 IIS 请求的 ETW 事件,请将提供程序 IIS: WWW Server 的 ETW 会话的跟踪标志设置为 0xFFFFFFFF。 此类跟踪标志启用 URL 筛选器以及所有跟踪区域。 若要为所有 URL 启用相同的事件,请将跟踪标志设置为 0xFFFFFFE

注意

<traceUrls> 集合中的 <httpTracing> 元素下定义的 URL 筛选器仅影响基于 IIS 请求的 ETW,但对失败请求跟踪没有影响。

兼容性

版本 说明
IIS 10.0 <httpTracing> 元素在 IIS 10.0 中未进行修改。
IIS 8.5 <httpTracing> 元素在 IIS 8.5 中未进行修改。
IIS 8.0 <httpTracing> 元素在 IIS 8.0 中未进行修改。
IIS 7.5 <httpTracing> 元素未在 IIS 7.5 中进行修改。
IIS 7.0 <httpTracing> 元素是在 IIS 7.0 中引入的。
IIS 6.0 空值

安装

<httpTracing> 元素包含在 IIS 7 的默认安装中。

操作方式

IIS 7 中没有 <httpTracing> 元素的用户界面。 有关如何以编程方式访问 <httpTracing> 元素的示例,请参阅本文档的代码示例部分。

配置

可以使用 ApplicationHost.config 文件在服务器级别配置 <httpTracing> 元素,也可以使用 Web.config 文件在站点、应用程序或目录级别配置。

特性

无。

子元素

元素 说明
traceUrls 可选元素。

指定要为其启用基于请求的 ETW 跟踪的 URL。

配置示例

以下示例将为 IIS 7 随附的示例主页启用跟踪,该主页位于默认网站根目录中的 Web.config 文件中。

<configuration>
   <system.webServer>
      <httpTracing>
         <traceUrls>
            <add value="/iisstart.htm" />
         </traceUrls>
      </httpTracing>
   </system.webServer>
</configuration>

代码示例

以下示例通过向名为 Contoso 的网站的 <traceUrls> 集合添加条目,在该网站上为 IIS 7 随附的示例主页启用跟踪。

AppCmd.exe

appcmd.exe set config "Contoso" -section:system.webServer/httpTracing /+"traceUrls.[value='/iisstart.htm']" /commit:apphost

注意

使用 AppCmd.exe 配置这些设置时,必须确保将 commit 参数设置为 apphost。 这会将配置设置提交到 ApplicationHost.config 文件中的相应位置部分。

C#

using System;
using System.Text;
using Microsoft.Web.Administration;

internal static class Sample
{
   private static void Main()
   {
      using (ServerManager serverManager = new ServerManager())
      {
         Configuration config = serverManager.GetApplicationHostConfiguration();
         ConfigurationSection httpTracingSection = config.GetSection("system.webServer/httpTracing", "Contoso");
         ConfigurationElementCollection traceUrlsCollection = httpTracingSection.GetCollection("traceUrls");

         ConfigurationElement addElement = traceUrlsCollection.CreateElement("add");
         addElement["value"] = @"/iisstart.htm";
         traceUrlsCollection.Add(addElement);

         serverManager.CommitChanges();
      }
   }
}

VB.NET

Imports System
Imports System.Text
Imports Microsoft.Web.Administration

Module Sample
   Sub Main()
      Dim serverManager As ServerManager = New ServerManager
      Dim config As Configuration = serverManager.GetApplicationHostConfiguration
      Dim httpTracingSection As ConfigurationSection = config.GetSection("system.webServer/httpTracing", "Contoso")

      Dim traceUrlsCollection As ConfigurationElementCollection = httpTracingSection.GetCollection("traceUrls")
      Dim addElement As ConfigurationElement = traceUrlsCollection.CreateElement("add")
      addElement("value") = "/iisstart.htm"
      traceUrlsCollection.Add(addElement)

      serverManager.CommitChanges()
   End Sub
End Module

JavaScript

var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager');
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST";
var httpTracingSection = adminManager.GetAdminSection("system.webServer/httpTracing", "MACHINE/WEBROOT/APPHOST/Contoso");

var traceUrlsCollection = httpTracingSection.ChildElements.Item("traceUrls").Collection;
var addElement = traceUrlsCollection.CreateNewElement("add");
addElement.Properties.Item("value").Value = "/iisstart.htm";
traceUrlsCollection.AddElement(addElement);

adminManager.CommitChanges();

VBScript

Set adminManager = createObject("Microsoft.ApplicationHost.WritableAdminManager")
adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"
Set httpTracingSection = adminManager.GetAdminSection("system.webServer/httpTracing", "MACHINE/WEBROOT/APPHOST/Contoso")

Set traceUrlsCollection = httpTracingSection.ChildElements.Item("traceUrls").Collection
Set addElement = traceUrlsCollection.CreateNewElement("add")
addElement.Properties.Item("value").Value = "/iisstart.htm"
traceUrlsCollection.AddElement addElement

adminManager.CommitChanges()