docs/jaeger_guides/opentracing_user_guide.md
This guide mainly describes the use of jaeger, and the commonly used display meanings.
Jaeger, inspired by Dapper and OpenZipkin, is a distributed tracing platform created by Uber Technologies and donated to Cloud Native Computing Foundation. It can be used for monitoring microservices-based distributed systems:
See also:
We mainly use jaeger as an implementation of opentracing.
Two requests: Insert Request and Search Request in milvus system are traced at this stage.
The use of the search box requires the configuration of the log collection system. For example, if the log collection system collects an error log, find the Trace ID. Search in jaeger to quickly locate the error. So as to quickly solve the problem.
Filter with the service name.
Operation in Service, e.g. request name, function name.
Set tag to facilitate search. Tag is defined in code.
Filter with time.
The minimum and maximum request duration, you can use this condition to find the time-consuming and short-term requests.
The max number of results.
You can search through the above conditions, and those that meet the conditions will appear in the right half.
The detailed information of search results.
Click the search result. You can analyze the detail trace information.
Click the Span to see the detailed span information such as the last span in the picture above.
More usage guides will be updated in the future.