The monitoring connector acknowledges that it has successfully received monitoring alerts from the Microsoft.EnterpriseManagement.ConnectorFramework, for all tiered Management Groups. It acknowledges alerts up until the given bookmark. The failures that occurred for the configured tiers are returned. Namespace: Microsoft.EnterpriseManagement.ConnectorFramework
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As MonitoringConnector
Dim utcBookmarkTime As DateTime
Dim failures As IList(Of ConnectorTieredOperationFailure)

instance.AcknowledgeMonitoringAlertsForTiers(utcBookmarkTime, failures)

Syntax

Visual Basic
Public Sub AcknowledgeMonitoringAlertsForTiers ( _
		utcBookmarkTime As DateTime, _
		<OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure) _
)
C#
public void AcknowledgeMonitoringAlertsForTiers (
		DateTime utcBookmarkTime,
		out IList<ConnectorTieredOperationFailure> failures
)
C++
public:
void AcknowledgeMonitoringAlertsForTiers (
		DateTime utcBookmarkTime, 
		[OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
J#
public void AcknowledgeMonitoringAlertsForTiers (
		DateTime utcBookmarkTime, 
		/** @attribute OutAttribute() */ /** @ref */ IList<ConnectorTieredOperationFailure> failures
)
JScript

Parameters

utcBookmarkTime

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

failures

The array of failures that may have occurred for various tiers

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.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also