Skip to content

Latest commit

 

History

History
409 lines (307 loc) · 20.2 KB

README.adoc

File metadata and controls

409 lines (307 loc) · 20.2 KB

Enabling distributed tracing in microservices with Zipkin

Note
This repository contains the guide documentation source. To view the guide in published form, view it on the Open Liberty website.

Explore how to enable and customize tracing of JAX-RS and non-JAX-RS methods by using MicroProfile OpenTracing and the Zipkin tracing system.

What you’ll learn

You’ll learn how to enable automatic tracing for JAX-RS methods and how to create custom tracers for non-JAX-RS methods by using MicroProfile OpenTracing.

OpenTracing is a standard API for instrumenting microservices for distributed tracing. Distributed tracing helps troubleshoot microservices by examining and logging requests as they propagate through a distributed system. Distributed tracing allows developers to tackle the otherwise difficult task of debugging these requests. Without a distributed tracing system in place, analyzing the workflows of operations becomes difficult. Pinpointing when and where a request is received and when responses are sent becomes difficult.

MicroProfile OpenTracing enables distributed tracing in microservices without adding any explicit distributed tracing code to the application. Note that the MicroProfile OpenTracing specification does not address the problem of defining, implementing, or configuring the underlying distributed tracing system. Rather, the specification makes it easier to instrument services with distributed tracing given an existing distributed tracing system.

You’ll configure the provided inventory and system services to use distributed tracing with MicroProfile OpenTracing. You’ll run these services in two separate JVMs made of two server instances to demonstrate tracing in a distributed environment. If all the components were to run on a single server, then any logging software would do the trick.

For this guide, Zipkin is used as the distributed tracing system. You can find the installation instructions for Zipkin at the Zipkin quickstart page. You’re not required to use Zipkin. You may choose to use another tracing system. However, this guide is written using Zipkin. If you use a different tracing system, the required instructions may differ.

Before you continue, confirm your Zipkin server is up and running. By default, Zipkin can be found at the http://localhost:9411 URL.

Try what you’ll build

The finish directory in the root directory of this guide contains two services that are configured to use MicroProfile OpenTracing. Give them a try before you continue.

To try out the services, navigate to the finish directory and run the Maven install phase to build the services

cd finish
mvn install

Then, run the Maven liberty:start-server goal to start them in two Open Liberty servers:

mvn liberty:start-server

Make sure your Zipkin server is running and point your browser to the http://localhost:9081/inventory/systems/localhost URL. When you visit this URL, you make two HTTP GET requests, one to the system service and one to the inventory service. Both of these requests are configured to be traced, so a new trace will be recorded in Zipkin. Visit the http://localhost:9411 URL or another location where you configured Zipkin to run. Run an empty query and sort the traces by latest start time first.

Verify that the new trace contains three spans with the following names:

  • get:io.openliberty.guides.inventory.inventoryresource.getpropertiesforhost

  • get:io.openliberty.guides.system.systemresource.getproperties

  • add() span

You can inspect each span by clicking it to reveal more detailed information, such as the time at which the request was received and the time at which a response was sent back.

If you examine the other traces, you might notice a red trace entry, which indicates the span caught an error. In this case, one of the tests accesses the /inventory/systems/badhostname endpoint, which is invalid, so an error is thrown. This behavior is expected.

When you’re done checking out the services, stop both Open Liberty servers using the Maven liberty:stop-server goal:

mvn liberty:stop-server

Running the services

Navigate to the start directory to begin.

You’ll need to start the services to see basic traces appear in Zipkin. So, before you proceed, build and start the provided system and inventory services in the starting project by running the Maven install goal:

mvn install

Then, run the liberty:start-server goal:

mvn liberty:start-server

When the servers start, you can find the system and inventory services at the following URLs:

Existing Tracer implementation

To collect traces across your systems, you need to implement the OpenTracing Tracer interface. For this guide, you can access a bare-bones Tracer implementation for the Zipkin server in the form of a user feature for Open Liberty.

This feature is already configured for you in your pom.xml and server.xml files. It’s automatically downloaded and installed into each service when you run a Maven build. You can find the opentracingZipkin feature enabled in your server.xml file.

The download-maven-plugin Maven plug-in in your pom.xml downloads and installs the opentracingZipkin feature.

If you want to install this feature yourself, see Enabling distributed tracing in IBM Documentation.

server.xml

link:finish/inventory/src/main/liberty/config/server.xml[role=include]

pom.xml

link:finish/inventory/pom.xml[role=include]

Enabling distributed tracing

The MicroProfile OpenTracing feature enables tracing of all JAX-RS methods by default. To further control and customize these traces, use the @Traced annotation to enable and disable tracing of particular methods. You can also inject a custom Tracer object to create and customize spans.

Enabling distributed tracing without code instrumentation

Because tracing is enabled by default for all JAX-RS methods, you need to enable only the mpOpenTracing feature and the usr:opentracingZipkin user feature in the server.xml file to see some basic traces in Zipkin.

Both of these features are already enabled in the inventory and system configuration files.

Make sure your services are running. Then, point your browser to any of their endpoints and check your Zipkin server for traces.

server.xml

link:finish/inventory/src/main/liberty/config/server.xml[role=include]

