Enum sozu_command_lib::proxy::LoadMetric
source · pub enum LoadMetric {
Connections,
Requests,
ConnectionTime,
}
Expand description
how sozu measures which backend is less loaded
Variants§
Connections
number of TCP connections
Requests
number of active HTTP requests
ConnectionTime
time to connect to the backend, weighted by the number of active connections (peak EWMA)
Trait Implementations§
source§impl Clone for LoadMetric
impl Clone for LoadMetric
source§fn clone(&self) -> LoadMetric
fn clone(&self) -> LoadMetric
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LoadMetric
impl Debug for LoadMetric
source§impl<'de> Deserialize<'de> for LoadMetric
impl<'de> Deserialize<'de> for LoadMetric
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for LoadMetric
impl Hash for LoadMetric
source§impl Ord for LoadMetric
impl Ord for LoadMetric
source§fn cmp(&self, other: &LoadMetric) -> Ordering
fn cmp(&self, other: &LoadMetric) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<LoadMetric> for LoadMetric
impl PartialEq<LoadMetric> for LoadMetric
source§fn eq(&self, other: &LoadMetric) -> bool
fn eq(&self, other: &LoadMetric) -> bool
source§impl PartialOrd<LoadMetric> for LoadMetric
impl PartialOrd<LoadMetric> for LoadMetric
source§fn partial_cmp(&self, other: &LoadMetric) -> Option<Ordering>
fn partial_cmp(&self, other: &LoadMetric) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more