Quantcast
Channel: The Official System Center Data Protection Manager Team Blog
Viewing all articles
Browse latest Browse all 293

Automatically resolving alerts… such as resume ownership…

$
0
0

Alerts are not generated to be dismissed without evaluation and some resolve automatically but there are moments when automatic handling of alerts is appreciated. More often than not alerts are predictably handled the same anyway, namely using the “recommended action” link.

Some management activities are handled through the alert mechanism, like reclaiming ownership of agents after switch back from a prior switched protection. In this case, most likely you want to reclaim ownership of all protected servers and can be many.

By courtesy of Vinay Tibrewal from the DPM team the script below automatically takes the recommended action and resolves the active alert for all protected servers. The $alert.Servername property can be used to filter on machine names if desired.
This can also be seen as a sample framework to handle alerts from a script.  If further interested , the last part of the script retrieves and displays all possible alert types, currently there are some 64 alert types.

#begin script

$dpmServer = Connect-DPMServer -DPMServerName $dpmServerName $dpmServer.AlertController.RefreshAlerts()
$ownershipAlerts = @($dpmServer.AlertController.ActiveAlerts.Values | Where {$_.Type.ToString() -eq "AgentOwnershipRequiredAlert"} )

if ($ownershipAlerts){
  
foreach ($alert in $ownershipAlerts) {
       $alert.TakeRecommendedAction()
      
$alert.ResolveAlert()
  
}
}

$evals=[enum]::GetValues([microsoft.Internal.EnterpriseStorage.Dls.Utils.AlertTypes.AlertEnum])
write-host “Alert types are;”
$evals

#end script


Viewing all articles
Browse latest Browse all 293

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>