forked from open-telemetry/opentelemetry-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[website_docs] Use console code-block style, and spellcheck
Contributes to open-telemetry/opentelemetry.io#948 and open-telemetry/opentelemetry.io#949. /cc @austinlparker
- Loading branch information
Showing
1 changed file
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,30 @@ | ||
--- | ||
title: "Instrumentation Examples" | ||
title: Instrumentation Examples | ||
weight: 4 | ||
--- | ||
|
||
Here are Some of the resources for Opentelemetry Instrumentation Examples | ||
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 | ||
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 | ||
Checkout | ||
[boot-opentelemetry-tempo](https://github.com/mnadeem/boot-opentelemetry-tempo) | ||
and get started | ||
|
||
````bash | ||
mvn clean package docker:build | ||
````console | ||
$ mvn clean package docker:build | ||
```` | ||
|
||
````bash | ||
docker-compose up | ||
````console | ||
$ docker-compose up | ||
```` | ||
|
||
|