Skip to content

Commit cabe34d

Browse files
authored
feat!: also use W3CBaggagePropagator by default (#403)
closes #378
1 parent 5ded7b1 commit cabe34d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1313
- Support for optimized queue runner (in `@sap/cds^9.6`)
1414
- Support for `@cap-js/hana`'s built-in pool
1515

16+
### Changed
17+
18+
- `W3CBaggagePropagator` added to the list of default propagators (`cds.requires.telemetry.tracing.propagators`)
19+
1620
### Fixed
1721

1822
- Resolving of `OTEL_LOG_LEVEL`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ Configure via `cds.requires.telemetry.tracing.propagators = [<name> | { module,
422422

423423
Default:
424424
```json
425-
["W3CTraceContextPropagator"]
425+
["W3CTraceContextPropagator", "W3CBaggagePropagator"]
426426
```
427427

428428

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@
7474
]
7575
},
7676
"propagators": [
77-
"W3CTraceContextPropagator"
77+
"W3CTraceContextPropagator",
78+
"W3CBaggagePropagator"
7879
],
7980
"[development]": {
8081
"hrtime": true

0 commit comments

Comments
 (0)