Struct console_api::PollStats
source · pub struct PollStats {
pub polls: u64,
pub first_poll: Option<Timestamp>,
pub last_poll_started: Option<Timestamp>,
pub last_poll_ended: Option<Timestamp>,
pub busy_time: Option<Duration>,
}
Expand description
Contains stats about objects that can be polled. Currently these can be:
- tasks that have been spawned
- async operations on resources that are performed within the context of a task
Fields§
§polls: u64
The total number of times this object has been polled.
first_poll: Option<Timestamp>
The timestamp of the first time this object was polled.
If this is None
, the object has not yet been polled.
Subtracting this timestamp from created_at
can be used to calculate the
time to first poll for this object, a measurement of executor latency.
last_poll_started: Option<Timestamp>
The timestamp of the most recent time this objects’s poll method was invoked.
If this is None
, the object has not yet been polled.
If the object has only been polled a single time, then this value may be
equal to the first_poll
timestamp.
last_poll_ended: Option<Timestamp>
The timestamp of the most recent time this objects’s poll method finished execution.
If this is None
, the object has not yet been polled or is currently being polled.
If the object does not exist anymore, then this is the time the final invocation of its poll method has completed.
busy_time: Option<Duration>
The total duration this object was being actively polled, summed across all polls.
Note that this includes only polls that have completed, and does not
reflect any in-progress polls. Subtracting busy_time
from the
total lifetime of the polled object results in the amount of time it
has spent waiting to be polled (including the scheduled_time
value
from TaskStats
, if this is a task).
Trait Implementations§
source§impl Message for PollStats
impl Message for PollStats
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.impl Copy for PollStats
impl StructuralPartialEq for PollStats
Auto Trait Implementations§
impl Freeze for PollStats
impl RefUnwindSafe for PollStats
impl Send for PollStats
impl Sync for PollStats
impl Unpin for PollStats
impl UnwindSafe for PollStats
Blanket Implementations§
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request