ConnectorFrameworkProxy.AcknowledgeMonitoringAlertsForSpecificTiers Method (Guid, DateTime, String[], ConnectorTieredOperationFailure[])
Applies To: Operations Manager for System Center 2012
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)
Syntax
public void AcknowledgeMonitoringAlertsForSpecificTiers(
Guid connectorId,
DateTime utcBookmarkTime,
string[] tieredManagementGroupNames,
out ConnectorTieredOperationFailure[] failures
)
public:
void AcknowledgeMonitoringAlertsForSpecificTiers(
Guid connectorId,
DateTime utcBookmarkTime,
array<String^>^ tieredManagementGroupNames,
[OutAttribute] array<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForSpecificTiers :
connectorId:Guid *
utcBookmarkTime:DateTime *
tieredManagementGroupNames:string[] *
failures:ConnectorTieredOperationFailure[] byref -> unit
Public Sub AcknowledgeMonitoringAlertsForSpecificTiers (
connectorId As Guid,
utcBookmarkTime As Date,
tieredManagementGroupNames As String(),
<OutAttribute> ByRef failures As ConnectorTieredOperationFailure()
)
Parameters
connectorId
Type: System.GuidA globally unique identifier (GUID) for the monitoring connector.
utcBookmarkTime
Type: System.DateTimeA timestamp bookmark.
tieredManagementGroupNames
Type: System.String[]An array of names for tiered Management Groups to acknowledge alerts for.
failures
Type: Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure[]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.
See Also
ConnectorFrameworkProxy Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace
Return to top