Skip to main content

PerFailureRunDsaSignal

Struct PerFailureRunDsaSignal 

Source
pub struct PerFailureRunDsaSignal {
Show 35 fields pub failure_run_index: usize, pub failure_timestamp: String, pub earliest_dsa_run: Option<usize>, pub earliest_primary_source: Option<String>, pub earliest_dsa_feature_index: Option<usize>, pub earliest_dsa_feature_name: Option<String>, pub dsa_lead_runs: Option<usize>, pub threshold_lead_runs: Option<usize>, pub ewma_lead_runs: Option<usize>, pub cusum_lead_runs: Option<usize>, pub run_energy_lead_runs: Option<usize>, pub pca_fdc_lead_runs: Option<usize>, pub dsa_minus_cusum_delta_runs: Option<i64>, pub dsa_minus_run_energy_delta_runs: Option<i64>, pub dsa_minus_pca_fdc_delta_runs: Option<i64>, pub dsa_minus_threshold_delta_runs: Option<i64>, pub dsa_minus_ewma_delta_runs: Option<i64>, pub dsa_alerting_feature_count: usize, pub max_dsa_score_in_lookback: Option<f64>, pub max_dsa_score_feature_index: Option<usize>, pub max_dsa_score_feature_name: Option<String>, pub max_dsa_score_run_index: Option<usize>, pub max_dsa_score_boundary_density_w: Option<f64>, pub max_dsa_score_drift_persistence_w: Option<f64>, pub max_dsa_score_slew_density_w: Option<f64>, pub max_dsa_score_ewma_occupancy_w: Option<f64>, pub max_dsa_score_motif_recurrence_w: Option<f64>, pub max_dsa_score_fragmentation_proxy_w: Option<f64>, pub max_dsa_score_consistent: Option<bool>, pub max_dsa_score_policy_state: Option<String>, pub max_dsa_score_resolved_alert_class: Option<String>, pub max_dsa_score_numeric_dsa_alert: Option<bool>, pub max_dsa_score_dsa_alert: Option<bool>, pub max_dsa_score_policy_suppressed: Option<bool>, pub max_dsa_score_rescue_transition: Option<String>,
}

Fields§

§failure_run_index: usize§failure_timestamp: String§earliest_dsa_run: Option<usize>§earliest_primary_source: Option<String>§earliest_dsa_feature_index: Option<usize>§earliest_dsa_feature_name: Option<String>§dsa_lead_runs: Option<usize>§threshold_lead_runs: Option<usize>§ewma_lead_runs: Option<usize>§cusum_lead_runs: Option<usize>§run_energy_lead_runs: Option<usize>§pca_fdc_lead_runs: Option<usize>§dsa_minus_cusum_delta_runs: Option<i64>§dsa_minus_run_energy_delta_runs: Option<i64>§dsa_minus_pca_fdc_delta_runs: Option<i64>§dsa_minus_threshold_delta_runs: Option<i64>§dsa_minus_ewma_delta_runs: Option<i64>§dsa_alerting_feature_count: usize§max_dsa_score_in_lookback: Option<f64>§max_dsa_score_feature_index: Option<usize>§max_dsa_score_feature_name: Option<String>§max_dsa_score_run_index: Option<usize>§max_dsa_score_boundary_density_w: Option<f64>§max_dsa_score_drift_persistence_w: Option<f64>§max_dsa_score_slew_density_w: Option<f64>§max_dsa_score_ewma_occupancy_w: Option<f64>§max_dsa_score_motif_recurrence_w: Option<f64>§max_dsa_score_fragmentation_proxy_w: Option<f64>§max_dsa_score_consistent: Option<bool>§max_dsa_score_policy_state: Option<String>§max_dsa_score_resolved_alert_class: Option<String>§max_dsa_score_numeric_dsa_alert: Option<bool>§max_dsa_score_dsa_alert: Option<bool>§max_dsa_score_policy_suppressed: Option<bool>§max_dsa_score_rescue_transition: Option<String>

Trait Implementations§

Source§

impl Clone for PerFailureRunDsaSignal

Source§

fn clone(&self) -> PerFailureRunDsaSignal

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PerFailureRunDsaSignal

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Serialize for PerFailureRunDsaSignal

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.