From 87967dfeb714749d3a19944e745f918ab965c6b3 Mon Sep 17 00:00:00 2001 From: Mike Wood Date: Sat, 17 Aug 2024 10:09:39 -0400 Subject: [PATCH 1/2] Updating Python Azure Monitor reference from OpenCensus to OpenTelmetry --- docs/observability/recipes-observability.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/observability/recipes-observability.md b/docs/observability/recipes-observability.md index cd89fa96a5..9b0c3924cd 100644 --- a/docs/observability/recipes-observability.md +++ b/docs/observability/recipes-observability.md @@ -30,11 +30,9 @@ The [Azure DevOps Pipelines Report](https://github.com/Azure-Samples/powerbi-pip This dashboard recipe provides observability for AzDO pipelines by displaying various metrics (i.e. average runtime, run outcome statistics, etc.) in a table. Additionally, the second page of the template visualizes pipeline success and failure trends using Power BI charts. Documentation and setup information can be found in the project README. -## Python Logger class for Application Insights using OpenCensus +## Python OpenTelemetry Examples -This repository contains "AppLogger" class which is a python logger class for Application Insights using Opencensus. It also contains sample code that shows the usage of "AppLogger". - -[GitHub Repo](https://github.com/Azure-Samples/azure-monitor-opencensus-python/tree/master/azure_monitor/python_logger_opencensus_azure) +The Azure SDK for Python contains an [Azure Monitor Opentelemetry Distro client library for Python ](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry). You can view samples of how to use the SDK in this [GitHub Repo](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry/samples). With this SDK you can easily collect traces, metrics, and logs. ## Java OpenTelemetry Examples From ab3c5c9d90d00175148b16c8d29f1fb60bb5165e Mon Sep 17 00:00:00 2001 From: Mike Wood Date: Sat, 17 Aug 2024 10:14:57 -0400 Subject: [PATCH 2/2] Change SDK to Library --- docs/observability/recipes-observability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/observability/recipes-observability.md b/docs/observability/recipes-observability.md index 9b0c3924cd..129d4387cb 100644 --- a/docs/observability/recipes-observability.md +++ b/docs/observability/recipes-observability.md @@ -32,7 +32,7 @@ This dashboard recipe provides observability for AzDO pipelines by displaying va ## Python OpenTelemetry Examples -The Azure SDK for Python contains an [Azure Monitor Opentelemetry Distro client library for Python ](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry). You can view samples of how to use the SDK in this [GitHub Repo](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry/samples). With this SDK you can easily collect traces, metrics, and logs. +The Azure SDK for Python contains an [Azure Monitor Opentelemetry Distro client library for Python ](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry). You can view samples of how to use the library in this [GitHub Repo](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-opentelemetry/samples). With this library you can easily collect traces, metrics, and logs. ## Java OpenTelemetry Examples