Skip to content

Commit

Permalink
docs: corrected typos in tracing.md (#1093)
Browse files Browse the repository at this point in the history
This small contribution improves the documentation for the tracing.md
content by correcting some typo/spelling errors.
  • Loading branch information
aarongreenlee authored Mar 22, 2024
1 parent 3896be2 commit 7e7e935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/observability/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ title: Distributed Tracing
subtitle: Track requests across your application and infrastructure
---

Distributed systems often have many moving parts, making it it difficult to understand what your code is doing and finding the root-cause to bugs. That’s where Tracing comes in. If you haven’t seen it before, it may just about change your life.
Distributed systems often have many moving parts, making it difficult to understand what your code is doing and finding the root-cause to bugs. That’s where Tracing comes in. If you haven’t seen it before, it may just about change your life.

Tracing is a revolutionary way to gain insight into what your applications is doing. It works by capturing the series of events as they occur during the execution of your code (a “trace”). This works by propagating a trace id between all individual systems, then corralating and joining the information together to present a unified picture of what happened end-to-end.
Tracing is a revolutionary way to gain insight into what your applications are doing. It works by capturing the series of events as they occur during the execution of your code (a “trace”). This works by propagating a trace id between all individual systems, then correlating and joining the information together to present a unified picture of what happened end-to-end.

As opposed to the labor intensive instrumentation you'd normally need to go through to use tracing, Encore automatically captures traces for your entire application – in all environments. Uniquely, this means you can use tracing even for local development to help debugging and speed up iterations.

Expand Down

0 comments on commit 7e7e935

Please sign in to comment.