Represents a two-state custom monitor type to check the state of an Enterprise Vault task. This monitor returns: healthy for the processing and running states; critical for the paused, stopped, error, and failed states.

Veritas.EnterpriseVault.12.CheckEVTaskState.UnitMonitorType (UnitMonitorType)

Represents a two-state custom monitor type to check the state of an Enterprise Vault task. This monitor returns: healthy for the processing and running states; critical for the paused, stopped, error, and failed states.

Element properties:

RunAsDefault
AccessibilityInternal
Support Monitor RecalculateTrue

Member Modules:

ID Module Type TypeId RunAs 
DataSource DataSource Veritas.EnterpriseVault.12.CheckEVTaskState.DataSourceModuleType Default
PassThru ProbeAction System.PassThroughProbe Default
Probe ProbeAction Veritas.EnterpriseVault.12.CheckEVTaskState.ProbeActionModuleType Default
FilterHealthy ConditionDetection System.ExpressionFilter Default
FilterUnhealthy ConditionDetection System.ExpressionFilter Default

Overrideable Parameters:

IDParameterTypeSelector
IntervalSecondsint$Config/IntervalSeconds$
LogDebugEventbool$Config/LogDebugEvent$

Source Code:

<UnitMonitorType ID="Veritas.EnterpriseVault.12.CheckEVTaskState.UnitMonitorType" Accessibility="Internal">
<MonitorTypeStates>
<MonitorTypeState ID="Healthy" NoDetection="false"/>
<MonitorTypeState ID="Unhealthy" NoDetection="false"/>
</MonitorTypeStates>
<Configuration>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="1" name="TaskEntryID" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="1" name="TaskName" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="1" name="TaskType" type="xsd:string"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="1" name="IntervalSeconds" type="xsd:integer"/>
<xsd:element xmlns:xsd="http://www.w3.org/2001/XMLSchema" minOccurs="1" name="LogDebugEvent" type="xsd:boolean"/>
</Configuration>
<OverrideableParameters>
<OverrideableParameter ID="IntervalSeconds" Selector="$Config/IntervalSeconds$" ParameterType="int"/>
<OverrideableParameter ID="LogDebugEvent" Selector="$Config/LogDebugEvent$" ParameterType="bool"/>
</OverrideableParameters>
<MonitorImplementation>
<MemberModules>
<DataSource ID="DataSource" TypeID="Veritas.EnterpriseVault.12.CheckEVTaskState.DataSourceModuleType">
<TaskEntryID>$Config/TaskEntryID$</TaskEntryID>
<TaskName>$Config/TaskName$</TaskName>
<TaskType>$Config/TaskType$</TaskType>
<IntervalSeconds>$Config/IntervalSeconds$</IntervalSeconds>
<LogDebugEvent>$Config/LogDebugEvent$</LogDebugEvent>
</DataSource>
<ProbeAction ID="PassThru" TypeID="System!System.PassThroughProbe"/>
<ProbeAction ID="Probe" TypeID="Veritas.EnterpriseVault.12.CheckEVTaskState.ProbeActionModuleType">
<TaskEntryID>$Config/TaskEntryID$</TaskEntryID>
<TaskName>$Config/TaskName$</TaskName>
<TaskType>$Config/TaskType$</TaskType>
<LogDebugEvent>$Config/LogDebugEvent$</LogDebugEvent>
</ProbeAction>
<ConditionDetection ID="FilterHealthy" TypeID="System!System.ExpressionFilter">
<Expression>
<SimpleExpression>
<ValueExpression>
<XPathQuery Type="String">Property[@Name='Result']</XPathQuery>
</ValueExpression>
<Operator>Equal</Operator>
<ValueExpression>
<Value Type="String">Healthy</Value>
</ValueExpression>
</SimpleExpression>
</Expression>
</ConditionDetection>
<ConditionDetection ID="FilterUnhealthy" TypeID="System!System.ExpressionFilter">
<Expression>
<SimpleExpression>
<ValueExpression>
<XPathQuery Type="String">Property[@Name='Result']</XPathQuery>
</ValueExpression>
<Operator>Equal</Operator>
<ValueExpression>
<Value Type="String">Unhealthy</Value>
</ValueExpression>
</SimpleExpression>
</Expression>
</ConditionDetection>
</MemberModules>
<RegularDetections>
<RegularDetection MonitorTypeStateID="Healthy">
<Node ID="FilterHealthy">
<Node ID="DataSource"/>
</Node>
</RegularDetection>
<RegularDetection MonitorTypeStateID="Unhealthy">
<Node ID="FilterUnhealthy">
<Node ID="DataSource"/>
</Node>
</RegularDetection>
</RegularDetections>
<OnDemandDetections>
<OnDemandDetection MonitorTypeStateID="Healthy">
<Node ID="FilterHealthy">
<Node ID="Probe">
<Node ID="PassThru"/>
</Node>
</Node>
</OnDemandDetection>
<OnDemandDetection MonitorTypeStateID="Unhealthy">
<Node ID="FilterUnhealthy">
<Node ID="Probe">
<Node ID="PassThru"/>
</Node>
</Node>
</OnDemandDetection>
</OnDemandDetections>
</MonitorImplementation>
</UnitMonitorType>