This article explains how to set the attribute AtRiskThreshold for SystemRedundancyGroup.
Default value of AtRiskThreshold is 1 at times user would like to change to different values.
All Smarts versions
Find current value as
dmctl -s AMPM get SystemRedundancyGroup :: Test-SRG | grep -iE 'ComposedOf|AtRisk'
AtRiskThreshold = 1
ComposedOf = { Switch::<HOSTNAME>, Host::Test_1, Host::Test_2 }
Set the value as
dmctl -s AMPM put SystemRedundancyGroup :: Test-SRG :: AtRiskThreshold 2 | tee
Verify the value as
dmctl -s AMPM get SystemRedundancyGroup :: Test-SRG | grep -iE 'ComposedOf|AtRisk'
AtRiskThreshold = 2
ComposedOf = { Switch::<HOSTNAME>, Host::Test_1, Host::Test_2 }
As of now Nov 2025, GUI setting to set AtRiskThreshold is not available.