Skip to content

Commit 508deec

Browse files
committed
edit pass: status-monitor-v2-articles-batch2
1 parent 7d7df70 commit 508deec

5 files changed

+20
-20
lines changed

articles/azure-monitor/app/status-monitor-v2-api-enable-monitoring.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article describes a cmdlet that's a member of the [Az.ApplicationMonitor Po
1919

2020
> [!IMPORTANT]
2121
> Status Monitor v2 is currently in public preview.
22-
> This preview version is provided without a service-level agreement, and we don't recommended it for production workloads. Some features might not be supported, and some might have constrained capabilities.
22+
> This preview version is provided without a service-level agreement, and we don't recommend it for production workloads. Some features might not be supported, and some might have constrained capabilities.
2323
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
2424
2525
## Description
@@ -103,7 +103,7 @@ The instrumentation engine adds overhead and is off by default.
103103
**Optional.** Use this switch to accept the license and privacy statement in headless installations.
104104

105105
### -Verbose
106-
**Common parameter.** Use this switch to output detailed logs.
106+
**Common parameter.** Use this switch to display detailed logs.
107107

108108
### -WhatIf
109109
**Common parameter.** Use this switch to test and validate your input parameters without actually enabling monitoring.
@@ -149,7 +149,7 @@ Successfully enabled Application Insights Status Monitor
149149
View your telemetry:
150150
- [Explore metrics](../../azure-monitor/app/metrics-explorer.md) to monitor performance and usage.
151151
- [Search events and logs](../../azure-monitor/app/diagnostic-search.md) to diagnose problems.
152-
- Use [analytics](../../azure-monitor/app/analytics.md) for more advanced queries.
152+
- [Use Analytics](../../azure-monitor/app/analytics.md) for more advanced queries.
153153
- [Create dashboards](../../azure-monitor/app/overview-dashboard.md).
154154

155155
Add more telemetry:

articles/azure-monitor/app/status-monitor-v2-api-set-config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This document describes a cmdlet that's a member of the [Az.ApplicationMonitor P
2424
2525
## Description
2626

27-
Sets the config file without repeating a full reinstallation.
27+
Sets the config file without performing a full reinstallation.
2828
Restart IIS for your changes to take effect.
2929

3030
> [!IMPORTANT]
@@ -123,13 +123,13 @@ C:\Program Files\WindowsPowerShell\Modules\Az.ApplicationMonitor\content\applica
123123
View your telemetry:
124124
- [Explore metrics](../../azure-monitor/app/metrics-explorer.md) to monitor performance and usage.
125125
- [Search events and logs](../../azure-monitor/app/diagnostic-search.md) to diagnose problems.
126-
- [Use analytics](../../azure-monitor/app/analytics.md) for more advanced queries.
126+
- [Use Analytics](../../azure-monitor/app/analytics.md) for more advanced queries.
127127
- [Create dashboards](../../azure-monitor/app/overview-dashboard.md).
128128

129129
Add more telemetry:
130130
- [Create web tests](monitor-web-app-availability.md) to make sure your site stays live.
131131
- [Add web client telemetry](../../azure-monitor/app/javascript.md) to see exceptions from web page code and to enable trace calls.
132-
- [Add Application Insights SDK to your code](../../azure-monitor/app/asp-net.md) so you can insert trace and log calls
132+
- [Add the Application Insights SDK to your code](../../azure-monitor/app/asp-net.md) so you can insert trace and log calls
133133

134134
Do more with Status Monitor v2:
135135
- Use our guide to [troubleshoot](status-monitor-v2-troubleshoot.md) Status Monitor v2.

articles/azure-monitor/app/status-monitor-v2-detailed-instructions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PowerShell needs Administrator-level permissions to make changes to your compute
3939
- Reference: [About Execution Policies](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-6) and [Set-ExecutionPolicy](
4040
https://docs.microsoft.com/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-6
4141
).
42-
- Command: `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process`
42+
- Command: `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process`.
4343
- Optional parameter:
4444
- `-Force`. Bypasses the confirmation prompt.
4545

@@ -86,7 +86,7 @@ These steps will prepare your server to download modules from PowerShell Gallery
8686
8787

