|
pub struct AcceptInfo { |
|
/// How long the stream spent inside the dcQUIC acceptor before being enqueued for the |
|
/// application. |
|
pub dc_quic_accept_time: Duration, |
|
/// How long the stream spent enqueued for the application. |
|
pub app_queue_sojourn_time: Duration, |
|
} |
Currently we expose Durations but not an absolute timestamp, which makes it annoying to do cross-host investigations. We should capture and propagate an absolute timestamp (SystemTime, most likely).
s2n-quic/dc/s2n-quic-dc/src/stream/application.rs
Lines 33 to 39 in 4438384
Currently we expose Durations but not an absolute timestamp, which makes it annoying to do cross-host investigations. We should capture and propagate an absolute timestamp (SystemTime, most likely).