MonitoringConnector.AcknowledgeMonitoringAlertsForTiers Method (DateTime, ICollection<String>, IList<ConnectorTieredOperationFailure>)
Applies To: Operations Manager for System Center 2012
The monitoring connector acknowledges that it has successfully received monitoring alerts from a collection of alerts, from all tiers, that occurred prior to the specified 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,
ICollection<string> tieredManagementGroupNames,
out IList<ConnectorTieredOperationFailure> failures
)
public:
void AcknowledgeMonitoringAlertsForTiers(
DateTime utcBookmarkTime,
ICollection<String^>^ tieredManagementGroupNames,
[OutAttribute] IList<ConnectorTieredOperationFailure^>^% failures
)
member AcknowledgeMonitoringAlertsForTiers :
utcBookmarkTime:DateTime *
tieredManagementGroupNames:ICollection<string> *
failures:IList<ConnectorTieredOperationFailure> byref -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (
utcBookmarkTime As Date,
tieredManagementGroupNames As ICollection(Of String),
<OutAttribute> ByRef failures As IList(Of ConnectorTieredOperationFailure)
)
Parameters
utcBookmarkTime
Type: System.DateTimeThe date and time value to which the bookmark is initially set.
tieredManagementGroupNames
Type: System.Collections.Generic.ICollection<String>A collection of tiered Management Group names. Alerts for the tiered Management Groups will be acknowledged.
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.
All the alerts prior to the time specified by the bookmark are acknowledged.
See Also
AcknowledgeMonitoringAlertsForTiers Overload
MonitoringConnector Class
Microsoft.EnterpriseManagement.ConnectorFramework Namespace
Return to top