Skip to content

Commit 8ba9a1d

Browse files
[shippingservice] fix context propagation (#1433)
* Update dependencies and fix context propagation * Fix TODO comments and set default quote service address * Add OTLP logs exporter and move configuration to telemetry folder * Add metrics conf * Update OTEL_EXPORTER_OTLP_TRACES_ENDPOINT to OTEL_EXPORTER_OTLP_ENDPOINT * changelog * Use opentelemetry-appender-tracing * Remove OTLP logs
1 parent e18bb82 commit 8ba9a1d

14 files changed

+669
-718
lines changed

CHANGELOG.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ the release.
77

88
## Unreleased
99

10-
* [loadgenerator] emit logs via OTLP
11-
([#1446](https://github.com/open-telemetry/opentelemetry-demo/pull/1446))
12-
* [frontend] reset quantity when new product selected
13-
([#1447](https://github.com/open-telemetry/opentelemetry-demo/pull/1447))
1410
* [featureflag] deprecate in favor of flagd
1511
([#1338](https://github.com/open-telemetry/opentelemetry-demo/pull/1388))
1612
* [checkoutservice] add producer interceptor for tracing
@@ -31,8 +27,14 @@ the release.
3127
([#1415](https://github.com/open-telemetry/opentelemetry-demo/pull/1415))
3228
* [chore] - add tests and odd profiles to make stop
3329
([#1427](https://github.com/open-telemetry/opentelemetry-demo/pull/1427))
30+
* [shippingservice] fix context propagation
31+
([#1433](https://github.com/open-telemetry/opentelemetry-demo/pull/1433))
3432
* [chore] - Update Telemetry Components
3533
([#1440](https://github.com/open-telemetry/opentelemetry-demo/pull/1440))
34+
* [loadgenerator] emit logs via OTLP
35+
([#1446](https://github.com/open-telemetry/opentelemetry-demo/pull/1446))
36+
* [frontend] reset quantity when new product selected
37+
([#1447](https://github.com/open-telemetry/opentelemetry-demo/pull/1447))
3638
* [paymentservice] add paymentServiceFailure feature flag
3739
([#1449](https://github.com/open-telemetry/opentelemetry-demo/pull/1449))
3840
* [checkoutservice] add paymentServiceUnreachable feature flag

docker-compose.minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ services:
440440
environment:
441441
- SHIPPING_SERVICE_PORT
442442
- QUOTE_SERVICE_ADDR
443-
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}/v1/traces
443+
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}
444444
- OTEL_RESOURCE_ATTRIBUTES
445445
- OTEL_SERVICE_NAME=shippingservice
446446
depends_on:

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ services:
528528
environment:
529529
- SHIPPING_SERVICE_PORT
530530
- QUOTE_SERVICE_ADDR
531-
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}/v1/traces
531+
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}
532532
- OTEL_RESOURCE_ATTRIBUTES
533533
- OTEL_SERVICE_NAME=shippingservice
534534
depends_on:

0 commit comments

Comments
 (0)