KCNA Cloud Native Observability Practice Question
Which TWO of the following are examples of context propagation mechanisms used in distributed tracing?
⚠ Common exam trap
CNCF often tests the distinction between static configuration mechanisms (like environment variables or shared filesystems) and dynamic, in-band propagation mechanisms (like HTTP headers and gRPC metadata) that travel with each request.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
HTTP headers
HTTP headers, such as the `traceparent` and `tracestate` headers defined in the W3C Trace Context specification, are the standard mechanism for propagating trace context across service boundaries in distributed tracing. When a service receives an incoming HTTP request, it extracts the trace ID and span ID from these headers to continue the same trace. This allows trace data to be correlated across multiple microservices as the request flows through the system.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
HTTP headers
Why this is correct
Headers like traceparent are used to propagate trace context across HTTP calls.
- ✗
Environment variables
Why it's wrong here
Environment variables are set at process start, not used for runtime propagation.
- ✗
Database queries
Why it's wrong here
Not a mechanism for context propagation.
- ✗
Shared filesystem
Why it's wrong here
Not a mechanism for propagating trace context.
- ✓
gRPC metadata
Why this is correct
Trace context can be propagated via gRPC metadata.
Go deeper
Related to this question
About these practice questions
One of 833 original KCNA practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more way this is tested on KCNA
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. What is context propagation in distributed tracing?
hard- A.Sampling traces to reduce data volume
- B.Visualizing traces in a user interface
- ✓ C.Carrying trace context (trace ID, span ID) across services
- D.Storing trace data in a centralized database
Why C: Context propagation carries trace context across service boundaries to connect spans into a single trace.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This KCNA practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the KCNA exam.