pub struct TimingReport {
pub dns_ms: u64,
pub tcp_ms: u64,
pub tls_ms: u64,
pub ttfb_ms: u64,
pub download_ms: u64,
pub total_ms: u64,
pub proxy_overhead_us: u64,
}Fields§
§dns_ms: u64§tcp_ms: u64§tls_ms: u64§ttfb_ms: u64§download_ms: u64§total_ms: u64§proxy_overhead_us: u64Latency Lobe’s own proxy added on top of the upstream round trip — request parsing plus writing the response back to the client — i.e. how much the proxy itself skews the total the client sees. The phase timings above are measured on the proxy→upstream connection and are unaffected by this. Sub-millisecond in practice, so stored in microseconds. 0 on the synthetic probe path and on failed requests.
Trait Implementations§
Source§impl Clone for TimingReport
impl Clone for TimingReport
Source§fn clone(&self) -> TimingReport
fn clone(&self) -> TimingReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TimingReport
impl Debug for TimingReport
Source§impl Default for TimingReport
impl Default for TimingReport
Source§fn default() -> TimingReport
fn default() -> TimingReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimingReport
impl<'de> Deserialize<'de> for TimingReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TimingReport
Source§impl PartialEq for TimingReport
impl PartialEq for TimingReport
Source§impl Serialize for TimingReport
impl Serialize for TimingReport
impl StructuralPartialEq for TimingReport
Auto Trait Implementations§
impl Freeze for TimingReport
impl RefUnwindSafe for TimingReport
impl Send for TimingReport
impl Sync for TimingReport
impl Unpin for TimingReport
impl UnsafeUnpin for TimingReport
impl UnwindSafe for TimingReport
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.