From 562ad490c55d8134318db0d5c9bd0166a1accfe3 Mon Sep 17 00:00:00 2001 From: Jan-Niklas Tille Date: Tue, 16 Apr 2024 21:23:24 +0200 Subject: [PATCH] remove questions and optional content from manual instrumentaion labs --- .../labs/instrumentation/manual/logs/index.md | 2 ++ .../labs/instrumentation/manual/metrics/index.md | 15 +++++++++------ .../labs/instrumentation/manual/traces/index.md | 3 +++ 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/tutorial/content/labs/instrumentation/manual/logs/index.md b/tutorial/content/labs/instrumentation/manual/logs/index.md index 189785b..0f89403 100644 --- a/tutorial/content/labs/instrumentation/manual/logs/index.md +++ b/tutorial/content/labs/instrumentation/manual/logs/index.md @@ -184,6 +184,7 @@ Since no tracing is set up, the `trace_id` and `span_id` are `0`. There are many * https://github.com/open-telemetry/opentelemetry-python * https://opentelemetry-python-contrib.readthedocs.io/en/latest/instrumentation/logging/logging.html + \ No newline at end of file diff --git a/tutorial/content/labs/instrumentation/manual/metrics/index.md b/tutorial/content/labs/instrumentation/manual/metrics/index.md index 39db237..198b219 100644 --- a/tutorial/content/labs/instrumentation/manual/metrics/index.md +++ b/tutorial/content/labs/instrumentation/manual/metrics/index.md @@ -638,6 +638,11 @@ If we pass `DropAggregation`, the SDK will ignore all measurements from the matc You have now seen some basic examples of how Views let us match instruments and customize the metrics stream. Feel free to add these code snippets to `create_views` and observe the changes in the output. +## finish + +Congratulations on successfully completing the lab on metrics! + + - -## finish - -Congratulations on successfully completing the lab on metrics! - + \ No newline at end of file diff --git a/tutorial/content/labs/instrumentation/manual/traces/index.md b/tutorial/content/labs/instrumentation/manual/traces/index.md index 9401b85..abc792f 100644 --- a/tutorial/content/labs/instrumentation/manual/traces/index.md +++ b/tutorial/content/labs/instrumentation/manual/traces/index.md @@ -486,6 +486,7 @@ Now, the service should recognize the tracing header of the incoming request and Finally, context propagation is working as expected. If we were to export spans to a tracing backend, it could analyze the SpanContext of the individual objects and piece together a distributed trace. + + ## finish Congratulations on successfully completing the lab on distributed tracing with OpenTelemetry.