1 / 5
Fill in: 'We ___ a correlation ID at the edge so every downstream log line can be tied back to one request.'
-
-
-
-
We 'generate' a correlation ID — the standard collocation for creating a unique request identifier. The other options aren't idiomatic here.
2 / 5
Fill in: 'We ___ the correlation ID into every log statement across the service.'
-
-
-
-
We 'stamp' the ID into logs — the standard collocation for embedding it consistently. The other options are less idiomatic here.
3 / 5
Fill in: 'A service that fails to ___ the ID breaks the trail for anyone debugging the request.'
-
-
-
-
We 'forward' the ID — the standard collocation for passing it on to the next hop. The other options are less idiomatic here.
4 / 5
Fill in: 'We ___ logs by correlation ID to reconstruct the full path of a failed request.'
-
-
-
-
We 'filter' logs — the standard collocation for narrowing results to one identifier. The other options aren't idiomatic here.
5 / 5
Fill in: 'We ___ correlation IDs across async boundaries like queues, not just synchronous calls.'
-
-
-
-
We 'preserve' IDs — the standard collocation for making sure context survives a hand-off. The other options are less idiomatic here.