Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chapter03 on M1 Macbook Pro #23

Open
pieterv-icloud-com opened this issue Nov 6, 2022 · 2 comments
Open

chapter03 on M1 Macbook Pro #23

pieterv-icloud-com opened this issue Nov 6, 2022 · 2 comments

Comments

@pieterv-icloud-com
Copy link

No arm64 support?

no matching manifest for linux/arm64/v8 in the manifest list entries
@jiekun
Copy link

jiekun commented Apr 11, 2023

Those application image / Dockerfile looks fine. It's caused by otel/opentelemetry-collector-contrib:0.42.0. I think the author does it on purpose, to minimize the potential impact of the new version. You can edit the image to otel/opentelemetry-collector-contrib:0.43.0 or above.

After changing the contrib tag, js report won't work. you should be able to find trace like this:

python -> python -> go -> go -> java

with 0.42.0 it should be:

js -> python -> python -> go -> go -> java

@MilenaLee
Copy link

in docker-compose.yml, I add "platform: linux/amd64" on the image that makes problem ( for me, those are "jaeger" and "opentelemetry-collector")
like this,

  jaeger:
    image: jaegertracing/all-in-one:latest
    platform: linux/amd64 << added line
    container_name: jaeger
    ports:
      - "16686:16686"
    networks:
      - cloud-native-observability

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

3 participants