Enabling explicit distributed tracing

The @Traced annotation defines explicit span creation for specific classes and methods. If you place the annotation on a class, then it’s automatically applied to all methods within that class. If you place the annotation on a method, then it overrides the class annotation if one exists.

Enable tracing of the list() non-JAX-RS method by adding the @Traced annotation to the method.

Replace the InventoryManager class.
inventory/src/main/java/io/openliberty/guides/inventory/InventoryManager.java

InventoryManager.java

link:finish/inventory/src/main/java/io/openliberty/guides/inventory/InventoryManager.java[role=include]

The @Traced annotation can be configured with the following two parameters:

  • The value=[true|false] parameter indicates whether a particular class or method is traced. For example, while all JAX-RS methods are traced by default, you can disable their tracing by using the @Traced(false) annotation. This parameter is set to true by default.

  • The operationName=<Span name> parameter indicates the name of the span that is assigned to the particular method that is traced. If you omit this parameter, the span will be named with the following form: <package name>.<class name>.<method name>. If you use this parameter at a class level, then all methods within that class will have the same span name unless they’re explicitly overridden by another @Traced annotation.

Next, run the following command from the start directory to recompile your services.

mvn compile

Visit the http://localhost:9081/inventory/systems URL, check your Zipkin server, and sort the traces by newest first.

Look for a new trace record that is two spans long with one span for the listContents() JAX-RS method in the InventoryResource class and another span for the list() method in the InventoryManager class. Verify that these spans have the following names:

  • get:io.openliberty.guides.inventory.inventoryresource.listcontents

  • inventorymanager.list

Now, disable tracing on the InventoryResource class by setting @Traced(false) on the listContents() JAX-RS method.

Replace the InventoryResource class.
inventory/src/main/java/io/openliberty/guides/inventory/InventoryResource.java

InventoryResource.java

link:finish/inventory/src/main/java/io/openliberty/guides/inventory/InventoryResource.java[role=include]

Again, run the mvn compile command from the start directory to recompile your services:

mvn compile

Visit the http://localhost:9081/inventory/systems URL again, check your Zipkin server, and sort the traces by newest first.

Look for a new trace record that is just one span long for the remaining list() method in the InventoryManager class. Verify that this span has the following name:

  • inventorymanager.list

Injecting a custom Tracer object

The MicroProfile OpenTracing specification also makes the underlying OpenTracing Tracer instance available. The configured Tracer is accessed by injecting it into a bean by using the @Inject annotation from the Contexts and Dependency Injections API.

After injecting it, the Tracer will be used to build a Span. The Span will be activated and used in a Scope.

Replace the InventoryManager class.
inventory/src/main/java/io/openliberty/guides/inventory/InventoryManager.java

InventoryManager.java

link:finish/inventory/src/main/java/io/openliberty/guides/inventory/InventoryManager.java[role=include]

The Scope is used in a try block. The try block that you see here is called a try-with-resources statement, meaning that the Scope object is closed at the end of the statement. Defining custom spans inside such statements is a good practice. Otherwise, any exceptions that are thrown before the span is closed will leak the active span. The finish() method sets the ending timestamp and records the span.

Next, run the following command from the start directory to recompile your services.

mvn compile

Visit the http://localhost:9081/inventory/systems/localhost URL, check your Zipkin server, and sort the traces by newest first.

Look for two new trace records, one for the system service and one for the inventory service. The system trace contains one span for the getProperties() method in the SystemResource class. The inventory trace contains two spans. The first span is for the getPropertiesForHost() method in the InventoryResource class. The second span is the custom span that you created around the add() call. Verify that all of these spans have the following names:

The system trace:

  • get:io.openliberty.guides.system.systemresource.getproperties

The inventory trace:

  • get:io.openliberty.guides.inventory.inventoryresource.getpropertiesforhost

  • add() span

This simple example shows what you can do with the injected Tracer object. More configuration options are available, including setting a timestamp for when a span was created and destroyed. However, these options require an implementation of their own, which does not come as a part of the Zipkin user feature that is provided. In a real-world scenario, implement all the OpenTracing interfaces that you consider necessary, which might include the SpanBuilder interface. You can use this interface for span creation and customization, including setting timestamps.

SystemResource.java

link:finish/system/src/main/java/io/openliberty/guides/system/SystemResource.java[role=include]

InventoryResource.java

link:finish/inventory/src/main/java/io/openliberty/guides/inventory/InventoryResource.java[role=include]

Testing the services

No automated tests are provided to verify the correctness of the traces. Manually verify these traces by viewing them on the Zipkin server.

A few tests are included for you to test the basic functionality of the services. If a test failure occurs, then you might have introduced a bug into the code. These tests will run automatically as a part of the Maven build process when you run the mvn install command. You can also run these tests separately from the build by using the mvn verify command, but first make sure the servers are stopped.

When you’re done checking out the services, stop the server by using the Maven liberty:stop-server goal:

mvn liberty:stop-server

Great work! You’re done!

You have just used MicroProfile OpenTracing in Open Liberty to customize how and which traces are delivered to Zipkin.

Feel free to try one of the related MicroProfile guides. They demonstrate additional technologies that you can learn to expand on top of what you built here.