From 48b56e80a1e64025267530c8fca2e6c798a8e3d9 Mon Sep 17 00:00:00 2001 From: Howard Yoo <32691630+howardyoo@users.noreply.github.com> Date: Tue, 6 Aug 2019 15:47:22 -0500 Subject: [PATCH] Update README.md added more instructions that was missing in configuring wavefront proxy --- distributed-tracing/node-js-app/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/distributed-tracing/node-js-app/README.md b/distributed-tracing/node-js-app/README.md index b69b7d2..03d5835 100644 --- a/distributed-tracing/node-js-app/README.md +++ b/distributed-tracing/node-js-app/README.md @@ -51,7 +51,7 @@ Node.js version >= 8.9.1 is supported. 1. Configure the [Wavefront Jaeger Integration](https://docs.wavefront.com/jaeger.html#jaeger-integration-setup): * Install and configure the Wavefront proxy (version >= 4.38), adding `traceJaegerListenerPorts=`. You can use the following command to run Wavefront proxy in docker: ``` - $ docker run -d \ + $ docker run -d --name wfproxy \ -e WAVEFRONT_URL=https://{CLUSTER}.wavefront.com/api/ \ -e WAVEFRONT_TOKEN={TOKEN} \ -e JAVA_HEAP_USAGE=512m \ @@ -62,6 +62,7 @@ Node.js version >= 8.9.1 is supported. -p 50000:50000 \ wavefronthq/proxy:latest ``` + * Replace `{CLUSTER}` with the cluster name of your wavefront. Replace `{TOKEN}` with the valid API token. * Restart Jaeger using the following commands: ``` @@ -86,4 +87,4 @@ Node.js version >= 8.9.1 is supported. 2. Use ./loadgen.sh in the root directory to send a request of ordering shirts every {interval} seconds. You will see some random failures which are added by us. -3. Go to **Applications -> Traces** in the Wavefront UI to visualize your traces. You can also go to **Applications -> Inventory** to visualize the RED metrics that are automatically derived from your tracing spans. Application name is defaulted to `Jaeger`. \ No newline at end of file +3. Go to **Applications -> Traces** in the Wavefront UI to visualize your traces. You can also go to **Applications -> Inventory** to visualize the RED metrics that are automatically derived from your tracing spans. Application name is defaulted to `Jaeger`.