Java Application
This document explains how to instrument a Java Spring Boot application with KloudMate, using OpenTelemetry.
This instrumentation can be done using the OpenTelemetry operator, which supports injecting and configuring auto-instrumentation libraries for .NET, Java, Node.js, Python, and Go service.
Prerequisites:
- Running a Kubernetes cluster.
- The cert-manager must be installed. If you use the helm chart, there is an option to generate a self-signed cert instead.
Step 1: First, install the OpenTelemetry Operator into your cluster.
You can do this with the Operator release manifest, the Operator helm chart, or with Operator Hub.
Step 2: Create an OpenTelemetry collector to send telemetry from containers to a collector instead of directly to a backend.
For example, here is a demo collector:
Note: Change your Kloudmate organization API key to configure the collector to export data to KloudMate.
Step 3: Configure automatic instrumentation
To be able to manage automatic instrumentation, the Operator needs to be configured to know what pods to instrument and which automatic instrumentation to use for those pods. This is done via the Instrumentation CRD
For our example, we have used Java SDK auto instrumentation.
The following command creates a basic Instrumentation resource that is configured for instrumenting Java services:
Note: The endpoint used under exporter must be the same as the service name of the collector created in Step 2
Step 4: Now opt-in your services to automatic instrumentation. This is done by updating your service’s spec.template.metadata.annotations to include a language-specific annotation:
java:instrumentation.opentelemetry.io/inject-java: "true"
To patch your existing Java application with the necessary annotation use the below command:
Following the above steps, you can get the necessary telemetry data on KloudMate.
Following is a sample YAML file where the annotation is used: