Skip to content

Commit dfc5a55

Browse files
Merge branch 'main' into Load-generator-Web-request-spamming
2 parents 798bb9e + 59cdb0a commit dfc5a55

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
@@ -441,7 +441,7 @@ services:
441441
environment:
442442
- SHIPPING_SERVICE_PORT
443443
- QUOTE_SERVICE_ADDR
444-
- OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}/v1/traces
444+
- OTEL_EXPORTER_OTLP_ENDPOINT=http://${OTEL_COLLECTOR_HOST}:${OTEL_COLLECTOR_PORT_GRPC}
445445
- OTEL_RESOURCE_ATTRIBUTES
446446
- OTEL_SERVICE_NAME=shippingservice
447447
depends_on:

docker-compose.yml

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

0 commit comments

Comments
 (0)