Package org.openstack4j.model.octavia
Interface LoadBalancerV2Stats
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
OctaviaLoadBalancerV2Stats
public interface LoadBalancerV2Stats extends ModelEntity
The statistics about an lbaas v2 loadbalancer- Author:
- wei
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetActiveConnections()LonggetBytesIn()LonggetBytesOut()IntegergetTotalConnections()
-
-
-
Method Detail
-
getBytesIn
Long getBytesIn()
- Returns:
- The inbound bytes of the loadbalancer.
-
getBytesOut
Long getBytesOut()
- Returns:
- The inbound bytes of the loadbalancer.
-
getTotalConnections
Integer getTotalConnections()
- Returns:
- The number of total connections of the loadbalancer.
-
getActiveConnections
Integer getActiveConnections()
- Returns:
- The number of active connections of the loadbalancer.
-
-