Package org.opennms.netmgt.model
Interface SurveillanceStatus
-
- All Known Implementing Classes:
AggregateStatus
,NodeDaoHibernate.SimpleSurveillanceStatus
public interface SurveillanceStatus
SurveillanceStatus- Author:
- brozow
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Integer
getDownEntityCount()
The number of nodes that do not have at least one service upString
getStatus()
A string presenting the status of the associated set of nodes Possible values are: 'Normal' representing that there are no ouages for active services on the set of associated nodes 'Warning' representing exactly one service from set of all active services on the associated nodes has an outage 'Critical' representing that more than one service on the from the set of all active services on the assocuate nodes has an outageInteger
getTotalEntityCount()
The total number of nodes represented by this status
-
-
-
Method Detail
-
getDownEntityCount
Integer getDownEntityCount()
The number of nodes that do not have at least one service up
-
getTotalEntityCount
Integer getTotalEntityCount()
The total number of nodes represented by this status
-
getStatus
String getStatus()
A string presenting the status of the associated set of nodes Possible values are:- 'Normal' representing that there are no ouages for active services on the set of associated nodes
- 'Warning' representing exactly one service from set of all active services on the associated nodes has an outage
- 'Critical' representing that more than one service on the from the set of all active services on the assocuate nodes has an outage
-
-