-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Use jaeger-v2 by default in Hotrod and Monitor examples #6523
Conversation
e9b8615
to
ff0faea
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6523 +/- ##
==========================================
- Coverage 96.23% 96.21% -0.03%
==========================================
Files 372 372
Lines 21360 21360
==========================================
- Hits 20556 20551 -5
- Misses 612 616 +4
- Partials 192 193 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, good start.
docker-compose/monitor/Makefile
Outdated
@@ -20,7 +20,7 @@ build: clean-jaeger | |||
.PHONY: dev | |||
dev: export JAEGER_IMAGE_TAG = dev | |||
dev: | |||
docker compose -f docker-compose.yml up $(DOCKER_COMPOSE_ARGS) | |||
docker compose -f docker-compose-v1.yml up $(DOCKER_COMPOSE_ARGS) | |||
|
|||
.PHONY: dev-v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we change the target names accordingly? And the readme.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated the document and make v2 as the default in the Makefile.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
then this target needs to be renamed dev-v1
docker-compose/monitor/README.md
Outdated
@@ -126,7 +126,7 @@ to emit traces to the OpenTelemetry Collector which, in turn, will aggregate the | |||
|
|||
Start the local stack needed for SPM, if not already done: | |||
```shell | |||
docker compose up | |||
docker compose -f docker-compose-v2.yml up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The v2 files need to be renamed just docker-compose, so that the user is not required to specify them on the command line.
8546cb9
to
9327ead
Compare
Signed-off-by: zzzk1 <[email protected]>
9327ead
to
fb8b9e4
Compare
Signed-off-by: zzzk1 <[email protected]>
fb8b9e4
to
80c02ab
Compare
docker-compose/monitor/Makefile
Outdated
@@ -20,7 +20,7 @@ build: clean-jaeger | |||
.PHONY: dev | |||
dev: export JAEGER_IMAGE_TAG = dev | |||
dev: | |||
docker compose -f docker-compose.yml up $(DOCKER_COMPOSE_ARGS) | |||
docker compose -f docker-compose-v1.yml up $(DOCKER_COMPOSE_ARGS) | |||
|
|||
.PHONY: dev-v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
then this target needs to be renamed dev-v1
Signed-off-by: zzzk1 <[email protected]>
These links are currently broken. I didn't actually test these commands, but jaegertracing#6523 looks like a simple rename, so might be fine. Signed-off-by: Jeff Youngs <[email protected]>
These links are currently broken. I didn't actually test these commands, but #6523 looks like a simple rename, so might be fine. ## Which problem is this PR solving? - n/a ## Description of the changes - README updates ## How was this change tested? - It wasn't ## Checklist - [ ] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [ ] I have signed all commits - [ ] I have added unit tests for the new functionality - [ ] 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: Jeff Youngs <[email protected]>
…g#6523) <!-- !! Please DELETE this comment before posting. We appreciate your contribution to the Jaeger project! 👋🎉 --> ## Which problem is this PR solving? - Resolves jaegertracing#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]>
These links are currently broken. I didn't actually test these commands, but jaegertracing#6523 looks like a simple rename, so might be fine. ## Which problem is this PR solving? - n/a ## Description of the changes - README updates ## How was this change tested? - It wasn't ## Checklist - [ ] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [ ] I have signed all commits - [ ] I have added unit tests for the new functionality - [ ] 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: Jeff Youngs <[email protected]>
Which problem is this PR solving?
Description of the changes
How was this change tested?
Checklist
jaeger
:make lint test
jaeger-ui
:npm run lint
andnpm run test