PwrTest 计时器方案

PwrTest 计时器方案在发生更改时记录系统计时器解析。

语法

pwrtest /timer /?  [/t:n]  [/?] 

/t:n
指定方案运行的总时间 () 分钟, (n 的默认值为 30 分钟) 。

示例

  pwrtest /timer
pwrtest /timer /t:5

XML 日志文件输出

<PwrTestLog>
  <SystemInformation>
  </SystemInformation>
  <TimerEvents> 
    <TimerResolutionRundown>
      <Timestamp></Timestamp>
      <CurrentResolution></CurrentResolution>
      <MinimumResolution></MinimumResolution>
      <MaximumResolution></MaximumResolution>
      <KernelCount></KernelCount>
      <KernelResolution></KernelResolution>
    </TimerResolutionRundown>
    <TimerResolutionRequestRundown>
        <Timestamp></Timestamp>
        <AppName></AppName>
        <Resolution></Resolution>
        <ProcessID></ProcessID>
    </TimerResolutionRequestRundown>
    <NtSetTimerResolution>
      <Timestamp></Timestamp>
      <AppName></AppName>
      <ServiceName></ServiceName>
      <Resolution></Resolution>
      <ProcessID></ProcessID>
    </NtSetTimerResolution>
    <UpdateTimerResolution>
      <Timestamp></Timestamp>
      <Resolution></Resolution>
    </UpdateTimerResolution>
    <ExSetTimerResolution>
      <Timestamp></Timestamp>
      <Resolution></Resolution>
    </ExSetTimerResolution>  
  </TimerEvents>
</PwrTestLog> 

下表描述了日志文件中显示的 XML 元素。

元素 说明
<TimerEvents>

包含所有不同的计时器事件。 PwrTest 日志文件中只能显示一 <个 TimerEvents> 元素。

<时间 戳>

任何给定事件的时间戳。

<TimerResolutionRundown>

显示当前计时器分辨率统计信息的事件。 只会记录其中一个事件。

<CurrentResolution>

当前分辨率(以毫秒为单位)。

<MinimumResolution>

最小分辨率。

<MaximumResolution>

最大分辨率。

<KernelCount>

来自内核模式的解析请求数。

<KernelResolution>

当前内核计时器分辨率。

<TimerResolutionRequestRundown>

显示当前解析请求的事件。 可能会记录多个事件。

<AppName>

请求者的进程名称。

<分辨率>

请求的解析(以毫秒为单位)。

<ProcessID>

请求者的进程 ID。

<NtSetTimerResolution>

事件指示进程发出计时器解析请求。

<ServiceName>

请求者的服务名称(如果适用)。

<UpdateTimerResolution>

事件指示系统更新了计时器解析。

<ExSetTimerResolution>

事件指示内核组件发出计时器解析请求。

PwrTest 语法