Share via


MonitoringConnector.AcknowledgeMonitoringAlertsForTiers Method (ICollection<ConnectorMonitoringAlert>, IList<ConnectorTieredOperationFailure>)

 

Applies To: Operations Manager for System Center 2012

The monitoring connector acknowledges that it has successfully received monitoring alerts from a collection of alerts, from all tiers. The failures that occurred for the configured tiers are returned.

Namespace:   Microsoft.EnterpriseManagement.ConnectorFramework
Assembly:  Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)

Syntax

public void AcknowledgeMonitoringAlertsForTiers(
    ICollection<ConnectorMonitoringAlert> alerts,
    out IList<ConnectorTieredOperationFailure> failures
)
public:
void AcknowledgeMonitoringAlertsForTiers(
    ICollection<ConnectorMonitoringAlert^>^ alerts,
    [OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForTiers : 
        alerts:ICollection<ConnectorMonitoringAlert> *
        failures:IList<ConnectorTieredOperationFailure> byref -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (
    alerts As ICollection(Of ConnectorMonitoringAlert),
    <OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure)
)

Parameters

Remarks

The monitoring connector must acknowledge that alerts have been received. Failure to acknowledge an alert will result in subsequent calls to MonitoringConnector returning previously returned alerts until its successful transmission is acknowledged by the monitoring connector.

After acknowledging alerts, you get alerts that are updated after the bookmark time that you acknowledged with.

This method acknowledges all of the alerts by acknowledging the maximum timestamp among them.

See Also

AcknowledgeMonitoringAlertsForTiers Overload
MonitoringConnector Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace

Return to top