Skip to content

Commit 6c8416c

Browse files
authored
Update performance-counters.md
1 parent 2fc03c9 commit 6c8416c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-monitor/app/performance-counters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If the performance counter you want isn't included in the list of metrics, you c
6262

6363
For more information, see [`Get-Counter`](/powershell/module/microsoft.powershell.diagnostics/get-counter).
6464

65-
1. Open ApplicationInsights.config.
65+
1. Open `ApplicationInsights.config`.
6666

6767
If you added Application Insights to your app during development:
6868
1. Edit `ApplicationInsights.config` in your project.
@@ -85,7 +85,7 @@ If the performance counter you want isn't included in the list of metrics, you c
8585

8686
You can capture both standard counters and counters you've implemented yourself. `\Objects\Processes` is an example of a standard counter that's available on all Windows systems. `\Sales(photo)\# Items Sold` is an example of a custom counter that might be implemented in a web service.
8787

88-
The format is `\Category(instance)\Counter"`, or for categories that don't have instances, just `\Category\Counter`.
88+
The format is `\Category(instance)\Counter`, or for categories that don't have instances, just `\Category\Counter`.
8989
9090
The `ReportAs` parameter is required for counter names that don't match `[a-zA-Z()/-_ \.]+`. That is, they contain characters that aren't in the following sets: letters, round brackets, forward slash, hyphen, underscore, space, and dot.
9191
@@ -101,7 +101,7 @@ To collect system performance counters and send them to Application Insights, yo
101101
perfCollectorModule.Initialize(TelemetryConfiguration.Active);
102102
```
103103
104-
Or you can do the same thing with custom metrics you created:
104+
Or you can do the same thing with custom metrics that you created:
105105
106106
```csharp
107107
var perfCollectorModule = new PerformanceCollectorModule();
@@ -180,4 +180,4 @@ Like other metrics, you can [set an alert](../alerts/alerts-log.md) to warn you
180180
## <a name="next"></a>Next steps
181181
182182
* [Dependency tracking](./asp-net-dependencies.md)
183-
* [Exception tracking](./asp-net-exceptions.md)
183+
* [Exception tracking](./asp-net-exceptions.md)

0 commit comments

Comments
 (0)