From 214673e848640dbf50fba1c0fe0d621584ef03ca Mon Sep 17 00:00:00 2001 From: Alex Breazu Date: Mon, 20 Apr 2026 20:55:04 +0000 Subject: [PATCH 1/4] Change title per new spec --- content/en/docs/languages/python/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/python/getting-started.md b/content/en/docs/languages/python/getting-started.md index 390818d58b93..3eb4d1bffa99 100644 --- a/content/en/docs/languages/python/getting-started.md +++ b/content/en/docs/languages/python/getting-started.md @@ -1,5 +1,5 @@ --- -title: Getting Started +title: Getting Started by Example description: Get telemetry for your app in less than 5 minutes! weight: 10 # prettier-ignore From bd182b0a6e5dab0fdc682d830d04d60c641b3761 Mon Sep 17 00:00:00 2001 From: Alex Breazu Date: Mon, 20 Apr 2026 20:55:34 +0000 Subject: [PATCH 2/4] Add Python to intro statement --- content/en/docs/languages/python/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/python/getting-started.md b/content/en/docs/languages/python/getting-started.md index 3eb4d1bffa99..88658e8f7c9f 100644 --- a/content/en/docs/languages/python/getting-started.md +++ b/content/en/docs/languages/python/getting-started.md @@ -8,7 +8,7 @@ cSpell:ignore: debugexporter diceroller distro maxlen randint rolldice rollspan This page will show you how to get started with OpenTelemetry in Python. -You will learn how you can instrument a simple application automatically, in +You will learn how you can instrument a simple Python application automatically, in such a way that [traces][], [metrics][], and [logs][] are emitted to the console. From 048e85d26d3409f7708990b2a4f7f8d5a2caf301 Mon Sep 17 00:00:00 2001 From: Alex Breazu Date: Mon, 20 Apr 2026 20:57:33 +0000 Subject: [PATCH 3/4] Fix small typo --- content/en/docs/languages/python/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/languages/python/getting-started.md b/content/en/docs/languages/python/getting-started.md index 88658e8f7c9f..dc4748ce0bbf 100644 --- a/content/en/docs/languages/python/getting-started.md +++ b/content/en/docs/languages/python/getting-started.md @@ -769,7 +769,7 @@ docker run -p 4317:4317 ` {{% /tab %}} {{< /tabpane >}} -You will now have an collector instance running locally, listening on port 4317. +You will now have a collector instance running locally, listening on port 4317. ### Modify the command to export spans and metrics via OTLP From 4db840d83c605d50d368e46b0612b06d79983242 Mon Sep 17 00:00:00 2001 From: Alex Breazu Date: Tue, 21 Apr 2026 13:41:22 +0000 Subject: [PATCH 4/4] Run prettier --- content/en/docs/languages/python/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/languages/python/getting-started.md b/content/en/docs/languages/python/getting-started.md index dc4748ce0bbf..ada5fa9fcd43 100644 --- a/content/en/docs/languages/python/getting-started.md +++ b/content/en/docs/languages/python/getting-started.md @@ -8,8 +8,8 @@ cSpell:ignore: debugexporter diceroller distro maxlen randint rolldice rollspan This page will show you how to get started with OpenTelemetry in Python. -You will learn how you can instrument a simple Python application automatically, in -such a way that [traces][], [metrics][], and [logs][] are emitted to the +You will learn how you can instrument a simple Python application automatically, +in such a way that [traces][], [metrics][], and [logs][] are emitted to the console. ## Prerequisites