Skip to content

Commit 79e17fa

Browse files
committed
Adding TOC and other links
1 parent b96fb12 commit 79e17fa

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

articles/azure-monitor/app/opentelemetry-dotnet-migrate.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ If you're getting started with Application Insights and don't need to migrate fr
4444

4545
---
4646

47+
> [!Tip]
48+
> Our product group is actively seeking feedback on this documentation. Provide feedback to [email protected] or see the [Support](#support) section.
49+
4750
## Remove the Application Insights SDK
4851

4952
> [!Note]
@@ -245,6 +248,9 @@ If you're getting started with Application Insights and don't need to migrate fr
245248
246249
---
247250
251+
> [!Tip]
252+
> Our product group is actively seeking feedback on this documentation. Provide feedback to [email protected] or see the [Support](#support) section.
253+
248254
## Enable OpenTelemetry
249255
250256
We recommended creating a development [resource](./create-workspace-resource.md) and using its [connection string](./sdk-connection-string.md) when following these instructions.
@@ -476,6 +482,9 @@ public class Program
476482

477483
---
478484

485+
> [!Tip]
486+
> Our product group is actively seeking feedback on this documentation. Provide feedback to [email protected] or see the [Support](#support) section.
487+
479488
## Install and Configure Instrumentation Libraries
480489

481490
### [ASP.NET Core](#tab/aspnetcore)
@@ -1020,6 +1029,9 @@ The following scenarios are optional and apply to advanced users.
10201029

10211030
---
10221031

1032+
> [!Tip]
1033+
> Our product group is actively seeking feedback on this documentation. Provide feedback to otel@microsoft.com or see the [Support](#support) section.
1034+
10231035
## Frequently asked questions
10241036

10251037
This section is for customers who use telemetry initializers or processors, or write custom code against the classic Application Insights API to create custom telemetry.
@@ -1527,4 +1539,35 @@ TelemetryClient.TrackPageView()
15271539
* [Logging in C# and .NET](/dotnet/core/extensions/logging)
15281540
* [Azure Monitor OpenTelemetry getting started with .NET](./opentelemetry-enable.md?tabs=net)
15291541

1542+
---
1543+
1544+
> [!Tip]
1545+
> Our product group is actively seeking feedback on this documentation. Provide feedback to otel@microsoft.com or see the [Support](#support) section.
1546+
1547+
## Support
1548+
1549+
### [ASP.NET Core](#tab/aspnetcore)
1550+
1551+
- For Azure support issues, open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/).
1552+
- For OpenTelemetry issues, contact the [OpenTelemetry .NET community](https://github.com/open-telemetry/opentelemetry-dotnet) directly.
1553+
- For a list of open issues related to Azure Monitor Exporter, see the [GitHub Issues Page](https://github.com/Azure/azure-sdk-for-net/issues?q=is%3Aopen+is%3Aissue+label%3A%22Monitor+-+Exporter%22).
1554+
1555+
#### [.NET](#tab/net)
1556+
1557+
- For Azure support issues, open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/).
1558+
- For OpenTelemetry issues, contact the [OpenTelemetry .NET community](https://github.com/open-telemetry/opentelemetry-dotnet) directly.
1559+
- For a list of open issues related to Azure Monitor Exporter, see the [GitHub Issues Page](https://github.com/Azure/azure-sdk-for-net/issues?q=is%3Aopen+is%3Aissue+label%3A%22Monitor+-+Exporter%22).
1560+
1561+
### [Console](#tab/console)
1562+
1563+
- For Azure support issues, open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/).
1564+
- For OpenTelemetry issues, contact the [OpenTelemetry .NET community](https://github.com/open-telemetry/opentelemetry-dotnet) directly.
1565+
- For a list of open issues related to Azure Monitor Exporter, see the [GitHub Issues Page](https://github.com/Azure/azure-sdk-for-net/issues?q=is%3Aopen+is%3Aissue+label%3A%22Monitor+-+Exporter%22).
1566+
1567+
### [WorkerService](#tab/workerservice)
1568+
1569+
- For Azure support issues, open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/).
1570+
- For OpenTelemetry issues, contact the [OpenTelemetry .NET community](https://github.com/open-telemetry/opentelemetry-dotnet) directly.
1571+
- For a list of open issues related to Azure Monitor Exporter, see the [GitHub Issues Page](https://github.com/Azure/azure-sdk-for-net/issues?q=is%3Aopen+is%3Aissue+label%3A%22Monitor+-+Exporter%22).
1572+
15301573
---

articles/azure-monitor/app/opentelemetry-enable.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,16 @@ Follow the steps in this section to instrument your application with OpenTelemet
3838

3939
- [ASP.NET Core Application](/aspnet/core/introduction-to-aspnet-core) using an officially supported version of [.NET](https://dotnet.microsoft.com/download/dotnet)
4040

41+
> [!Tip]
42+
> If you're migrating from the Application Insights Classic API, see our [migration documentation](./opentelemetry-dotnet-migrate.md).
43+
4144
### [.NET](#tab/net)
4245

4346
- Application using an officially supported version of [.NET Core](https://dotnet.microsoft.com/download/dotnet) or [.NET Framework](https://dotnet.microsoft.com/download/dotnet-framework) that's at least .NET Framework 4.6.2
4447

48+
> [!Tip]
49+
> If you're migrating from the Application Insights Classic API, see our [migration documentation](./opentelemetry-dotnet-migrate.md).
50+
4551
### [Java](#tab/java)
4652

4753
- A Java application using Java 8+
@@ -55,10 +61,16 @@ Follow the steps in this section to instrument your application with OpenTelemet
5561
- [OpenTelemetry supported runtimes](https://github.com/open-telemetry/opentelemetry-js#supported-runtimes)
5662
- [Azure Monitor OpenTelemetry Exporter supported runtimes](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/monitor/monitor-opentelemetry-exporter#currently-supported-environments)
5763

64+
> [!Tip]
65+
> If you're migrating from the Application Insights Classic API, see our [migration documentation](./opentelemetry-nodejs-migrate.md).
66+
5867
### [Python](#tab/python)
5968

6069
- Python Application using Python 3.8+
6170

71+
> [!Tip]
72+
> If you're migrating from OpenCensus, see our [migration documentation](./opentelemetry-python-opencensus-migrate.md).
73+
6274
---
6375

6476
### Install the client library

articles/azure-monitor/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ items:
8484
href: app/opentelemetry-configuration.md
8585
- name: Add and modify OpenTelemetry
8686
href: app/opentelemetry-add-modify.md
87+
- name: .NET (supplemental)
88+
items:
89+
- name: Migrate from Application Insights .NET SDKs to OpenTelemetry
90+
href: app/opentelemetry-dotnet-migrate.md
8791
- name: Java (supplemental)
8892
items:
8993
- name: Spring Boot

0 commit comments

Comments
 (0)