A rare multi-agent failure occurred once in production. Engineers cannot reproduce it from logs that only store final answers. Which observability capability is most important to add?
Select an answer to reveal the explanation.
Short Explanation
A matches observability components in the architect/evaluate space: structured logging of agent reasoning paths, agent replay capture, and cross-service trace correlation for reproducible debugging. Final-answer-only logs are insufficient for multi-agent forensics. B OS syslog alone lacks agent semantics. C rewriting everything is not observability. D removing correlation IDs makes stitching worse. Capture enough prompt/tool/state detail—safely—to replay the rare path.
Full Explanation
Correct Answer — A
Observability for multi-agent systems includes cross-service trace correlation, structured logging of reasoning paths, and agent replay capture for reproducible debugging of rare production failures.
Why B is wrong: OS syslog without agent structure cannot reconstruct multi-agent decisions.
Why C is wrong: Replacing models is not an observability fix.
Why D is wrong: Correlation IDs are essential for multi-hop traces.
Exam tip: Replay + reasoning logs turn one-off failures into actionable bugs.