-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use jaeger-v2 by default in Hotrod and Monitor examples (#6523)
<!-- !! Please DELETE this comment before posting. We appreciate your contribution to the Jaeger project! ππ --> ## Which problem is this PR solving? - Resolves #6520 ## Description of the changes - Rename docker-compose.yml to docker-compose-v1.yml - update reference: script, doc, github actions, makefile ## How was this change tested? - ## Checklist - [x] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [x] I have signed all commits - [ ] I have added unit tests for the new functionality - [x] I have run lint and test steps successfully - for `jaeger`: `make lint test` - for `jaeger-ui`: `npm run lint` and `npm run test` --------- Signed-off-by: zzzk1 <[email protected]> Co-authored-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
441c274
commit 5ccbc2d
Showing
9 changed files
with
96 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
services: | ||
jaeger: | ||
networks: | ||
- backend | ||
image: jaegertracing/all-in-one:${JAEGER_IMAGE_TAG:-latest} | ||
volumes: | ||
- "./jaeger-ui.json:/etc/jaeger/jaeger-ui.json" | ||
command: --query.ui-config /etc/jaeger/jaeger-ui.json | ||
environment: | ||
- METRICS_STORAGE_TYPE=prometheus | ||
- PROMETHEUS_SERVER_URL=http://prometheus:9090 | ||
- PROMETHEUS_QUERY_NAMESPACE=${PROMETHEUS_QUERY_NAMESPACE:-} | ||
- PROMETHEUS_QUERY_DURATION_UNIT=${PROMETHEUS_QUERY_DURATION_UNIT:-} | ||
- PROMETHEUS_QUERY_NORMALIZE_CALLS=true | ||
- PROMETHEUS_QUERY_NORMALIZE_DURATION=true | ||
ports: | ||
- "16686:16686" | ||
|
||
otel_collector: | ||
networks: | ||
backend: | ||
# This is the host name used in Prometheus scrape configuration. | ||
aliases: [spm_metrics_source] | ||
image: otel/opentelemetry-collector-contrib:${OTEL_IMAGE_TAG:-0.112.0} | ||
volumes: | ||
- ${OTEL_CONFIG_SRC:-./otel-collector-config-connector.yml}:/etc/otelcol/otel-collector-config.yml | ||
command: --config /etc/otelcol/otel-collector-config.yml | ||
depends_on: | ||
- jaeger | ||
ports: | ||
- "8889:8889" | ||
|
||
microsim: | ||
networks: | ||
- backend | ||
image: yurishkuro/microsim:v0.4.1 | ||
command: "-d 24h -s 500ms" | ||
environment: | ||
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel_collector:4318 | ||
- OTEL_EXPORTER_OTLP_INSECURE=true | ||
depends_on: | ||
- otel_collector | ||
|
||
prometheus: | ||
networks: | ||
- backend | ||
image: prom/prometheus:latest | ||
volumes: | ||
- "./prometheus.yml:/etc/prometheus/prometheus.yml" | ||
ports: | ||
- "9090:9090" | ||
|
||
networks: | ||
backend: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters