Class LoadBalancerStats

java.lang.Object
org.jclouds.rackspace.cloudloadbalancers.v1.domain.LoadBalancerStats

public final class LoadBalancerStats extends Object
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    LoadBalancerStats(int connectTimeOut, int connectError, int connectFailure, int dataTimedOut, int keepAliveTimedOut, int maxConn)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Number of transaction or protocol errors in this load balancer.
    int
    Number of connection failures in this load balancer.
    int
    Connections closed by this load balancer because the 'connect_timeout' interval was exceeded.
    int
    Connections closed by this load balancer because the 'timeout' interval was exceeded.
    int
    Connections closed by this load balancer because the 'keepalive_timeout' interval was exceeded.
    int
    Maximum number of simultaneous TCP connections this load balancer has processed at any one time.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • LoadBalancerStats

      @ConstructorProperties({"connectTimeOut","connectError","connectFailure","dataTimedOut","keepAliveTimedOut","maxConn"}) protected LoadBalancerStats(int connectTimeOut, int connectError, int connectFailure, int dataTimedOut, int keepAliveTimedOut, int maxConn)
  • Method Details

    • getConnectTimeOut

      public int getConnectTimeOut()
      Connections closed by this load balancer because the 'connect_timeout' interval was exceeded.
    • getConnectError

      public int getConnectError()
      Number of transaction or protocol errors in this load balancer.
    • getConnectFailure

      public int getConnectFailure()
      Number of connection failures in this load balancer.
    • getDataTimedOut

      public int getDataTimedOut()
      Connections closed by this load balancer because the 'timeout' interval was exceeded.
    • getKeepAliveTimedOut

      public int getKeepAliveTimedOut()
      Connections closed by this load balancer because the 'keepalive_timeout' interval was exceeded.
    • getMaxConn

      public int getMaxConn()
      Maximum number of simultaneous TCP connections this load balancer has processed at any one time.
    • toString

      public String toString()
      Overrides:
      toString in class Object