hmscott4 / AlertManagement

Manage SCOM Alerts
2 stars 3 forks source link

Include sample exceptions in the config file which are disabled #41

Closed hmscott4 closed 3 years ago

hmscott4 commented 3 years ago

I'd like to have a few sample entries in the config file for admins to see. Set the enabled property to false. Examples:

    <exception ID="1" Name="Server Offline" Owner="EFG Windows Team" enabled="false">
      <Alert Name="Health Service Heartbeat Failure" >
        <AlertProperty>MonitoringObjectDisplayName</AlertProperty>
        <AlertPropertyMatches>efg\.lcl</AlertPropertyMatches>
      </Alert>
    </exception>
    <exception ID="2" Name="Server Offline" Owner="EFG Windows Team" enabled="false">
      <Alert Name="Failed to Connect to Computer" >
        <AlertProperty>MonitoringObjectDisplayName</AlertProperty>
        <AlertPropertyMatches>efg\.lcl</AlertPropertyMatches>
      </Alert>
    </exception>
    <exception ID="3" Name="Server Offline" Owner="Windows Team" enabled="false">
      <Alert Name="Health Service Heartbeat Failure" />
    </exception>
    <exception ID="4" Name="Failed to Connect to Computer" Owner="Windows Team" enabled="false">
      <Alert Name="Failed to Connect to Computer" />
    </exception>
hmscott4 commented 3 years ago

Addressed