diff --git a/Dockerfile b/Dockerfile index 1c36361..91fd022 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ RUN apt-get -qq update RUN apt-get -qq install \ python3 \ python3-pip \ + python-is-python3 \ docker-ce \ docker-ce-cli \ containerd.io \ diff --git a/tutorial/content/labs/instrumentation/manual/traces/index.md b/tutorial/content/labs/instrumentation/manual/traces/index.md index ac49443..102eb60 100644 --- a/tutorial/content/labs/instrumentation/manual/traces/index.md +++ b/tutorial/content/labs/instrumentation/manual/traces/index.md @@ -57,7 +57,7 @@ def create_tracing_pipeline() -> BatchSpanProcessor: return span_processor ``` -Inside the `src` directory, create a new file `trace_utils.py`. +Inside the `src` directory, create a new file `trace_utils.py` with the code displayed above. We'll use it to separate tracing-related configuration from the main application. At the top of the file, specify the imports as shown above. Create a new function `create_tracing_pipeline`.