Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)
Usage
Visual Basic |
---|
Dim instance As ConnectorFrameworkProxy Dim connectorId As Guid Dim returnValue As ConnectorMonitoringAlert() returnValue = instance.GetMonitoringAlerts(connectorId) |
Syntax
Visual Basic |
---|
Public Function GetMonitoringAlerts ( _ connectorId As Guid _ ) As ConnectorMonitoringAlert() |
C# |
---|
public ConnectorMonitoringAlert[] GetMonitoringAlerts ( Guid connectorId ) |
C++ |
---|
public: array<ConnectorMonitoringAlert^>^ GetMonitoringAlerts ( Guid connectorId ) |
J# |
---|
public ConnectorMonitoringAlert[] GetMonitoringAlerts ( Guid connectorId ) |
JScript |
---|
public function GetMonitoringAlerts ( connectorId : Guid ) : ConnectorMonitoringAlert[] |
Parameters
- connectorId
-
The globally unique identifier (GUID) for the monitoring connector to get alerts for.
Return Value
An array of ConnectorMonitoringAlert objects that contain the alerts for the specified monitoring connector.Example
See GetMonitoringAlertHistoryByAlertIds for an example of the GetMonitoringAlerts method.
Remarks
To get a ConnectorMonitoringAlert array collection through a MonitoringConnector:
-
The monitoring connector must be set up.
-
The monitoring connector must be initialized.
-
Alerts must be present.
-
Alerts must be marked for the monitoring connector.
This method gets all alerts assigned to a specific monitoring connector.
This method gets alerts only from the current bookmark date to the current time less 30 seconds.
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.