8888
1. Run PowerShell as Admin with an elevated execution policy.
89-
2. Install NuGet package provider.
89+
2. Install the NuGet package provider.
9090
- Description: You need this provider to interact with NuGet-based repositories like PowerShell Gallery.
9191
- Reference: [Install-PackageProvider](https://docs.microsoft.com/powershell/module/packagemanagement/install-packageprovider?view=powershell-6).
9292
- Command: `Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201`.
@@ -108,7 +108,7 @@ These steps will prepare your server to download modules from PowerShell Gallery
108108
- Description: By default, PowerShell Gallery is an untrusted repository.
109109
- Reference: [Set-PSRepository](https://docs.microsoft.com/powershell/module/powershellget/set-psrepository?view=powershell-6).
110110
- Command: `Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted`.
111-
- Optional parameters:
111+
- Optional parameter:
112112
- `-Proxy`. Specifies a proxy server for the request.
113113

114114
You'll receive this prompt if PowerShell Gallery isn't trusted:
@@ -119,7 +119,7 @@ These steps will prepare your server to download modules from PowerShell Gallery
119119
'PSGallery'?
120120
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"):
121121

122-
- You can confirm this change and audit all PSRepositories by running the `Get-PSRepository` command.
122+
You can confirm this change and audit all PSRepositories by running the `Get-PSRepository` command.
123123

124124
4. Install the newest version of PowerShellGet.
125125
- Description: This module contains the tooling used to get other modules from PowerShell Gallery. Version 1.0.0.1 ships with Windows 10 and Windows Server. Version 1.6.0 or higher is required. To determine which version is installed, run the `Get-Command -Module PowerShellGet` command.
@@ -129,7 +129,7 @@ These steps will prepare your server to download modules from PowerShell Gallery
129129
- `-Proxy`. Specifies a proxy server for the request.
130130
- `-Force`. Bypasses the "already installed" warning and installs the latest version.
131131

132-
You'll receive this error if you're not using newest version of PowerShellGet:
132+
You'll receive this error if you're not using the newest version of PowerShellGet:
133133

134134
Install-Module : A parameter cannot be found that matches parameter name 'AllowPrerelease'.
135135
At line:1 char:20
@@ -162,15 +162,15 @@ If for any reason you can't connect to the PowerShell module, you can manually d
162162
### Manually download the latest nupkg file
163163

164164
1. Go to https://www.powershellgallery.com/packages/Az.ApplicationMonitor.
165-
2. Select the latest version in the **Version History** table.
165+
2. Select the latest version of the file in the **Version History** table.
166166
3. Under **Installation Options**, select **Manual Download**.
167167

168168
### Option 1: Install into a PowerShell modules directory
169169
Install the manually downloaded PowerShell module into a PowerShell directory so it will be discoverable by PowerShell sessions.
170170
For more information, see [Installing a PowerShell Module](https://docs.microsoft.com/powershell/developer/module/installing-a-powershell-module).
171171

172172

173-
#### Unzip nupkg as a .zip by using Expand-Archive (v1.0.1.0)
173+
#### Unzip nupkg as a zip file by using Expand-Archive (v1.0.1.0)
174174

175175
- Description: The base version of Microsoft.PowerShell.Archive (v1.0.1.0) can't unzip nupkg files. Rename the file with the .zip extension.
176176
- Reference: [Expand-Archive](https://docs.microsoft.com/powershell/module/microsoft.powershell.archive/expand-archive?view=powershell-6).
@@ -216,7 +216,7 @@ If you're installing the module into any other directory, manually import the mo
216216

217217
When you monitor a computer on your private intranet, you'll need to route HTTP traffic through a proxy.
218218

219-
The PowerShell commands to download and install the Az.ApplicationMonitor from the PowerShell Gallery support a `-Proxy` parameter.
219+
The PowerShell commands to download and install Az.ApplicationMonitor from the PowerShell Gallery support a `-Proxy` parameter.
220220
Review the preceding instructions when you write your installation scripts.
221221

222222
The Application Insights SDK will need to send your app's telemetry to Microsoft. We recommend that you configure proxy settings for your app in your web.config file. For more information, see [Application Insights FAQ: Proxy passthrough](https://docs.microsoft.com/azure/azure-monitor/app/troubleshoot-faq#proxy-passthrough).

articles/azure-monitor/app/status-monitor-v2-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2828
> This preview version is provided without a service-level agreement, and we don't recommend it for production workloads. Some features might not be supported, and some might have constrained capabilities.
2929
> For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
3030
31-
## Download and install the module via PowerShell Gallery
31+
## Download and install via PowerShell Gallery
3232

3333
### Install prerequisites
3434
Run PowerShell as Admin.
@@ -54,9 +54,9 @@ Enable-ApplicationInsightsMonitoring -InstrumentationKey xxxxxxxx-xxxx-xxxx-xxxx
5454
```
5555

5656
57-
## Download and install the module manually (offline option)
57+
## Download and install manually (offline option)
5858
### Download the module
59-
Manually download the latest version of the module from https://www.powershellgallery.com/packages/Az.ApplicationMonitor.
59+
Manually download the latest version of the module from [PowerShell Gallery](https://www.powershellgallery.com/packages/Az.ApplicationMonitor).
6060

6161
### Unzip and install Status Monitor v2
6262
```powershell

articles/azure-monitor/app/status-monitor-v2-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.author: tilee
1717

1818
Status Monitor v2 is a PowerShell module published to the [PowerShell Gallery](https://www.powershellgallery.com/packages/Az.ApplicationMonitor).
1919
It replaces [Status Monitor](https://docs.microsoft.com/azure/azure-monitor/app/monitor-performance-live-website-now).
20-
This module provides codeless instrumentation of .NET web apps hosted with IIS.
20+
The module provides codeless instrumentation of .NET web apps hosted with IIS.
2121
Telemetry is sent to the Azure portal, where you can [monitor](https://docs.microsoft.com/azure/azure-monitor/app/app-insights-overview) your app.
2222

2323
> [!IMPORTANT]
@@ -27,11 +27,11 @@ Telemetry is sent to the Azure portal, where you can [monitor](https://docs.micr
2727
2828
## PowerShell Gallery
2929

30-
The PowerShell Gallery is located at https://www.powershellgallery.com/packages/Az.ApplicationMonitor.
30+
The PowerShell Gallery is located here: https://www.powershellgallery.com/packages/Az.ApplicationMonitor.
3131

3232

3333
## Instructions
34-
- See the [getting started instructions](status-monitor-v2-get-started.md) to get started with concise code samples.
34+
- See the [getting started instructions](status-monitor-v2-get-started.md) to get a start with concise code samples.
3535
- See the [detailed instructions](status-monitor-v2-detailed-instructions.md) for a deep dive on how to get started.
3636

3737
## PowerShell API reference

0 commit comments

Comments
 (0)