pub struct AutoScaler { /* private fields */ }Expand description
Auto-scaling manager
Implementations§
Source§impl AutoScaler
impl AutoScaler
Sourcepub fn new(policy: ScalingPolicy) -> Self
pub fn new(policy: ScalingPolicy) -> Self
Create new auto-scaler
Sourcepub fn add_metrics(&mut self, metrics: ScalingMetrics)
pub fn add_metrics(&mut self, metrics: ScalingMetrics)
Add metrics sample
Sourcepub fn make_scaling_decision(&self) -> Result<ScalingDecision, ScalingError>
pub fn make_scaling_decision(&self) -> Result<ScalingDecision, ScalingError>
Make scaling decision based on current metrics
Sourcepub async fn apply_scaling_decision(
&mut self,
decision: &ScalingDecision,
) -> Result<(), ScalingError>
pub async fn apply_scaling_decision( &mut self, decision: &ScalingDecision, ) -> Result<(), ScalingError>
Apply scaling decision
Sourcepub fn get_current_instances(&self) -> u32
pub fn get_current_instances(&self) -> u32
Get current instance count
Sourcepub fn get_policy(&self) -> &ScalingPolicy
pub fn get_policy(&self) -> &ScalingPolicy
Get scaling policy
Auto Trait Implementations§
impl Freeze for AutoScaler
impl RefUnwindSafe for AutoScaler
impl Send for AutoScaler
impl Sync for AutoScaler
impl Unpin for AutoScaler
impl UnwindSafe for AutoScaler
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more