35 lines
961 B
Markdown
35 lines
961 B
Markdown
---
|
|
title: Instrumentation Examples
|
|
linkTitle: Examples
|
|
aliases:
|
|
- /docs/java/instrumentation_examples
|
|
- /docs/instrumentation/java/instrumentation_examples
|
|
weight: 4
|
|
---
|
|
|
|
Here are some of the resources for Opentelemetry instrumentation examples.
|
|
|
|
## Community Resources
|
|
|
|
### boot-opentelemetry-tempo
|
|
|
|
Project demonstrating Complete Observability Stack utilizing
|
|
[Prometheus](https://prometheus.io/), [Loki](https://grafana.com/oss/loki/)
|
|
(_For distributed logging_), [Tempo](https://grafana.com/oss/tempo/) (_For
|
|
Distributed tracing, this basically uses Jaeger Internally_),
|
|
[Grafana](https://grafana.com/grafana/) for **Java/spring** based applications
|
|
(_With OpenTelemetry auto / manual Instrumentation_) involving multiple
|
|
microservices with DB interactions
|
|
|
|
Checkout
|
|
[boot-opentelemetry-tempo](https://github.com/mnadeem/boot-opentelemetry-tempo)
|
|
and get started
|
|
|
|
````console
|
|
$ mvn clean package docker:build
|
|
````
|
|
|
|
````console
|
|
$ docker-compose up
|
|
````
|