pub struct Run {
pub schema_version: u64,
pub metadata: RunMetadata,
pub requests: Vec<RequestEvent>,
pub stages: Vec<StageEvent>,
pub queues: Vec<QueueEvent>,
pub inflight: Vec<InFlightSnapshot>,
pub runtime_snapshots: Vec<RuntimeSnapshot>,
pub truncation: TruncationSummary,
}Expand description
A full output artifact for one tailtriage capture run.
Fields§
§schema_version: u64Run artifact schema version.
metadata: RunMetadataMetadata for the capture session.
requests: Vec<RequestEvent>Request timing events.
stages: Vec<StageEvent>Stage timing events.
queues: Vec<QueueEvent>Queue wait timing events.
inflight: Vec<InFlightSnapshot>In-flight gauge changes over time.
runtime_snapshots: Vec<RuntimeSnapshot>Tokio runtime metrics snapshots.
truncation: TruncationSummaryCapture truncation summary for bounded collection.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Run
impl<'de> Deserialize<'de> for Run
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 Run
impl StructuralPartialEq for Run
Auto Trait Implementations§
impl Freeze for Run
impl RefUnwindSafe for Run
impl Send for Run
impl Sync for Run
impl Unpin for Run
impl UnsafeUnpin for Run
impl UnwindSafe for Run
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