Skip to content

Commit 351b433

Browse files
authored
Merge pull request #206286 from v-jbasden/jbasden-retire-cloud-services-article
Retiring cloudservices.md in articles/azure-monitor/app folder
2 parents 79c5fca + ce57932 commit 351b433

23 files changed

+34
-318
lines changed

.openpublishing.redirection.azure-monitor.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,11 @@
430430
"source_path_from_root": "/articles/azure-monitor/insights/key-vault-insights-overview.md" ,
431431
"redirect_url": "/azure/key-vault/key-vault-insights-overview",
432432
"redirect_document_id": false
433+
},
434+
{
435+
"source_path_from_root": "/articles/azure-monitor/app/cloudservices.md" ,
436+
"redirect_url": "/azure/azure-monitor/app/azure-web-apps-net-core",
437+
"redirect_document_id": false
433438
}
434439
]
435440
}

articles/azure-monitor/agents/diagnostics-extension-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ See the following articles for details on installing and configuring the diagnos
101101
### Azure Cloud Service (classic) Web and Worker Roles
102102
- [Introduction to Cloud Service Monitoring](../../cloud-services/cloud-services-how-to-monitor.md)
103103
- [Enabling Azure Diagnostics in Azure Cloud Services](../../cloud-services/cloud-services-dotnet-diagnostics.md)
104-
- [Application Insights for Azure cloud services](../app/cloudservices.md)<br>[Trace the flow of a Cloud Services application with Azure Diagnostics](../../cloud-services/cloud-services-dotnet-diagnostics-trace-flow.md)
104+
- [Application Insights for Azure cloud services](../app/azure-web-apps-net-core.md)<br>[Trace the flow of a Cloud Services application with Azure Diagnostics](../../cloud-services/cloud-services-dotnet-diagnostics-trace-flow.md)
105105

106106
### Azure Service Fabric
107107
- [Monitor and diagnose services in a local machine development setup](../../service-fabric/service-fabric-diagnostics-how-to-monitor-and-diagnose-services-locally.md)

articles/azure-monitor/agents/diagnostics-extension-to-application-insights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Example configuration of a sink for Application Insights:
5454

5555
- The **ApplicationInsights** element specifies instrumentation key of the Application insights resource where the Azure diagnostics data is sent.
5656
- If you don't have an existing Application Insights resource, see [Create a new Application Insights resource](../app/create-new-resource.md) for more information on creating a resource and getting the instrumentation key.
57-
- If you are developing a Cloud Service with Azure SDK 2.8 and later, this instrumentation key is automatically populated. The value is based on the **APPINSIGHTS_INSTRUMENTATIONKEY** service configuration setting when packaging the Cloud Service project. See [Use Application Insights with Cloud Services](../app/cloudservices.md).
57+
- If you are developing a Cloud Service with Azure SDK 2.8 and later, this instrumentation key is automatically populated. The value is based on the **APPINSIGHTS_INSTRUMENTATIONKEY** service configuration setting when packaging the Cloud Service project. See [Use Application Insights with Cloud Services](../app/azure-web-apps-net-core.md).
5858

5959
- The **Channels** element contains one or more **Channel** elements.
6060
- The *name* attribute uniquely refers to that channel.
@@ -209,7 +209,7 @@ In the previous configuration, the following lines have the following meanings:
209209
- **You cannot send blob data collected by Azure diagnostics extension to Application Insights.** For example, anything specified under the *Directories* node. For Crash Dumps the actual crash dump is sent to blob storage and only a notification that the crash dump was generated is sent to Application Insights.
210210

211211
## Next Steps
212-
* Learn how to [view your Azure diagnostics information](../app/cloudservices.md) in Application Insights.
212+
* Learn how to [view your Azure diagnostics information](../app/azure-web-apps-net-core.md) in Application Insights.
213213
* Use [PowerShell](../../cloud-services/cloud-services-diagnostics-powershell.md) to enable the Azure diagnostics extension for your application.
214214
* Use [Visual Studio](/visualstudio/azure/vs-azure-tools-diagnostics-for-cloud-services-and-virtual-machines) to enable the Azure diagnostics extension for your application
215215

articles/azure-monitor/agents/diagnostics-extension-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Added Storage Type to PublicConfig. StorageType can be *Table*, *Blob*, *TableAn
152152
Added the ability to route to EventHub.
153153

154154
### Diagnostics extension 1.5
155-
Added the sinks element and the ability to send diagnostics data to [Application Insights](../app/cloudservices.md) making it easier to diagnose issues across your application as well as the system and infrastructure level.
155+
Added the sinks element and the ability to send diagnostics data to [Application Insights](../app/azure-web-apps-net-core.md) making it easier to diagnose issues across your application as well as the system and infrastructure level.
156156

157157
### Azure SDK 2.6 and diagnostics extension 1.3
158158
For Cloud Service projects in Visual Studio, the following changes were made. (These changes also apply to later versions of Azure SDK.)

articles/azure-monitor/app/asp-net-dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ For ASP.NET applications, full SQL query text is collected with the help of byte
105105
| --- | --- |
106106
| Azure Web App |In your web app control panel, [open the Application Insights pane](../../azure-monitor/app/azure-web-apps.md) and enable SQL Commands under .NET |
107107
| IIS Server (Azure VM, on-premises, and so on.) | Either use the [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) NuGet package or use the Status Monitor PowerShell Module to [install the Instrumentation Engine](../../azure-monitor/app/status-monitor-v2-api-reference.md#enable-instrumentationengine) and restart IIS. |
108-
| Azure Cloud Service | Add [startup task to install StatusMonitor](../../azure-monitor/app/cloudservices.md#set-up-status-monitor-to-collect-full-sql-queries-optional) <br> Your app should be onboarded to ApplicationInsights SDK at build time by installing NuGet packages for [ASP.NET](./asp-net.md) or [ASP.NET Core applications](./asp-net-core.md) |
108+
| Azure Cloud Service | Add [startup task to install StatusMonitor](../../azure-monitor/app/azure-web-apps-net-core.md) <br> Your app should be onboarded to ApplicationInsights SDK at build time by installing NuGet packages for [ASP.NET](./asp-net.md) or [ASP.NET Core applications](./asp-net-core.md) |
109109
| IIS Express | Use the [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) NuGet package.
110110
| Azure Web Jobs | Use the [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient) NuGet package.
111111

0 commit comments

Comments
 (0)