Skip to content

Commit 7f3cfd3

Browse files
committed
Fixing link and improving Acrolinx score to 80
1 parent 3cb5326 commit 7f3cfd3

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

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/azure-web-apps-net-core.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

articles/cloud-services/cloud-services-configuration-and-management-faq.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ summary: |
5555
- [How do I add `nosniff` to my website?](#how-do-i-add--nosniff--to-my-website-)
5656
- [How do I customize IIS for a web role?](#how-do-i-customize-iis-for-a-web-role-)
5757
- [What is the quota limit for my Cloud Service?](#what-is-the-quota-limit-for-my-cloud-service-)
58-
- [Why does the drive on my Cloud Service VM show very little free disk space?](#why-does-the-drive-on-my-cloud-service-vm-show-very-little-free-disk-space-)
58+
- [Why does the drive on my Cloud Service VM show little free disk space?](#why-does-the-drive-on-my-cloud-service-vm-show-very-little-free-disk-space-)
5959
- [How can I add an Antimalware extension for my Cloud Services in an automated way?](#how-can-i-add-an-antimalware-extension-for-my-cloud-services-in-an-automated-way-)
6060
- [How to enable Server Name Indication (SNI) for Cloud Services?](#how-to-enable-server-name-indication--sni--for-cloud-services-)
6161
- [How can I add tags to my Azure Cloud Service?](#how-can-i-add-tags-to-my-azure-cloud-service--)
@@ -86,7 +86,7 @@ sections:
8686
8787
[Obtaining a certificate for use with Windows Azure Web Sites (WAWS)](https://azure.microsoft.com/blog/obtaining-a-certificate-for-use-with-windows-azure-web-sites-waws/)
8888
89-
The CSR is just a text file. It does not have to be created from the machine where the certificate will ultimately be used. Although this document is written for an App Service, the CSR creation is generic and applies also for Cloud Services.
89+
The CSR is just a text file. It doesn't have to be created from the machine where the certificate will ultimately be used. Although this document is written for an App Service, the CSR creation is generic and applies also for Cloud Services.
9090
9191
- question: |
9292
My Cloud Service Management Certificate is expiring. How to renew it?
@@ -129,12 +129,12 @@ sections:
129129
```
130130
Ability to choose blob or local for your csdef and cscfg upload location is coming soon. Using [New-AzureDeployment](/powershell/module/servicemanagement/azure.service/new-azuredeployment), you can set each location value.
131131
132-
Ability to monitor metrics at the instance level. Additional monitoring capabilities are available in [How to Monitor Cloud Services](cloud-services-how-to-monitor.md).
132+
Ability to monitor metrics at the instance level. More monitoring capabilities are available in [How to Monitor Cloud Services](cloud-services-how-to-monitor.md).
133133
134134
- question: |
135135
Why does IIS stop writing to the log directory?
136136
answer: |
137-
You have exhausted the local storage quota for writing to the log directory. To correct this, you can do one of three things:
137+
You've exhausted the local storage quota for writing to the log directory. To correct this, you can do one of three things:
138138
* Enable diagnostics for IIS and have the diagnostics periodically moved to blob storage.
139139
* Manually remove log files from the logging directory.
140140
* Increase quota limit for local resources.
@@ -199,7 +199,7 @@ sections:
199199
- question: |
200200
How to enable HTTP/2 on Cloud Services VM?
201201
answer: |
202-
Windows 10 and Windows Server 2016 come with support for HTTP/2 on both client and server side. If your client (browser) is connecting to the IIS server over TLS that negotiates HTTP/2 via TLS extensions, then you do not need to make any change on the server-side. This is because, over TLS, the h2-14 header specifying use of HTTP/2 is sent by default. If on the other hand your client is sending an Upgrade header to upgrade to HTTP/2, then you need to make the change below on the server side to ensure that the Upgrade works and you end up with an HTTP/2 connection.
202+
Windows 10 and Windows Server 2016 come with support for HTTP/2 on both client and server side. If your client (browser) is connecting to the IIS server over TLS that negotiates HTTP/2 via TLS extensions, then you don't need to make any change on the server-side. This is because, over TLS, the h2-14 header specifying use of HTTP/2 is sent by default. If on the other hand your client is sending an Upgrade header to upgrade to HTTP/2, then you need to make the change below on the server side to ensure that the Upgrade works and you end up with an HTTP/2 connection.
203203
204204
1. Run regedit.exe.
205205
2. Browse to registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP\Parameters.
@@ -251,9 +251,9 @@ sections:
251251
- name: Scaling
252252
questions:
253253
- question: |
254-
I cannot scale beyond X instances
254+
I can't scale beyond X instances
255255
answer: |
256-
Your Azure Subscription has a limit on the number of cores you can use. Scaling will not work if you have used all the cores available. For example, if you have a limit of 100 cores, this means you could have 100 A1 sized virtual machine instances for your Cloud Service, or 50 A2 sized virtual machine instances.
256+
Your Azure Subscription has a limit on the number of cores you can use. Scaling won't work if you have used all the cores available. For example, if you have a limit of 100 cores, this means you could have 100 A1 sized virtual machine instances for your Cloud Service, or 50 A2 sized virtual machine instances.
257257
258258
- question: |
259259
How can I configure Auto-Scale based on Memory metrics?
@@ -312,7 +312,7 @@ sections:
312312
313313
The %approot% drive size is calculated as <size of .cspkg + max journal size + a margin of free space>, or 1.5 GB, whichever is larger. The size of your VM has no bearing on this calculation. (The VM size only affects the size of the temporary C: drive.) 
314314
315-
It is unsupported to write to the %approot% drive. If you are writing to the Azure VM, you must do so in a temporary LocalStorage resource (or other option, such as Blob storage, Azure Files, etc.). So the amount of free space on the %approot% folder is not meaningful. If you are not sure if your application is writing to the %approot% drive, you can always let your service run for a few days and then compare the "before" and "after" sizes. 
315+
It's unsupported to write to the %approot% drive. If you're writing to the Azure VM, you must do so in a temporary LocalStorage resource (or other option, such as Blob storage, Azure Files, etc.). So the amount of free space on the %approot% folder is not meaningful. If you aren't sure if your application is writing to the %approot% drive, you can always let your service run for a few days and then compare the "before" and "after" sizes. 
316316
317317
Azure will not write anything to the %approot% drive. Once the VHD is created from your `.cspkg` and mounted into the Azure VM, the only thing that might write to this drive is your application. 
318318
@@ -369,12 +369,12 @@ sections:
369369
- question: |
370370
How can I add tags to my Azure Cloud Service?
371371
answer: |
372-
Cloud Service is a Classic resource. Only resources created through Azure Resource Manager support tags. You cannot apply tags to Classic resources such as Cloud Service.
372+
Cloud Service is a Classic resource. Only resources created through Azure Resource Manager support tags. You can't apply tags to Classic resources such as Cloud Service.
373373
374374
- question: |
375375
The Azure portal doesn't display the SDK version of my Cloud Service. How can I get that?
376376
answer: |
377-
We are working on bringing this feature on the Azure portal. Meanwhile, you can use following PowerShell commands to get the SDK version:
377+
We're working on bringing this feature on the Azure portal. Meanwhile, you can use following PowerShell commands to get the SDK version:
378378
379379
```powershell
380380
Get-AzureService -ServiceName "<Cloud Service name>" | Get-AzureDeployment | Where-Object -Property SdkVersion -NE -Value "" | select ServiceName,SdkVersion,OSVersion,Slot
@@ -383,9 +383,9 @@ sections:
383383
- question: |
384384
I want to shut down the Cloud Service for several months. How to reduce the billing cost of Cloud Service without losing the IP address?
385385
answer: |
386-
An already deployed Cloud Service gets billed for the Compute and Storage it uses. So even if you shut down the Azure VM, you will still get billed for the Storage.
386+
An already deployed Cloud Service gets billed for the Compute and Storage it uses. So even if you shut down the Azure VM, you'll still get billed for the Storage.
387387
388-
Here is what you can do to reduce your billing without losing the IP address for your service:
388+
Here's what you can do to reduce your billing without losing the IP address for your service:
389389
390390
1. [Reserve the IP address](/previous-versions/azure/virtual-network/virtual-networks-reserved-public-ip) before you delete the deployments. You will only be billed for this IP address. For more information about IP address billing, see [IP addresses pricing](https://azure.microsoft.com/pricing/details/ip-addresses/).
391391
2. Delete the deployments. Don’t delete the xxx.cloudapp.net, so that you can use it for future.

0 commit comments

Comments
 (0)