Compartilhar via


ConnectorFrameworkProxy.AcknowledgeMonitoringAlertsForTiers Method (Guid, DateTime, ConnectorTieredOperationFailure[])

 

Applies To: Operations Manager for System Center 2012

The monitoring connector acknowledges that it has successfully received monitoring alerts from the ConnectorFrameworkProxy for all tiered Management Groups. It acknowledges alerts that occur until the given bookmark time. 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(
    Guid connectorId,
    DateTime utcBookmarkTime,
    out ConnectorTieredOperationFailure[] failures
)
public:
void AcknowledgeMonitoringAlertsForTiers(
    Guid connectorId,
    DateTime utcBookmarkTime,
    [OutAttribute] array<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForTiers : 
        connectorId:Guid *
        utcBookmarkTime:DateTime *
        failures:ConnectorTieredOperationFailure[] byref -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (
    connectorId As Guid,
    utcBookmarkTime As Date,
    <OutAttribute> ByRef failures As ConnectorTieredOperationFailure()
)

Parameters

  • connectorId
    Type: System.Guid

    A globally unique identifier (GUID) for the monitoring connector.

Remarks

The monitoring connector must acknowledge that alerts have been received. Failure to acknowledge an alert will result in subsequent calls to GetMonitoringAlerts returning alerts that have already been returned.

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

Use server time rather than the current client time for the bookmark time. Choose the maximum time of the alerts you are acknowledging. Use the maximum value of the LastModified property to ensure no data loss.

See Also

ConnectorFrameworkProxy Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace

Return to top