MonitoringConnector.AcknowledgeMonitoringAlertsForTiers Method (DateTime, IList<ConnectorTieredOperationFailure>)
Applies To: Operations Manager for System Center 2012
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)
Syntax
public void AcknowledgeMonitoringAlertsForTiers(
DateTime utcBookmarkTime,
out IList<ConnectorTieredOperationFailure> failures
)
public:
void AcknowledgeMonitoringAlertsForTiers(
DateTime utcBookmarkTime,
[OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForTiers :
utcBookmarkTime:DateTime *
failures:IList<ConnectorTieredOperationFailure> byref -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (
utcBookmarkTime As Date,
<OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure)
)
Parameters
utcBookmarkTime
Type: System.DateTimeThe date and time value to which the bookmark is initially set.
failures
Type: System.Collections.Generic.IList<ConnectorTieredOperationFailure>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.
See Also
AcknowledgeMonitoringAlertsForTiers Overload
MonitoringConnector Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace
Return to top