Share via


MonitoringConnector.AcknowledgeMonitoringAlertsForTiers Method

Definition

The monitoring connector acknowledges that it has successfully received monitoring alerts from the Microsoft.EnterpriseManagement.ConnectorFramework, for all tiered Management Groups.

Overloads

AcknowledgeMonitoringAlertsForTiers(ICollection<ConnectorMonitoringAlert>, IList<ConnectorTieredOperationFailure>)

Acknowledges all of the alerts by acknowledging the maximum timestamp among them, for each tier

AcknowledgeMonitoringAlertsForTiers(DateTime, IList<ConnectorTieredOperationFailure>)

Sets the bookmark to the given time, thus acknowledging alerts, on each tier.

AcknowledgeMonitoringAlertsForTiers(DateTime, ICollection<String>, IList<ConnectorTieredOperationFailure>)

Acknowledges alerts via a timestamp for all the tiers specified.

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. After acknowledging alerts, you get alerts that are updated after the bookmark time that you acknowledged with.

AcknowledgeMonitoringAlertsForTiers(ICollection<ConnectorMonitoringAlert>, IList<ConnectorTieredOperationFailure>)

Acknowledges all of the alerts by acknowledging the maximum timestamp among them, for each tier

public:
 void AcknowledgeMonitoringAlertsForTiers(System::Collections::Generic::ICollection<Microsoft::EnterpriseManagement::ConnectorFramework::ConnectorMonitoringAlert ^> ^ alerts, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Microsoft::EnterpriseManagement::ConnectorFramework::ConnectorTieredOperationFailure ^> ^ % failures);
public void AcknowledgeMonitoringAlertsForTiers (System.Collections.Generic.ICollection<Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorMonitoringAlert> alerts, out System.Collections.Generic.IList<Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure> failures);
member this.AcknowledgeMonitoringAlertsForTiers : System.Collections.Generic.ICollection<Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorMonitoringAlert> * IList -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (alerts As ICollection(Of ConnectorMonitoringAlert), ByRef failures As IList(Of ConnectorTieredOperationFailure))

Parameters

alerts
ICollection<ConnectorMonitoringAlert>

The alerts to acknowledge.

failures
IList<ConnectorTieredOperationFailure>

A list of failures that occured.

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.

This method acknowledges all of the alerts by acknowledging the maximum timestamp among them.

Applies to

AcknowledgeMonitoringAlertsForTiers(DateTime, IList<ConnectorTieredOperationFailure>)

Sets the bookmark to the given time, thus acknowledging alerts, on each tier.

public:
 void AcknowledgeMonitoringAlertsForTiers(DateTime utcBookmarkTime, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Microsoft::EnterpriseManagement::ConnectorFramework::ConnectorTieredOperationFailure ^> ^ % failures);
public void AcknowledgeMonitoringAlertsForTiers (DateTime utcBookmarkTime, out System.Collections.Generic.IList<Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure> failures);
member this.AcknowledgeMonitoringAlertsForTiers : DateTime * IList -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (utcBookmarkTime As DateTime, ByRef failures As IList(Of ConnectorTieredOperationFailure))

Parameters

utcBookmarkTime
DateTime

The bookmark to acknowledge up to.

failures
IList<ConnectorTieredOperationFailure>

A list of failures that occured.

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.

Applies to

AcknowledgeMonitoringAlertsForTiers(DateTime, ICollection<String>, IList<ConnectorTieredOperationFailure>)

Acknowledges alerts via a timestamp for all the tiers specified.

public:
 void AcknowledgeMonitoringAlertsForTiers(DateTime utcBookmarkTime, System::Collections::Generic::ICollection<System::String ^> ^ tieredManagementGroupNames, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Microsoft::EnterpriseManagement::ConnectorFramework::ConnectorTieredOperationFailure ^> ^ % failures);
public void AcknowledgeMonitoringAlertsForTiers (DateTime utcBookmarkTime, System.Collections.Generic.ICollection<string> tieredManagementGroupNames, out System.Collections.Generic.IList<Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorTieredOperationFailure> failures);
member this.AcknowledgeMonitoringAlertsForTiers : DateTime * System.Collections.Generic.ICollection<string> * IList -> unit
Public Sub AcknowledgeMonitoringAlertsForTiers (utcBookmarkTime As DateTime, tieredManagementGroupNames As ICollection(Of String), ByRef failures As IList(Of ConnectorTieredOperationFailure))

Parameters

utcBookmarkTime
DateTime

The bookmark to acknowledge up to.

tieredManagementGroupNames
ICollection<String>

The tiers to include. Add null to the collection to include the local management group.

failures
IList<ConnectorTieredOperationFailure>

A list of failures that occured.

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.

Applies to