PartialMonitoringObjectBase.GetMonitoringAlerts Method (MonitoringAlertCriteria, TraversalDepth, DateTime)
Applies To: Operations Manager for System Center 2012
Gets all the monitoring alert objects that are related to this monitoring object and that meet the specified criteria.
Namespace: Microsoft.EnterpriseManagement.Monitoring
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
public ReadOnlyCollection<MonitoringAlert> GetMonitoringAlerts(
MonitoringAlertCriteria criteria,
TraversalDepth traversalDepth,
DateTime lastModified
)
public:
ReadOnlyCollection<MonitoringAlert^>^ GetMonitoringAlerts(
MonitoringAlertCriteria^ criteria,
TraversalDepth traversalDepth,
DateTime lastModified
)
member GetMonitoringAlerts :
criteria:MonitoringAlertCriteria *
traversalDepth:TraversalDepth *
lastModified:DateTime -> ReadOnlyCollection<MonitoringAlert>
Public Function GetMonitoringAlerts (
criteria As MonitoringAlertCriteria,
traversalDepth As TraversalDepth,
lastModified As Date
) As ReadOnlyCollection(Of MonitoringAlert)
Parameters
criteria
Type: Microsoft.EnterpriseManagement.Monitoring.MonitoringAlertCriteriaThe criteria that filters the returned alerts. For information about the criteria syntax, see Operations Manager Data Queries Overview.
traversalDepth
Type: Microsoft.EnterpriseManagement.Common.TraversalDepthA value that specifies the scope of the returned results. A value of OneLevel includes only instances of the specified class in the scope of the returned results. A value of Recursive includes instances of the specified class and all instances that are contained by those instances.
lastModified
Type: System.DateTimeOnly alerts that have changed since this specified date and time are returned.
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<MonitoringAlert>
Returns a ReadOnlyCollection<T> of MonitoringAlert objects.
See Also
GetMonitoringAlerts Overload
PartialMonitoringObjectBase Class
Microsoft.EnterpriseManagement.Monitoring Namespace
Return to top