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

(feat): make example/otel-jeager work #23

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions otel-jaeger/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ services:
# If we were cool, we would use the agent, etc directly and configure
# persistent storage. But this bundle is really designed for local dev.
jaeger-all-in-one:
image: jaegertracing/all-in-one:latest
image: "jaegertracing/all-in-one:1.49"
ports:
- "${JAEGER_UI_PORT}:16686"
- "14250"
restart: always

# Collector
otel-collector:
image: "otel/opentelemetry-collector-contrib-dev:latest"
image: "otel/opentelemetry-collector-contrib:0.84.0"
volumes:
- otel-jaeger-config:/etc/otel
ports:
Expand Down
4 changes: 2 additions & 2 deletions otel-jaeger/porter.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
schemaVersion: 1.0.0-alpha.1
name: examples/otel-jaeger
version: 0.1.0
version: 0.1.1
description: "Runs Jaeger with an OpenTelemetry collector"
registry: ghcr.io/getporter

Expand Down Expand Up @@ -29,7 +29,7 @@ install:
- "hello"
- exec:
description: "Create OpenTelemetry configuration"
command: helpers.sh
command: ./helpers.sh
arguments:
- set-config
- docker-compose:
Expand Down
Loading