pub struct SystemStats {
pub history_event_count: u64,
pub history_size_bytes: u64,
pub queue_pending_count: u64,
pub kv_user_key_count: u64,
pub kv_total_value_bytes: u64,
}Expand description
Runtime introspection stats, available via Client::get_orchestration_stats.
Fields§
§history_event_count: u64Total events in history for the current execution.
history_size_bytes: u64Approximate serialized size of the full history in bytes.
queue_pending_count: u64Number of unprocessed queue messages carried forward from the previous execution.
kv_user_key_count: u64Number of KV keys.
kv_total_value_bytes: u64Sum of all KV value sizes in bytes.
Trait Implementations§
Source§impl Clone for SystemStats
impl Clone for SystemStats
Source§fn clone(&self) -> SystemStats
fn clone(&self) -> SystemStats
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 SystemStats
impl Debug for SystemStats
Source§impl<'de> Deserialize<'de> for SystemStats
impl<'de> Deserialize<'de> for SystemStats
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
Source§impl PartialEq for SystemStats
impl PartialEq for SystemStats
Source§fn eq(&self, other: &SystemStats) -> bool
fn eq(&self, other: &SystemStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SystemStats
impl Serialize for SystemStats
impl StructuralPartialEq for SystemStats
Auto Trait Implementations§
impl Freeze for SystemStats
impl RefUnwindSafe for SystemStats
impl Send for SystemStats
impl Sync for SystemStats
impl Unpin for SystemStats
impl UnsafeUnpin for SystemStats
impl UnwindSafe for SystemStats
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
Mutably borrows from an owned value. Read more