-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Serve Hotrod UI and Grafana from Separate Basepaths in Jaeger Demo #7328
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
Conversation
Signed-off-by: chahat sagar <109112505+chahatsagarmain@users.noreply.github.com>
examples/oci/jaeger-values.yaml
Outdated
@@ -6,6 +6,7 @@ hotrod: | |||
- all | |||
extraArgs: | |||
- --otel-exporter=otlp | |||
- --basepath=hotrod |
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 --basepath
argument needs a leading slash to align with the ingress path configuration. Please update from --basepath=hotrod
to --basepath=/hotrod
to ensure proper routing between the ingress and the application.
- --basepath=hotrod | |
- --basepath=/hotrod |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
examples/oci/ingress.yaml
Outdated
@@ -15,8 +15,8 @@ spec: | |||
name: jaeger-query | |||
port: | |||
number: 16686 | |||
- path: /grafana | |||
pathType: Prefix | |||
- path: /grafana(/|$)(.*) |
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.
(/|$)
doesn't make sense if followed by .*
, since $
marks the end of the string
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7328 +/- ##
=======================================
Coverage 96.26% 96.26%
=======================================
Files 377 377
Lines 22900 22900
=======================================
Hits 22044 22044
Misses 647 647
Partials 209 209
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Which problem is this PR solving?
Description of the changes
Checklist
jaeger
:make lint test
jaeger-ui
:npm run lint
andnpm run test