Skip to main content

FlowMetrics

Struct FlowMetrics 

Source
pub struct FlowMetrics {
Show 20 fields pub window: TimeWindow, pub completed_count: usize, pub eligible_completed_count: usize, pub observed_completed_count: usize, pub valid_completed_count: usize, pub arrival_count: usize, pub wip: usize, pub blocked_wip: usize, pub throughput_per_day: f64, pub arrival_rate_per_day: f64, pub queue_growth_per_day: f64, pub lead_time_hours: DistributionSummary, pub cycle_time_hours: DistributionSummary, pub active_time_hours: DistributionSummary, pub blocked_time_hours: DistributionSummary, pub review_wait_hours: DistributionSummary, pub deployment_wait_hours: DistributionSummary, pub flow_efficiency: Option<f64>, pub sample_count: usize, pub coverage: EvidenceCoverage,
}

Fields§

§window: TimeWindow§completed_count: usize§eligible_completed_count: usize§observed_completed_count: usize§valid_completed_count: usize§arrival_count: usize§wip: usize§blocked_wip: usize§throughput_per_day: f64§arrival_rate_per_day: f64§queue_growth_per_day: f64§lead_time_hours: DistributionSummary§cycle_time_hours: DistributionSummary§active_time_hours: DistributionSummary§blocked_time_hours: DistributionSummary§review_wait_hours: DistributionSummary§deployment_wait_hours: DistributionSummary§flow_efficiency: Option<f64>§sample_count: usize§coverage: EvidenceCoverage

Implementations§

Source§

impl FlowMetrics

Source

pub const SCHEMA_V1: &'static str = "xbp.analytics.flow/v1"

Source

pub const SCHEMA_V2: &'static str = "xbp.analytics.flow/v2"

Source

pub fn from_samples( window: TimeWindow, completed_count: usize, arrival_count: usize, wip: usize, samples: FlowSamples<'_>, ) -> Result<Self, AnalyticsError>

Source

pub fn from_samples_with_coverage( window: TimeWindow, eligible_completed_count: usize, observed_completed_count: usize, valid_completed_count: usize, arrival_count: usize, wip: usize, blocked_wip: usize, samples: FlowSamples<'_>, ) -> Result<Self, AnalyticsError>

Source§

impl FlowMetrics

Source

pub fn to_v1(&self) -> FlowMetricsV1

Source§

impl FlowMetrics

Source

pub fn from_events( events: &[DeliveryEvent], window: TimeWindow, ) -> Result<Self, String>

Trait Implementations§

Source§

impl Clone for FlowMetrics

Source§

fn clone(&self) -> FlowMetrics

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for FlowMetrics

Source§

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

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

impl PartialEq for FlowMetrics

Source§

fn eq(&self, other: &FlowMetrics) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for FlowMetrics

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
Source§

impl StructuralPartialEq for FlowMetrics

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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 = !

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

fn try_from(value: U) -> Result<T, !>

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.