Condition Over Threshold

ozsoft.sap.core.ConditionDetection.OverThreshold (ConditionDetectionModuleType)

Condition Detection Over Threshold

Element properties:

TypeConditionDetectionModuleType
IsolationAny
AccessibilityPublic
RunAsDefault
OutputTypeSystem.Performance.Data

Member Modules:

ID Module Type TypeId RunAs 
Compare ConditionDetection ozsoft.sap.core.ConditionDetection.ThresholdValue Default
Filter ConditionDetection ozsoft.sap.core.ConditionDetection.Counter Default

Source Code:

<ConditionDetectionModuleType ID="ozsoft.sap.core.ConditionDetection.OverThreshold" Accessibility="Public" Batching="false" Stateful="false" PassThrough="false">
<Configuration>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="CounterName" type="xsd:string" minOccurs="1" maxOccurs="1"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="Threshold" type="xsd:double" minOccurs="1" maxOccurs="1"/>
</Configuration>
<ModuleImplementation Isolation="Any">
<Composite>
<MemberModules>
<ConditionDetection ID="Filter" TypeID="ozsoft.sap.core.ConditionDetection.Counter">
<CounterName>$Config/CounterName$</CounterName>
</ConditionDetection>
<ConditionDetection ID="Compare" TypeID="ozsoft.sap.core.ConditionDetection.ThresholdValue">
<Operator>GreaterEqual</Operator>
<Threshold>$Config/Threshold$</Threshold>
</ConditionDetection>
</MemberModules>
<Composition>
<Node ID="Compare">
<Node ID="Filter"/>
</Node>
</Composition>
</Composite>
</ModuleImplementation>
<OutputType>Perf!System.Performance.Data</OutputType>
<InputTypes>
<InputType>Perf!System.Performance.Data</InputType>
</InputTypes>
</ConditionDetectionModuleType>