Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Propagation/Instana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ $propagator = InstanaPropagator::getInstance();

Both of the above have extract and inject methods available to extract and inject respectively into the header.

For Baggage propagation, use opentelemetry's MultiTextMapPropagator, and pass the array list of propagators i.e Instana and Baggage propagator as below.

```
$propagator = new MultiTextMapPropagator(InstantPropagator::getInstance(), BaggagePropagator::getInstance());
```

## Propagator Details

There are three headers that the propagator handles: `X-INSTANA-T` (the trace ID), `X-INSTANA-S` (the parent span ID), and `X-INSTANA-L` (the sampling level).
Expand Down
172 changes: 0 additions & 172 deletions src/Propagation/Instana/src/InstanaContextPropagator.php

This file was deleted.

173 changes: 0 additions & 173 deletions src/Propagation/Instana/src/InstanaMultiPropagator.php

This file was deleted.

Loading
Loading