MonitoringConnector.AcknowledgeMonitoringAlertsForTiers Method (DateTime, ICollection<String>, 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, that occurred prior to the specified bookmark. 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(
    DateTime utcBookmarkTime,
    ICollection<string> tieredManagementGroupNames,
    out IList<ConnectorTieredOperationFailure> failures
)
public:
void AcknowledgeMonitoringAlertsForTiers(
    DateTime utcBookmarkTime,
    ICollection<String^>^ tieredManagementGroupNames,
    [OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForTiers : 
        utcBookmarkTime:DateTime *
        tieredManagementGroupNames:ICollection<string> *
        failures:IList<ConnectorTieredOperationFailure> byref -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (
    utcBookmarkTime As Date,
    tieredManagementGroupNames As ICollection(Of String),
    <OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure)
)

Parameters

  • utcBookmarkTime
    Type: System.DateTime

    The date and time value to which the bookmark is initially set.

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.

All the alerts prior to the time specified by the bookmark are acknowledged.

See Also

AcknowledgeMonitoringAlertsForTiers Overload
MonitoringConnector Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace

Return to top