การติดตามแบบกระจายด้วย Zipkin
ผสาน Zipkin เพื่อติดตามแบบกระจายตั้งแต่ต้นจนจบในไมโครเซอร์วิส และแก้ไขปัญหาการโต้ตอบที่ซับซ้อน
การติดตามแบบกระจายด้วย Zipkin เป็นบทเรียน Spring Boot 4 Microservices & REST APIs ฟรีบน CoddyKit นี่คือบทเรียนที่ 3 จากทั้งหมด 3 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Spring Boot 4 Microservices & REST APIs และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Spring Boot 4 Microservices & REST APIs มีบทเรียนทั้งหมด 3 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
The Microservice Debugging Maze
In a microservices architecture, a single user request might travel through many different services. When something goes wrong, it's like finding a needle in a haystack!
Traditional logging only shows what happened within one service. We need a way to see the entire journey.
What is Distributed Tracing?
Distributed tracing is a technique to monitor and observe requests as they flow through different components of a distributed system.
- It helps you understand how services interact.
- It pinpoints performance bottlenecks.
- It makes debugging across service boundaries much easier.
Introducing Zipkin
Zipkin is an open-source distributed tracing system.
It helps you gather timing data needed to troubleshoot latency problems in microservice architectures. It manages both the collection and lookup of this data.
Core Concepts: Trace & Span
Two fundamental concepts in distributed tracing are Traces and Spans:
- A Trace represents a single request or workflow as it flows through your entire system.
- A Span is a single operation within a trace. It has a name, a unique ID, and a parent ID (unless it's the root span).
Think of a Trace as a story, and Spans as the individual chapters.
How Zipkin Works
Zipkin works by collecting data from your instrumented services.
Here's the basic flow:
- Your services send tracing data (spans) to the Zipkin Collector.
- The Collector stores this data (e.g., in memory, MySQL, Elasticsearch).
- You use the Zipkin UI to visualize and analyze the traces.
Spring Cloud Sleuth Magic
For Spring Boot applications, Spring Cloud Sleuth makes integration with Zipkin incredibly easy.
Sleuth automatically adds tracing information to your logs and HTTP headers, and sends it to Zipkin without much manual coding from you.
Setting Up Zipkin Locally
The easiest way to run a Zipkin server locally is using Docker. If you have Docker installed, just run this command in your terminal:
docker run -p 9411:9411 openzipkin/zipkin
Once running, you can access the Zipkin UI at http://localhost:9411.
Simple Service Instrumentation
To enable tracing, add Sleuth and Zipkin dependencies (spring-cloud-starter-sleuth and spring-cloud-sleuth-zipkin). Then, configure your application.properties to point to the Zipkin server:
spring.application.name=my-traced-servicespring.zipkin.base-url=http://localhost:9411spring.sleuth.sampler.probability=1.0 (trace all requests)
Now, let's look at a simple service that sends traces!
Tracing an Endpoint Call
Here's a basic Spring Boot service. With the properties from the last scene and Sleuth dependencies, it will automatically send trace data to Zipkin when you hit its /hello endpoint.
Try running this and then visiting http://localhost:8080/hello. Check your Zipkin UI!
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class MyTracedServiceApplication {
public static void main(String[] args) {
SpringApplication.run(MyTracedServiceApplication.class, args);
}
@GetMapping("/hello")
public String hello() {
// Sleuth automatically adds tracing to this request
System.out.println("Processing /hello request...");
return "Hello from Traced Service!";
}
}Exploring the Zipkin UI
After making requests to your traced service, open http://localhost:9411 in your browser.
You can search for traces by service name or trace ID. The UI will show you a visual timeline of each trace, including its spans, duration, and dependencies between services.
Quick Check: Tracing Terms
Test your understanding of distributed tracing with Zipkin.
Recap: Debugging with Zipkin
Great job! You've learned how distributed tracing helps debug microservices, and how Zipkin and Spring Cloud Sleuth make it easy.
- Distributed tracing visualizes request flow.
- Zipkin collects and displays trace data.
- Sleuth automates instrumentation for Spring Boot.
This helps you quickly find issues and optimize performance across your services.
เรียนรู้ Java ด้วย AI tutor — ฟรี
เขียนและเรียกใช้โค้ดจริงในเบราว์เซอร์ของคุณ รับความช่วยเหลือทันทีจาก AI tutor 24/7 และเรียนรู้ต่อจากที่คุณหยุดบนเว็บหรือในแอป
- คอร์ส
- 24
- บทเรียน
- 93
คำถามที่พบบ่อย
บทเรียน “การติดตามแบบกระจายด้วย Zipkin” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การติดตามแบบกระจายด้วย Zipkin” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Spring Boot 4 Microservices & REST APIs ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Spring Boot 4 Microservices & REST APIs มีบทเรียนทั้งหมด 3 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การติดตามแบบกระจายด้วย Zipkin”
ผสาน Zipkin เพื่อติดตามแบบกระจายตั้งแต่ต้นจนจบในไมโครเซอร์วิส และแก้ไขปัญหาการโต้ตอบที่ซับซ้อน คุณปฏิบัติ Spring Boot 4 Microservices & REST APIs ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Spring Boot 4 Microservices & REST APIs หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Spring Boot 4 Microservices & REST APIs บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 3 จากทั้งหมด 3 บทเรียน
บทเรียน “การติดตามแบบกระจายด้วย Zipkin” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Spring Boot 4 Microservices & REST APIs นี้ได้ไหม
ได้ บทเรียน Spring Boot 4 Microservices & REST APIs ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- Circuit Breaker ด้วย Resilience4j
- การใช้ Fallback และ Timeout
- การติดตามแบบกระจายด้วย Zipkin