From 72ff9cd699745c5eefa21e370d50eeff2dac1d01 Mon Sep 17 00:00:00 2001 From: Daniel Baptista Dias Date: Tue, 30 Jan 2024 14:46:20 -0300 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adnan Rahić --- examples/observability-stack/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/observability-stack/README.md b/examples/observability-stack/README.md index 8a49078d3e..8f2814fe35 100644 --- a/examples/observability-stack/README.md +++ b/examples/observability-stack/README.md @@ -1,11 +1,11 @@ # Observability Stack Example -This folder has the minimal code to run a local observability stack, plug an API into it, and do some trace based tests. +This folder has minimal code to run a local observability stack, plug an API into it, and do some trace-based tests. -To run the Observability Stack and the local API, execute: +To run the observability stack and the local API, execute: ```sh -# run our Observability stack +# run the observability stack docker compose up -d # install dependencies and run API @@ -14,10 +14,10 @@ npm run with-telemetry ``` -If you want to run it with Trace-based Tests, you can execute: +To run it with trace-based tests, execute: ```sh -# run our Observability stack +# run the observability stack export TRACETEST_API_KEY="{{Your Tracetest.io Token}}" docker compose -f ./docker-compose.yaml -f docker-compose.tracetest.yaml up -d