Skip to content

Commit

Permalink
Merge branch 'main' into frauddetection.span-links
Browse files Browse the repository at this point in the history
  • Loading branch information
austinlparker authored Apr 6, 2024
2 parents de571bb + 888f18c commit 269dc0b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ the release.

## 1.9.0

* [chore] docker compose: add container name as tag attribute to container logs
* [featureflag] deprecate in favor of flagd
([#1338](https://github.com/open-telemetry/opentelemetry-demo/pull/1388))
* [checkoutservice] add producer interceptor for tracing
Expand Down
1 change: 1 addition & 0 deletions docker-compose.minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ x-default-logging: &logging
options:
max-size: "5m"
max-file: "2"
tag: "{{.Name}}"

networks:
default:
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ x-default-logging: &logging
options:
max-size: "5m"
max-file: "2"
tag: "{{.Name}}"

networks:
default:
Expand Down Expand Up @@ -592,7 +593,7 @@ services:
- OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE
- OTEL_RESOURCE_ATTRIBUTES
- OTEL_SERVICE_NAME=kafka
- KAFKA_HEAP_OPTS=-Xmx200m -Xms200m
- KAFKA_HEAP_OPTS=-Xmx250m -Xms250m
healthcheck:
test: nc -z kafka 9092
start_period: 10s
Expand Down
4 changes: 2 additions & 2 deletions src/kafka/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# SPDX-License-Identifier: Apache-2.0


FROM confluentinc/cp-kafka:7.5.2
FROM apache/kafka:3.7.0

USER root
ARG version=2.0.0
ARG version=2.2.0
ADD https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /tmp/opentelemetry-javaagent.jar
RUN chmod go+r /tmp/opentelemetry-javaagent.jar

Expand Down

0 comments on commit 269dc0b

Please sign in to comment.