All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.octavia.LoadBalancerV2Stats Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.model.octavia;

import org.openstack4j.model.ModelEntity;

/**
 * The statistics about an lbaas v2 loadbalancer
 * @author wei
 */
public interface LoadBalancerV2Stats extends ModelEntity {
    /**
     *
     * @return The inbound bytes of the loadbalancer.
     */
    public Long getBytesIn();

    /**
     *
     * @return The inbound bytes of the loadbalancer.
     */
    public Long getBytesOut();

    /**
     *
     * @return The number of total connections of the loadbalancer.
     */
    public Integer getTotalConnections();

    /**
     *
     * @return The number of active connections of the loadbalancer.
     */
    public Integer getActiveConnections();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy