From b2ee3e1d71588cfacda60d207c81aba4789bb085 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Sun, 21 Nov 2021 12:05:03 -0500 Subject: [PATCH] [website_docs] Use console code-block style, and spellcheck (#3920) --- website_docs/instrumentation_examples.md | 26 +++++++++++++++--------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/website_docs/instrumentation_examples.md b/website_docs/instrumentation_examples.md index 994a39186b..4ee0d5fbf5 100644 --- a/website_docs/instrumentation_examples.md +++ b/website_docs/instrumentation_examples.md @@ -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 ```` - -