start adding tracing spans to internals (#478)
We've adopted `tracing` for diagnostics, but currently, it is just being used as a drop-in replacement for the `log` crate. Ideally, we would want to start emitting more structured diagnostics, using `tracing`'s `Span`s and structured key-value fields. A lot of the logging in `h2` is already written in a style that imitates the formatting of structured key-value logs, but as textual log messages. Migrating the logs to structured `tracing` events therefore is pretty easy to do. I've also started adding spans, mostly in the read path. Finally, I've updated the tests to use `tracing` rather than `env_logger`. The tracing setup happens in a macro, so that a span for each test with the test's name can be generated and entered. This will make the test output easier to read if multiple tests are run concurrently with `--nocapture`. Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
@@ -44,6 +44,9 @@ where
|
||||
/// Stream state handler
|
||||
streams: Streams<B, P>,
|
||||
|
||||
/// A `tracing` span tracking the lifetime of the connection.
|
||||
span: tracing::Span,
|
||||
|
||||
/// Client or server
|
||||
_phantom: PhantomData<P>,
|
||||
}
|
||||
@@ -100,6 +103,7 @@ where
|
||||
ping_pong: PingPong::new(),
|
||||
settings: Settings::new(config.settings),
|
||||
streams,
|
||||
span: tracing::debug_span!("Connection", peer = %P::NAME),
|
||||
_phantom: PhantomData,
|
||||
}
|
||||
}
|
||||
@@ -121,6 +125,9 @@ where
|
||||
/// Returns `RecvError` as this may raise errors that are caused by delayed
|
||||
/// processing of received frames.
|
||||
fn poll_ready(&mut self, cx: &mut Context) -> Poll<Result<(), RecvError>> {
|
||||
let _e = self.span.enter();
|
||||
let span = tracing::trace_span!("poll_ready");
|
||||
let _e = span.enter();
|
||||
// The order of these calls don't really matter too much
|
||||
ready!(self.ping_pong.send_pending_pong(cx, &mut self.codec))?;
|
||||
ready!(self.ping_pong.send_pending_ping(cx, &mut self.codec))?;
|
||||
@@ -200,9 +207,18 @@ where
|
||||
|
||||
/// Advances the internal state of the connection.
|
||||
pub fn poll(&mut self, cx: &mut Context) -> Poll<Result<(), proto::Error>> {
|
||||
// XXX(eliza): cloning the span is unfortunately necessary here in
|
||||
// order to placate the borrow checker — `self` is mutably borrowed by
|
||||
// `poll2`, which means that we can't borrow `self.span` to enter it.
|
||||
// The clone is just an atomic ref bump.
|
||||
let span = self.span.clone();
|
||||
let _e = span.enter();
|
||||
let span = tracing::trace_span!("poll");
|
||||
let _e = span.enter();
|
||||
use crate::codec::RecvError::*;
|
||||
|
||||
loop {
|
||||
tracing::trace!(connection.state = ?self.state);
|
||||
// TODO: probably clean up this glob of code
|
||||
match self.state {
|
||||
// When open, continue to poll a frame
|
||||
@@ -230,7 +246,7 @@ where
|
||||
// error. This is handled by setting a GOAWAY frame followed by
|
||||
// terminating the connection.
|
||||
Poll::Ready(Err(Connection(e))) => {
|
||||
tracing::debug!("Connection::poll; connection error={:?}", e);
|
||||
tracing::debug!(error = ?e, "Connection::poll; connection error");
|
||||
|
||||
// We may have already sent a GOAWAY for this error,
|
||||
// if so, don't send another, just flush and close up.
|
||||
@@ -250,7 +266,7 @@ where
|
||||
// This is handled by resetting the frame then trying to read
|
||||
// another frame.
|
||||
Poll::Ready(Err(Stream { id, reason })) => {
|
||||
tracing::trace!("stream error; id={:?}; reason={:?}", id, reason);
|
||||
tracing::trace!(?id, ?reason, "stream error");
|
||||
self.streams.send_reset(id, reason);
|
||||
}
|
||||
// Attempting to read a frame resulted in an I/O error. All
|
||||
@@ -258,7 +274,7 @@ where
|
||||
//
|
||||
// TODO: Are I/O errors recoverable?
|
||||
Poll::Ready(Err(Io(e))) => {
|
||||
tracing::debug!("Connection::poll; IO error={:?}", e);
|
||||
tracing::debug!(error = ?e, "Connection::poll; IO error");
|
||||
let e = e.into();
|
||||
|
||||
// Reset all active streams
|
||||
@@ -317,28 +333,28 @@ where
|
||||
|
||||
match ready!(Pin::new(&mut self.codec).poll_next(cx)?) {
|
||||
Some(Headers(frame)) => {
|
||||
tracing::trace!("recv HEADERS; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv HEADERS");
|
||||
self.streams.recv_headers(frame)?;
|
||||
}
|
||||
Some(Data(frame)) => {
|
||||
tracing::trace!("recv DATA; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv DATA");
|
||||
self.streams.recv_data(frame)?;
|
||||
}
|
||||
Some(Reset(frame)) => {
|
||||
tracing::trace!("recv RST_STREAM; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv RST_STREAM");
|
||||
self.streams.recv_reset(frame)?;
|
||||
}
|
||||
Some(PushPromise(frame)) => {
|
||||
tracing::trace!("recv PUSH_PROMISE; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv PUSH_PROMISE");
|
||||
self.streams.recv_push_promise(frame)?;
|
||||
}
|
||||
Some(Settings(frame)) => {
|
||||
tracing::trace!("recv SETTINGS; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv SETTINGS");
|
||||
self.settings
|
||||
.recv_settings(frame, &mut self.codec, &mut self.streams)?;
|
||||
}
|
||||
Some(GoAway(frame)) => {
|
||||
tracing::trace!("recv GOAWAY; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv GOAWAY");
|
||||
// This should prevent starting new streams,
|
||||
// but should allow continuing to process current streams
|
||||
// until they are all EOS. Once they are, State should
|
||||
@@ -347,7 +363,7 @@ where
|
||||
self.error = Some(frame.reason());
|
||||
}
|
||||
Some(Ping(frame)) => {
|
||||
tracing::trace!("recv PING; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv PING");
|
||||
let status = self.ping_pong.recv_ping(frame);
|
||||
if status.is_shutdown() {
|
||||
assert!(
|
||||
@@ -360,11 +376,11 @@ where
|
||||
}
|
||||
}
|
||||
Some(WindowUpdate(frame)) => {
|
||||
tracing::trace!("recv WINDOW_UPDATE; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv WINDOW_UPDATE");
|
||||
self.streams.recv_window_update(frame)?;
|
||||
}
|
||||
Some(Priority(frame)) => {
|
||||
tracing::trace!("recv PRIORITY; frame={:?}", frame);
|
||||
tracing::trace!(?frame, "recv PRIORITY");
|
||||
// TODO: handle
|
||||
}
|
||||
None => {
|
||||
|
||||
Reference in New Issue
Block a user