pub struct ChaosAnalytics { /* private fields */ }Expand description
Chaos analytics engine
Implementations§
Source§impl ChaosAnalytics
impl ChaosAnalytics
Sourcepub fn with_max_buckets(self, max: usize) -> Self
pub fn with_max_buckets(self, max: usize) -> Self
Set maximum buckets to retain
Sourcepub fn record_event(&self, event: &ChaosEvent, bucket_size: TimeBucket)
pub fn record_event(&self, event: &ChaosEvent, bucket_size: TimeBucket)
Record an event
Sourcepub fn get_metrics(
&self,
start: DateTime<Utc>,
end: DateTime<Utc>,
bucket_size: TimeBucket,
) -> Vec<MetricsBucket>
pub fn get_metrics( &self, start: DateTime<Utc>, end: DateTime<Utc>, bucket_size: TimeBucket, ) -> Vec<MetricsBucket>
Get metrics for a time range
Sourcepub fn get_impact_analysis(
&self,
start: DateTime<Utc>,
end: DateTime<Utc>,
bucket_size: TimeBucket,
) -> ChaosImpact
pub fn get_impact_analysis( &self, start: DateTime<Utc>, end: DateTime<Utc>, bucket_size: TimeBucket, ) -> ChaosImpact
Get chaos impact analysis
Sourcepub fn get_current_metrics(
&self,
minutes: i64,
bucket_size: TimeBucket,
) -> Vec<MetricsBucket>
pub fn get_current_metrics( &self, minutes: i64, bucket_size: TimeBucket, ) -> Vec<MetricsBucket>
Get current metrics (last N minutes)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChaosAnalytics
impl !RefUnwindSafe for ChaosAnalytics
impl Send for ChaosAnalytics
impl Sync for ChaosAnalytics
impl Unpin for ChaosAnalytics
impl !UnwindSafe for ChaosAnalytics
Blanket Implementations§
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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request