From 54d540a1bede2328ff108fdc1ccd468a83d74bc1 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 21 Mar 2025 09:43:13 +0100 Subject: [PATCH 1/2] docs: update Python features --- docs/_edot-sdks/features.yml | 24 ++++++++++++------------ docs/_edot-sdks/index.md | 24 +++++++++++++++++++----- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/docs/_edot-sdks/features.yml b/docs/_edot-sdks/features.yml index 010084a8..dbb7391a 100644 --- a/docs/_edot-sdks/features.yml +++ b/docs/_edot-sdks/features.yml @@ -41,7 +41,7 @@ features: min_version: Python: status: ga - min_version: + min_version: 1.0 Android: status: ga min_version: @@ -65,8 +65,8 @@ features: status: min_version: Python: - status: - min_version: + status: ga + min_version: 1.0 Android: status: min_version: @@ -90,8 +90,8 @@ features: status: min_version: Python: - status: - min_version: + status: ga + min_version: 1.0 Android: status: min_version: @@ -115,8 +115,8 @@ features: status: min_version: Python: - status: - min_version: + status: ga + min_version: 1.0 Android: status: min_version: @@ -164,7 +164,7 @@ features: status: ga min_version: Python: - status: ga + status: tech-preview min_version: Android: status: @@ -189,7 +189,7 @@ features: status: ga min_version: Python: - status: ga + status: tech-preview min_version: Android: status: @@ -214,7 +214,7 @@ features: min_version: Python: status: ga - min_version: + min_version: 1.0 Android: status: min_version: @@ -239,7 +239,7 @@ features: min_version: Python: status: ga - min_version: + min_version: 1.0 Android: status: min_version: @@ -313,7 +313,7 @@ features: min_version: Python: status: ga - min_version: + min_version: 1.0 Android: status: ga min_version: diff --git a/docs/_edot-sdks/index.md b/docs/_edot-sdks/index.md index 41305b67..ea554662 100644 --- a/docs/_edot-sdks/index.md +++ b/docs/_edot-sdks/index.md @@ -127,6 +127,8 @@ For languages for which Elastic does not offer its own distribution, we recommen
+
1.0+
+
'Service Map' is available in EDOT Python since version 1.0
@@ -151,7 +153,9 @@ For languages for which Elastic does not offer its own distribution, we recommen
-
+
+
1.0+
+
'Zero-code instrumentation' is available in EDOT Python since version 1.0
@@ -176,7 +180,9 @@ For languages for which Elastic does not offer its own distribution, we recommen
-
+
+
1.0+
+
'Head-based Sampling' is available in EDOT Python since version 1.0
@@ -201,7 +207,9 @@ For languages for which Elastic does not offer its own distribution, we recommen
-
+
+
1.0+
+
'Baggage' is available in EDOT Python since version 1.0
@@ -251,7 +259,7 @@ For languages for which Elastic does not offer its own distribution, we recommen
-
+
𝐓
@@ -276,7 +284,7 @@ For languages for which Elastic does not offer its own distribution, we recommen
-
+
𝐓
@@ -302,6 +310,8 @@ For languages for which Elastic does not offer its own distribution, we recommen
+
1.0+
+
'Metrics Collection' is available in EDOT Python since version 1.0
@@ -327,6 +337,8 @@ For languages for which Elastic does not offer its own distribution, we recommen
+
1.0+
+
'Custom Metrics' is available in EDOT Python since version 1.0
@@ -402,6 +414,8 @@ For languages for which Elastic does not offer its own distribution, we recommen
+
1.0+
+
'Capturing Errors / Exceptions' is available in EDOT Python since version 1.0
From 675c6fc4cf07f932454d4fae6e46fe4c424240fb Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 21 Mar 2025 09:48:24 +0100 Subject: [PATCH 2/2] Ignore Python __pycache__ --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index eb496e24..c2db5b59 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,8 @@ docs/vendor docs/Gemfile.lock # Mac OS -**/.DS_Store \ No newline at end of file +**/.DS_Store + +# Python + +__pycache__