2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
package propagation // import "go.opentelemetry.io/otel/propagation"
|
2020-02-20 20:31:21 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-06-08 17:06:37 +02:00
|
|
|
"go.opentelemetry.io/otel/baggage"
|
2020-02-20 20:31:21 +02:00
|
|
|
)
|
|
|
|
|
2020-10-20 19:51:17 +02:00
|
|
|
const baggageHeader = "baggage"
|
2020-02-20 20:31:21 +02:00
|
|
|
|
2020-10-05 17:25:09 +02:00
|
|
|
// Baggage is a propagator that supports the W3C Baggage format.
|
|
|
|
//
|
|
|
|
// This propagates user-defined baggage associated with a trace. The complete
|
|
|
|
// specification is defined at https://w3c.github.io/baggage/.
|
2020-09-09 20:13:37 +02:00
|
|
|
type Baggage struct{}
|
2020-02-20 20:31:21 +02:00
|
|
|
|
2020-11-13 17:34:24 +02:00
|
|
|
var _ TextMapPropagator = Baggage{}
|
2020-02-20 20:31:21 +02:00
|
|
|
|
2020-10-05 17:25:09 +02:00
|
|
|
// Inject sets baggage key-values from ctx into the carrier.
|
2020-11-13 17:34:24 +02:00
|
|
|
func (b Baggage) Inject(ctx context.Context, carrier TextMapCarrier) {
|
2021-06-08 17:06:37 +02:00
|
|
|
bStr := baggage.FromContext(ctx).String()
|
|
|
|
if bStr != "" {
|
|
|
|
carrier.Set(baggageHeader, bStr)
|
2020-02-20 20:31:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 17:25:09 +02:00
|
|
|
// Extract returns a copy of parent with the baggage from the carrier added.
|
2020-11-13 17:34:24 +02:00
|
|
|
func (b Baggage) Extract(parent context.Context, carrier TextMapCarrier) context.Context {
|
2021-06-08 17:06:37 +02:00
|
|
|
bStr := carrier.Get(baggageHeader)
|
|
|
|
if bStr == "" {
|
2020-10-05 17:25:09 +02:00
|
|
|
return parent
|
2020-02-20 20:31:21 +02:00
|
|
|
}
|
|
|
|
|
2021-06-08 17:06:37 +02:00
|
|
|
bag, err := baggage.Parse(bStr)
|
|
|
|
if err != nil {
|
|
|
|
return parent
|
2020-07-09 21:02:49 +02:00
|
|
|
}
|
2021-06-08 17:06:37 +02:00
|
|
|
return baggage.ContextWithBaggage(parent, bag)
|
2020-02-20 20:31:21 +02:00
|
|
|
}
|
|
|
|
|
2020-10-02 21:27:16 +02:00
|
|
|
// Fields returns the keys who's values are set with Inject.
|
|
|
|
func (b Baggage) Fields() []string {
|
2020-09-09 20:13:37 +02:00
|
|
|
return []string{baggageHeader}
|
2020-02-20 20:31:21 +02:00
|
|
|
}
|