From 814149abdcc460cf73edd9778cf0ef9111b4324c Mon Sep 17 00:00:00 2001 From: N Balachandran Date: Thu, 26 Sep 2024 09:46:56 +0530 Subject: [PATCH] doc: fix typo Fixed a typo in the jaeger traces documentation. Signed-off-by: N Balachandran (cherry picked from commit 5a11bc00e6c068c965bb7d961feeb47353cc893c) --- doc/jaegertracing/index.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/jaegertracing/index.rst b/doc/jaegertracing/index.rst index 2275c91d1d2..f49ab73d821 100644 --- a/doc/jaegertracing/index.rst +++ b/doc/jaegertracing/index.rst @@ -10,17 +10,17 @@ BASIC ARCHITECTURE AND TERMINOLOGY ---------------------------------- * TRACE: A trace shows the data/execution path through a system. -* SPAN: A single unit of a trace, it is a data structure that stores - information like operation name, timestamps, ordering in a trace. -* JAEGER CLIENT: language-specific implementations of the OpenTracing API. -* JAEGER AGENT: a daemon that listens for spans sent over User Datagram Protocol. - The agent is meant to be placed on the same host as the instrumented - application. (acts like a sidecar listener) -* JAEGER COLLECTOR: Jaeger agent sends the spans to this daemon which then - stitches the spans together to form a trace(if enabled, also persists a database - for these traces) -* JAEGER QUERY AND CONSOLE FRONTEND: UI based frontend to checkout the jaeger - traces, navigate to http://:16686 +* SPAN: A single unit of a trace. A data structure that stores information such + as the operation name, timestamps, and the ordering within a trace. +* JAEGER CLIENT: Language-specific implementations of the OpenTracing API. +* JAEGER AGENT: A daemon that listens for spans sent over User Datagram + Protocol. The agent is meant to be placed on the same host as the + instrumented application. (The Jaeger agent acts like a sidecar listener.) +* JAEGER COLLECTOR: A daemon that receives spans sent by the Jaeger agent. The + Jaeger collector then stitches the spans together to form a trace. (A database + can be enabled to persist these traces). +* JAEGER QUERY AND CONSOLE FRONTEND: The UI-based frontend that presents + reports of the jaeger traces. Accessible at http://:16686. read more about jaeger tracing:. -- 2.47.3