跟踪 URL <traceUrls>
概述
<traceUrls>
元素包含一组 <add>
元素,其中每个元素定义一个要启用跟踪的 URL。
注意
Windows 事件跟踪 (ETW) 是操作系统提供的通用高速跟踪设施。 通过使用在内核中实现的缓冲和日志记录机制,ETW 为用户模式(应用程序)和内核模式设备驱动程序引发的事件提供跟踪机制。 此外,ETW 使你能够动态启用和禁用日志记录,从而轻松地在生产环境中执行详细的跟踪,而无需重新启动或应用程序重启。 日志记录机制使用异步写入程序线程写入磁盘的每个处理器缓冲区。 这样,大型服务器应用程序就可以最小干扰写入事件。
兼容性
版本 | 说明 |
---|---|
IIS 10.0 | <traceUrls> 元素在 IIS 10.0 中未进行修改。 |
IIS 8.5 | <traceUrls> 元素在 IIS 8.5 中未进行修改。 |
IIS 8.0 | <traceUrls> 元素在 IIS 8.0 中未进行修改。 |
IIS 7.5 | <traceUrls> 元素在 IIS 7.5 中未进行修改。 |
IIS 7.0 | IIS 7.0 中引入了 <httpTracing> 集合的 <traceUrls> 元素。 |
IIS 6.0 | 空值 |
安装
在 IIS 7 的默认安装中包含 <httpTracing>
集合的 <traceUrls>
元素。
操作方式
IIS 7 中没有 <httpTracing>
元素的用户界面。 有关如何以编程方式访问 <httpTracing>
元素的示例,请参阅本文档的代码示例部分。
配置
特性
无。
子元素
元素 | 说明 |
---|---|
add |
可选元素。 将跟踪 URL 添加到跟踪 URL 集合。 |
clear |
可选元素。 从跟踪 URL 集合中移除对跟踪 URL 的所有引用。 |
remove |
可选元素。 从跟踪 URL 集合中移除对跟踪 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()