1. What does distributed TRACING add to observability of an event-driven pipeline built on Kafka?
- A. End-to-end visibility of how a message flows and is transformed across producers, topics, and consumers, revealing latency and bottlenecks✓ Correct
- B. It stores the messages permanently
- C. It replaces the need for metrics and logs
- D. It changes the topic's replication factor
Explanation
Distributed tracing follows a message/transaction across services and Kafka hops, exposing where latency accrues and where failures occur end-to-end. It doesn't store messages (B), replace metrics/logs (C) — the three are complementary — or alter replication (D).