1 Observability Improvements using Zipkin Traces
This topic describes the troubleshooting procedures using the Zipkin Traces.
- Setting Zipkin Server
This topic provides the information to install and setup Zipkin server. - Troubleshooting Zipkin
This topic provides the systematic instructions to troubleshooting using Zipkin Traces. - Zipkin Issues
This topic describes the various issues faced in Zipkin.
1.1 Setting Zipkin Server
This topic provides the information to install and setup Zipkin server.
Zipkin works as an independent application, and it can be downloaded as a runnable jar from the official website of Zipkin https://zipkin.io/ The latest version of Zipkin needs a Java version above 8.
- The downloaded jar can be executed using the java –jar JAR_NAME command.
- The configuration of Zipkin can be done environment variables. The port of the Zipkin can be set using QUERY_PORT environment variable.
- The application starts on the port number assigned for QUERY_PORT environment variable or its default value of 9411. The web UI of Zipkin can be accessed at http://localhost:PORT.
Parent topic: Observability Improvements using Zipkin Traces
1.2 Troubleshooting Zipkin
This topic provides the systematic instructions to troubleshooting using Zipkin Traces.
Parent topic: Observability Improvements using Zipkin Traces
1.3 Zipkin Issues
This topic describes the various issues faced in Zipkin.
- Application Service is not Registered
This topic describes the systematic instructions to register the application service. - 404 Error
This topic provides the information to troubleshoot the 404 Error in the application. - Unable to Change Zipkin Default Port Number
This topic provides the information to change the Zipkin Default Port Number in the application.
Parent topic: Observability Improvements using Zipkin Traces
1.3.1 Application Service is not Registered
This topic describes the systematic instructions to register the application service.
Parent topic: Zipkin Issues
1.3.2 404 Error
This topic provides the information to troubleshoot the 404 Error in the application.
If there is a 404 error, check if the zipkin-server.jar is running in the system where the application is deployed. To check this, execute the following command:
netstat -ltnup | grep ':9411'
The output should be like as below:
tcp6 0 0 :::9411 :::* LISTEN 10892/java
Here 10892 is the PID.
Parent topic: Zipkin Issues
1.3.3 Unable to Change Zipkin Default Port Number
This topic provides the information to change the Zipkin Default Port Number in the application.
Zipkin default port number is not editable.
Hence, make sure that the port 9411 is available to start Zipkin-server.jar file
.
Parent topic: Zipkin Issues