⚠️ This project is archived and no longer maintained.The Grafana OpenTelemetry Starter is deprecated and will not receive any further updates.
If you are looking for a way to get started with OpenTelemetry in Java for Grafana Cloud or Grafana OSS,
please use the Grafana OpenTelemetry Distribution for Java.If you are looking for an OpenTelemetry Spring Boot starter, please use the OpenTelemetry Spring Boot Starter.
The grafana-opentelemetry-starter makes it easy to use Metrics, Traces, and Logs with OpenTelemetry in Grafana Cloud or the Grafana OSS stack.
Spring Boot Version | Java Version | Recommended Setup |
---|---|---|
3.2.x | 17+ | Use this starter in version 1.4.x |
3.1.x | 17+ | Use this starter in version 1.3.x |
3.0.4 < 3.1.0 | 17+ | Use this starter in version 1.0.0 (only works with gradle) |
2.x | 8+ | Use Grafana OpenTelemetry Distribution for Java |
Logging is supported with Logback and Log4j2 (a separate appender is added automatically, leaving your console or file appenders untouched).
Follow these three steps to get started with Grafana OpenTelemetry:
- Add the Grafana OpenTelemetry Starter dependency
- Configure the application
- Observe the service in Application Observability
Add the following dependency to your build.gradle
implementation 'com.grafana:grafana-opentelemetry-starter:1.4.0'
... or pom.xml
<dependency>
<groupId>com.grafana</groupId>
<artifactId>grafana-opentelemetry-starter</artifactId>
<version>1.4.0</version>
</dependency>
Next, configure your application either for Grafana Cloud OTLP Gateway or Grafana Agent.
⚠️ Please use the Grafana Agent configuration for production use cases.
The easiest setup is to use the Grafana Cloud OTLP Gateway, because you don't need to run any service to transport the telemetry data to Grafana Cloud. The Grafana Cloud OTLP Gateway is a managed service that is available in all Grafana Cloud plans.
-
Sign in to Grafana Cloud, register for a Free Grafana Cloud account if required.
-
After successful login, the browser will navigate to the Grafana Cloud Portal page https://grafana.com/profile/org.
A new account will most likely belong to one organization with one stack.
If the account has access to multiple Grafana Cloud Organizations, select an organization from the top left organization dropdown.
If the organization has access to multiple Grafana Cloud Stacks, navigate to a stack from the left side bar or the main Stacks list.
-
With a stack selected, or in the single stack scenario, below Manage your Grafana Cloud Stack, click Configure in the OpenTelemetry section:
-
In the Password / API Token section, click on Generate now to create a new API token:
- Give the API token a name, for example
otel-java
- Click on Create token
- Click on Close without copying the token
- Now the environment variables section is populated with all the necessary information to send telemetry data to Grafana Cloud
- Click on Copy to Clipboard to copy the environment variables to the clipboard
- Give the API token a name, for example
-
Come up with a Service Name to identify the service, for example
cart
, and copy it into the shell command below. Use theservice.namespace
to group multiple services together. -
Optional: add resource attributes to the shell command below:
- deployment.environment: Name of the deployment environment, for example
staging
orproduction
- service.namespace: A namespace to group similar services, for example using
service.namespace=shop
for acart
andfraud-detection
service would createshop/cart
andshop/fraud-detection
in Grafana Cloud Application Observability with filtering capabilities for easier management - service.version: The application version, to see if a new version has introduced a bug
- service.instance.id: The unique instance, for example the Pod name (a UUID is generated by default)
- deployment.environment: Name of the deployment environment, for example
<Paste the environment variables from the previous section>
export OTEL_SERVICE_NAME=<Service Name>
export OTEL_RESOURCE_ATTRIBUTES=deployment.environment=<Environment>,service.namespace=<Namespace>,service.version=<Version>
Finally, Observe the service in Application Observability.
The Grafana Agent is a single binary that can be deployed as a sidecar or daemonset in Kubernetes, or as a service in your network. It provides an endpoint where the application can send its telemetry data to. The telemetry data is then forwarded to Grafana Cloud or a Grafana OSS stack.
💨 Skip this section and let the OpenTelemetry Integration create everything for you.
- If the Grafana Agent is not running locally or doesn't use the default grpc endpoint,
adjust OTEL_EXPORTER_OTLP_ENDPOINT or OTEL_EXPORTER_OTLP_PROTOCOL (to
http/protobuf
). - Choose a Service Name to identify the service.
- Optionally, add attributes to filter data:
- deployment.environment: Name of the deployment environment (
staging
orproduction
) - service.namespace: A namespace to group similar services
(e.g.
shop
would createshop/cart
in Application Observability) - service.version: The application version, to see if a new version has introduced a bug
- service.instance.id: The unique instance, for example the Pod name (a UUID is generated by default)
- deployment.environment: Name of the deployment environment (
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
export OTEL_EXPORTER_OTLP_PROTOCOL=grpc
export OTEL_SERVICE_NAME=<Service Name>
export OTEL_RESOURCE_ATTRIBUTES=deployment.environment=<Environment>,service.namespace=<Namespace>,service.version=<Version>
The application will send data to the Grafana Agent. Please follow the Grafana Agent configuration for OpenTelemetry guide.
Finally, Observe the service in Application Observability.
Finally, make some requests to the service to validate data is sent to Grafana Cloud. It might take up to five minutes for data to appear.
In Grafana, replace the path of the URL with /a/grafana-app-observability-app/services
or:
- Click on the menu icon in the top left corner
- Open the Observability menu
- Click on Application
Important: refer to the troubleshooting guide if there is no data in Application Observability.
Once you've started your application, you can use this Spring Boot Dashboard
If anything is not working, or you have questions about the starter, we’re glad to help you on our community chat (#opentelemetry).
- All configuration properties are described in the reference.
- The
grafana.otlp.cloud
andgrafana.otlp.onprem
properties are mutually exclusive. - As usual in Spring Boot, you can use environment variables to supply some of the properties, which is especially
useful for secrets, e.g.
GRAFANA_OTLP_CLOUD_API_KEY
instead ofgrafana.otlp.cloud.apiKey
. - In addition, you can use all system properties or environment variables from the SDK auto-configuration - which will take precedence.
When you start the application, you will also get a log output of the configuration properties as they are translated into SDK properties.
For example, if you set the spring.application.name
in application.yaml
,
you will get the following log output:
11:53:07.724 [main] INFO c.g.o.OpenTelemetryConfig - using config properties: {otel.exporter.otlp.endpoint=https://otlp-gateway-prod-eu-west-0.grafana.net/otlp, otel.logs.exporter=otlp, otel.traces.exporter=otlp, otel.exporter.otlp.headers=Authorization=Basic NTUz..., otel.exporter.otlp.protocol=http/protobuf, otel.resource.attributes=service.name=demo-app, otel.metrics.exporter=otlp}
(The otel.exporter.otlp.headers
field is abbreviated for security reasons.)
If you still don't see your logs, traces and metrics in Grafana, even though the configuration looks good, you can turn on debug logging to what data the application is emitting.
Adds global (resource) attributes to metrics, traces and logs.
For example, you can add service.version
to make it easier to see if a new version of the application is causing a problem.
The attributes service.name
, service.version
, and service.instance.id
are automatically detected as outlined below.
For service.name
the order of precedence is:
- environment variable OTEL_SERVICE_NAME
- environment variable OTEL_RESOURCE_ATTRIBUTES
- Manually set service_name in grafana.otlp.grafana.otlp.globalAttributes
- spring.application.name" in application.properties
- 'Implementation-Title' in jar's MANIFEST.MF
The following block can be added to build.gradle to set the application name and version in the jar's MANIFEST.MF:
bootJar { manifest { attributes('Implementation-Title': 'Demo Application', 'Implementation-Version': version) } }The
service.instance.id
attribute will be set if any of the following return a value. The list is in order of precedence. - InetAddress.getLocalHost().getHostName()
- environment variable HOSTNAME
- environment variable HOST
Log all metrics, traces, and logs that are created for debugging purposes (in addition to sending them to the backend via OTLP).
This will also send metrics and traces to Loki as an unintended side effect.
Enable or disable the OpenTelemetry integration (default is enabled).
This can be used to disable the integration without removing the dependency.
The Zone can be found when you click on "Details" in the "Grafana" section on grafana.com.
Use onprem.grafana.otlp.onprem.endpoint
instead of grafana.otlp.cloud.zone
when using the Grafana Agent.
The Instance ID can be found when you click on "Details" in the "Grafana" section on grafana.com.
Leave grafana.otlp.cloud.instanceId
empty when using the Grafana Agent.
Create an API key under "Security" / "API Keys" (left side navigation tree) on grafana.com. The role should be "MetricsPublisher"
Leave grafana.otlp.cloud.apiKey
empty when using the Grafana Agent.
The grafana.otlp.onprem.endpoint of the Grafana Agent.
You do not need to set an grafana.otlp.onprem.endpoint
value if your Grafana Agent is running locally with the default gRPC grafana.otlp.onprem.endpoint (localhost:4317).
Use cloud.grafana.otlp.cloud.zone
instead of grafana.otlp.onprem.endpoint
when using the Grafana Cloud.
The grafana.otlp.onprem.protocol used to send OTLP data. Can be either http/protobuf
or grpc
(default).