Skip to content

Commit 4dea7ba

Browse files
authored
Merge pull request #89686 from mrbullwinkle/mrb_09_25_2019_update_screenshots
add screenshot borders
2 parents e683a61 + 33cf210 commit 4dea7ba

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/azure-monitor/app/eventcounters.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ The following example shows how to add/remove counters. This customization would
9696

9797
To view EventCounter metrics in [Metric Explorer](https://docs.microsoft.com/azure/azure-monitor/platform/metrics-charts), select Application Insights resource, and chose Log-based metrics as metric namespace. Then EventCounter metrics get displayed under PerformanceCounter category.
9898

99-
![Event counters reported in Application Insights](./media/event-counters/metrics-explorer-counter-list.png)
99+
> [!div class="mx-imgBorder"]
100+
> ![Event counters reported in Application Insights](./media/event-counters/metrics-explorer-counter-list.png)
100101
101102
## Event counters in Analytics
102103

@@ -108,7 +109,8 @@ For example, run the following query to see what counters are collected and avai
108109
performanceCounters | summarize avg(value) by name
109110
```
110111

111-
![Event counters reported in Application Insights](./media/event-counters/analytics-event-counters.png)
112+
> [!div class="mx-imgBorder"]
113+
> ![Event counters reported in Application Insights](./media/event-counters/analytics-event-counters.png)
112114
113115
To get a chart of a specific counter (for example: `ThreadPool Completed Work Item Count`) over the recent period, run the following query.
114116

@@ -119,8 +121,8 @@ performanceCounters
119121
| summarize avg(value) by cloud_RoleInstance, bin(timestamp, 1m)
120122
| render timechart
121123
```
122-
123-
![Chat of a single counter in Application Insights](./media/event-counters/analytics-completeditems-counters.png)
124+
> [!div class="mx-imgBorder"]
125+
> ![Chat of a single counter in Application Insights](./media/event-counters/analytics-completeditems-counters.png)
124126
125127
Like other telemetry, **performanceCounters** also has a column `cloud_RoleInstance` that indicates the identity of the host server instance on which your app is running. The above query shows the counter value per instance, and can be used to compare performance of different server instances.
126128

0 commit comments

Comments
 (0)