baggage property

Map<String, String> baggage
final

Key/value pairs to carry alongside the identifiers — a tenant, a feature-flag cohort.

Mutable, so a component early in the request can add to it and an outbound call later in the same request picks it up. It crosses the wire in outboundHeaders, so treat it as public to every service you call: no credentials, no personal data.

Implementation

final Map<String, String> baggage;