Skip to content

Commit 0f36823

Browse files
Merge branch 'main' into imageprovider
2 parents 8aefab1 + 59cdb0a commit 0f36823

15 files changed

+675
-722
lines changed

.env

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11

22

33
# Demo App version
4-
IMAGE_VERSION=1.8.0
4+
IMAGE_VERSION=1.9.0
55
IMAGE_NAME=ghcr.io/open-telemetry/demo
66
DEMO_VERSION=latest
77

88
# Dependent images
9-
COLLECTOR_CONTRIB_IMAGE=otel/opentelemetry-collector-contrib:0.96.0
10-
GRAFANA_IMAGE=grafana/grafana:10.4.0
9+
COLLECTOR_CONTRIB_IMAGE=otel/opentelemetry-collector-contrib:0.97.0
10+
GRAFANA_IMAGE=grafana/grafana:10.4.1
1111
JAEGERTRACING_IMAGE=jaegertracing/all-in-one:1.55
1212
# must also update version field in /src/grafana/provisioning/datasources/opensearch.yml
1313
OPENSEARCH_IMAGE=opensearchproject/opensearch:2.12.0
1414
POSTGRES_IMAGE=postgres:16.2
15-
PROMETHEUS_IMAGE=quay.io/prometheus/prometheus:v2.50.1
15+
PROMETHEUS_IMAGE=quay.io/prometheus/prometheus:v2.51.1
1616
REDIS_IMAGE=redis:7.2-alpine
1717
TRACETEST_IMAGE_VERSION=v0.16.0
1818
TRACETEST_IMAGE=kubeshop/tracetest:${TRACETEST_IMAGE_VERSION}

CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ 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))
10+
## 1.9.0
11+
1412
* [featureflag] deprecate in favor of flagd
1513
([#1338](https://github.com/open-telemetry/opentelemetry-demo/pull/1388))
1614
* [checkoutservice] add producer interceptor for tracing
@@ -31,8 +29,14 @@ the release.
3129
([#1415](https://github.com/open-telemetry/opentelemetry-demo/pull/1415))
3230
* [chore] - add tests and odd profiles to make stop
3331
([#1427](https://github.com/open-telemetry/opentelemetry-demo/pull/1427))
32+
* [shippingservice] fix context propagation
33+
([#1433](https://github.com/open-telemetry/opentelemetry-demo/pull/1433))
3434
* [chore] - Update Telemetry Components
3535
([#1440](https://github.com/open-telemetry/opentelemetry-demo/pull/1440))
36+
* [loadgenerator] emit logs via OTLP
37+
([#1446](https://github.com/open-telemetry/opentelemetry-demo/pull/1446))
38+
* [frontend] reset quantity when new product selected
39+
([#1447](https://github.com/open-telemetry/opentelemetry-demo/pull/1447))
3640
* [paymentservice] add paymentServiceFailure feature flag
3741
([#1449](https://github.com/open-telemetry/opentelemetry-demo/pull/1449))
3842
* [checkoutservice] add paymentServiceUnreachable feature flag

docker-compose.minimal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ services:
471471
environment:
472472
- SHIPPING_SERVICE_PORT
473473
- QUOTE_SERVICE_ADDR
474-
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}/v1/traces
474+
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}
475475
- OTEL_RESOURCE_ATTRIBUTES
476476
- OTEL_SERVICE_NAME=shippingservice
477477
depends_on:

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ services:
559559
environment:
560560
- SHIPPING_SERVICE_PORT
561561
- QUOTE_SERVICE_ADDR
562-
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}/v1/traces
562+
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}
563563
- OTEL_RESOURCE_ATTRIBUTES
564564
- OTEL_SERVICE_NAME=shippingservice
565565
depends_on:

0 commit comments

Comments
 (0)