diff --git a/.changelog/10689.txt b/.changelog/10689.txt new file mode 100644 index 000000000..65a460615 --- /dev/null +++ b/.changelog/10689.txt @@ -0,0 +1,3 @@ +```release-note:improvement +proxycfg: log correlation IDs for the proxy configuration snapshot's blocking queries. +``` diff --git a/agent/proxycfg/state.go b/agent/proxycfg/state.go index 573faaef5..d393a5844 100644 --- a/agent/proxycfg/state.go +++ b/agent/proxycfg/state.go @@ -277,7 +277,7 @@ func (s *state) run(ctx context.Context, snap *ConfigSnapshot) { case <-ctx.Done(): return case u := <-s.ch: - s.logger.Trace("A blocking query returned; handling snapshot update") + s.logger.Trace("A blocking query returned; handling snapshot update", "correlationID", u.CorrelationID) if err := s.handler.handleUpdate(ctx, u, snap); err != nil { s.logger.Error("Failed to handle update from watch",