Struct sozu_lib::network::SessionMetrics[][src]

pub struct SessionMetrics {
    pub start: Option<SteadyTime>,
    pub service_time: Duration,
    pub bin: usize,
    pub bout: usize,
    pub service_start: Option<SteadyTime>,
    pub backend_id: Option<String>,
    pub backend_start: Option<SteadyTime>,
    pub backend_stop: Option<SteadyTime>,
    pub backend_bin: usize,
    pub backend_bout: usize,
}

Fields

date at which we started handling that request

time actually spent handling the request

bytes received by the frontend

bytes sent by the frontend

date at which we started working on the request

Methods

impl SessionMetrics
[src]

Trait Implementations

impl Clone for SessionMetrics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SessionMetrics
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations