From e53d1023fc2c541c08be49d1a76eec3f40e44d09 Mon Sep 17 00:00:00 2001 From: Chun Lin Yang Date: Wed, 10 Oct 2018 16:25:50 +0800 Subject: [PATCH 1/2] Fix Readme error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 077267b528..0bbbe3946b 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Make sure you have the Jaeger Query service running on http://localhost:16686. F If you don't have it running locally, then tunnel to the correct host and port. ``` -ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_PORT +ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_HOST ``` Start the development server with hot loading: From 72375e854cb02beb50080de3fe78830d2a497ccd Mon Sep 17 00:00:00 2001 From: Chun Lin Yang Date: Wed, 10 Oct 2018 17:07:12 +0800 Subject: [PATCH 2/2] Fix readme to add ui-base-path --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0bbbe3946b..3f28cfcd8a 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ If you don't have it running locally, then tunnel to the correct host and port. ssh -fN -L 16686:$BACKEND_HOST:$BACKEND_PORT $BACKEND_HOST ``` +If you are using [UI Base Path](https://www.jaegertracing.io/docs/1.7/deployment/#ui-base-path) feature, you need to append the base path into `proxy->/api->target` in package.json file. for example: if the base path is `"/jaeger"`, then the target should be `"http://localhost:16686/jaeger"` + Start the development server with hot loading: ```