[][src]Struct goose::metrics::GooseTaskMetric

pub struct GooseTaskMetric {
    pub taskset_index: usize,
    pub taskset_name: String,
    pub task_index: usize,
    pub task_name: String,
    pub times: BTreeMap<usize, usize>,
    pub min_time: usize,
    pub max_time: usize,
    pub total_time: usize,
    pub counter: usize,
    pub success_count: usize,
    pub fail_count: usize,
}

Fields

taskset_index: usize

An index into GooseAttack.task_sets, indicating which task set this is.

taskset_name: String

The task set name.

task_index: usize

An index into GooseTaskSet.task, indicating which task this is.

task_name: String

An optional name for the task.

times: BTreeMap<usize, usize>

Per-run-time counters, tracking how often tasks take a given time to complete.

min_time: usize

The shortest run-time for this task.

max_time: usize

The longest run-time for this task.

total_time: usize

Total combined run-times for this task.

counter: usize

Total number of times task has run.

success_count: usize

Total number of times task has run successfully.

fail_count: usize

Total number of times task has failed.

Implementations

impl GooseTaskMetric[src]

pub fn new(
    taskset_index: usize,
    taskset_name: &str,
    task_index: usize,
    task_name: &str
) -> Self
[src]

pub fn set_time(&mut self, time: u64, success: bool)[src]

Trait Implementations

impl Clone for GooseTaskMetric[src]

impl Debug for GooseTaskMetric[src]

impl<'de> Deserialize<'de> for GooseTaskMetric[src]

impl Eq for GooseTaskMetric[src]

impl PartialEq<GooseTaskMetric> for GooseTaskMetric[src]

impl Serialize for GooseTaskMetric[src]

impl StructuralEq for GooseTaskMetric[src]

impl StructuralPartialEq for GooseTaskMetric[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,