The monitoring connector acknowledges that it has successfully received monitoring alerts from the ConnectorFrameworkProxy for the specific 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)

Usage

Visual Basic
Dim instance As ConnectorFrameworkProxy
Dim connectorId As Guid
Dim utcBookmarkTime As DateTime
Dim tieredManagementGroupNames As String()
Dim failures As ConnectorTieredOperationFailure()

instance.AcknowledgeMonitoringAlertsForSpecificTiers(connectorId, utcBookmarkTime, tieredManagementGroupNames, failures)

Syntax

Visual Basic
Public Sub AcknowledgeMonitoringAlertsForSpecificTiers ( _
		connectorId As Guid, _
		utcBookmarkTime As DateTime, _
		tieredManagementGroupNames As String(), _
		<OutAttribute> ByRef failures As ConnectorTieredOperationFailure() _
)
C#
public void AcknowledgeMonitoringAlertsForSpecificTiers (
		Guid connectorId,
		DateTime utcBookmarkTime,
		string[] tieredManagementGroupNames,
		out ConnectorTieredOperationFailure[] failures
)
C++
public:
void AcknowledgeMonitoringAlertsForSpecificTiers (
		Guid connectorId, 
		DateTime utcBookmarkTime, 
		array<String^>^ tieredManagementGroupNames, 
		[OutAttribute] array<ConnectorTieredOperationFailure^>^% failures
)
J#
public void AcknowledgeMonitoringAlertsForSpecificTiers (
		Guid connectorId, 
		DateTime utcBookmarkTime, 
		String[] tieredManagementGroupNames, 
		/** @attribute OutAttribute() */ /** @ref */ ConnectorTieredOperationFailure[] failures
)
JScript

Parameters

connectorId

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

utcBookmarkTime

A timestamp bookmark.

tieredManagementGroupNames

An array of names for tiered Management Groups to acknowledge alerts for.

failures

The array of failures that may have occurred for specified tiered monitoring groups.

Remarks

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

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.


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