Condition Between Thresholds

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

Condition Detection Between Thresholds

Element properties:

TypeConditionDetectionModuleType
IsolationAny
AccessibilityPublic
RunAsDefault
OutputTypeSystem.Performance.Data

Member Modules:

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

Source Code:

<ConditionDetectionModuleType ID="ozsoft.sap.core.ConditionDetection.BetweenThresholds" 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="HighThreshold" type="xsd:double" minOccurs="1" maxOccurs="1"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="LowThreshold" 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="GreaterEqualLow" TypeID="ozsoft.sap.core.ConditionDetection.ThresholdValue">
<Operator>GreaterEqual</Operator>
<Threshold>$Config/LowThreshold$</Threshold>
</ConditionDetection>
<ConditionDetection ID="LessHigh" TypeID="ozsoft.sap.core.ConditionDetection.ThresholdValue">
<Operator>Less</Operator>
<Threshold>$Config/HighThreshold$</Threshold>
</ConditionDetection>
</MemberModules>
<Composition>
<Node ID="LessHigh">
<Node ID="GreaterEqualLow">
<Node ID="Filter"/>
</Node>
</Node>
</Composition>
</Composite>
</ModuleImplementation>
<OutputType>Perf!System.Performance.Data</OutputType>
<InputTypes>
<InputType>Perf!System.Performance.Data</InputType>
</InputTypes>
</ConditionDetectionModuleType>