Processor time percentage alerting datasource.
Type | DataSourceModuleType |
Isolation | Any |
Accessibility | Public |
RunAs | Default |
OutputType | Microsoft.Windows.Server.10.0.ProcessAlertData.Type |
ID | Module Type | TypeId | RunAs |
---|---|---|---|
DS | DataSource | Microsoft.Windows.Server.10.0.Process.Alerting.DataSource | Default |
ID | ParameterType | Selector | Display Name | Description |
---|---|---|---|---|
IntervalSeconds | int | $Config/IntervalSeconds$ | Interval Seconds | Interval (seconds) |
SampleCount | int | $Config/SampleCount$ | Sample Count | Sample Count |
PercentProcessorTimeThreshold | int | $Config/PercentProcessorTimeThreshold$ | Percent Processor Time Threshold | Percent processor time threshold. |
MonitoringConfiguration | string | $Config/MonitoringConfiguration$ | Monitoring Configuration | Allows to specify thresholds for specific processes and processes to exclude from monitoring in XML format |
LogLevel | int | $Config/LogLevel$ | Log Level | Determines which events should be written to Event Log. 0 – All, 1 – Informational, 2 – Warning, 4 – Error, 8 – Verbose, 16 – Debug, 255 – None |
<DataSourceModuleType ID="Microsoft.Windows.Server.10.0.Process.PercentProcessorTimeAlerting.DataSource" Accessibility="Public">
<Configuration>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="MonitoringConfiguration" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="IntervalSeconds" type="xsd:int"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="SampleCount" type="xsd:int"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="PercentProcessorTimeThreshold" type="xsd:int"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="0" maxOccurs="1" name="LogLevel" type="xsd:int"/>
</Configuration>
<OverrideableParameters>
<OverrideableParameter ID="IntervalSeconds" Selector="$Config/IntervalSeconds$" ParameterType="int"/>
<OverrideableParameter ID="SampleCount" Selector="$Config/SampleCount$" ParameterType="int"/>
<OverrideableParameter ID="PercentProcessorTimeThreshold" Selector="$Config/PercentProcessorTimeThreshold$" ParameterType="int"/>
<OverrideableParameter ID="MonitoringConfiguration" Selector="$Config/MonitoringConfiguration$" ParameterType="string"/>
<OverrideableParameter ID="LogLevel" Selector="$Config/LogLevel$" ParameterType="int"/>
</OverrideableParameters>
<ModuleImplementation>
<Composite>
<MemberModules>
<DataSource ID="DS" TypeID="Microsoft.Windows.Server.10.0.Process.Alerting.DataSource">
<MonitoringConfiguration>$Config/MonitoringConfiguration$</MonitoringConfiguration>
<IntervalSeconds>$Config/IntervalSeconds$</IntervalSeconds>
<SampleCount>$Config/SampleCount$</SampleCount>
<HandleCountIncreaseThreshold>20</HandleCountIncreaseThreshold>
<MemoryPercentageThreshold>50</MemoryPercentageThreshold>
<PercentProcessorTimeThreshold>$Config/PercentProcessorTimeThreshold$</PercentProcessorTimeThreshold>
<SeedId>$Target/Id$</SeedId>
<LogLevel>$Config/LogLevel$</LogLevel>
</DataSource>
</MemberModules>
<Composition>
<Node ID="DS"/>
</Composition>
</Composite>
</ModuleImplementation>
<OutputType>Microsoft.Windows.Server.10.0.ProcessAlertData.Type</OutputType>
</DataSourceModuleType>