Skip to content

Commit ac0db1d

Browse files
Merge pull request #242248 from AbbyMSFT/metric-screenshots
Update screenshots
2 parents 09f779f + 92e8bc2 commit ac0db1d

File tree

8 files changed

+110
-110
lines changed

8 files changed

+110
-110
lines changed

articles/azure-monitor/alerts/alerts-metric-multiple-time-series-single-rule.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ An alert rule monitors a single time series when it meets all the following cond
3030

3131
An example of such an alert rule, with only the relevant properties shown:
3232

33-
- **Target resource**: *myVM1*
34-
- **Metric**: *Percentage CPU*
33+
- **Target resource**: *VM-a*
34+
- **Signal**: *Percentage CPU*
3535
- **Operator**: *Greater Than*
36-
- **Threshold**: *70*
36+
- **Threshold**: *80*
3737

3838
For this alert rule, a single metric time series is monitored:
3939

40-
- Percentage CPU where *Resource*=’myVM1’ > 70%
40+
- Percentage CPU where *Resource*=’VM-a’ > 80%
4141

4242
![Screenshot that shows an alert rule on a single time series.](media/alerts-metric-multiple-time-series-single-rule/simple-alert-rule.png)
4343

@@ -55,26 +55,26 @@ A single metric alert rule can monitor multiple resources, provided the resource
5555

5656
An example of such an alert rule:
5757

58-
- **Target resource**: *myVM1, myVM2*
59-
- **Metric**: *Percentage CPU*
58+
- **Target resource**: *VM-a, myVM2*
59+
- **Signal**: *Percentage CPU*
6060
- **Operator**: *Greater Than*
61-
- **Threshold**: *70*
61+
- **Threshold**: *80*
6262

6363
For this alert rule, two metric time series are monitored separately:
6464

65-
- Percentage CPU where *Resource*=’myVM1’ > 70%
66-
- Percentage CPU where *Resource*=’myVM2’ > 70%
65+
- Percentage CPU where *Resource*=’VM-a’ > 80%
66+
- Percentage CPU where *Resource*=’myVM2’ > 80%
6767

6868
![Screenshot that shows a multi-resource alert rule.](media/alerts-metric-multiple-time-series-single-rule/multi-resource-alert-rule.png)
6969

7070
In a multi-resource alert rule, the condition is evaluated separately for each of the resources (or more accurately, for each of the metric time series corresponded to each resource). As a result, alerts are also fired for each resource separately.
7171

72-
For example, assume we've set the preceding alert rule to monitor for CPU above 70%. In the evaluated time period, that is, the last 5 minutes:
72+
For example, assume we've set the preceding alert rule to monitor for CPU above 80%. In the evaluated time period, that is, the last 5 minutes:
7373

74-
- The *Percentage CPU* of *myVM1* is greater than 70%.
74+
- The *Percentage CPU* of *VM-a* is greater than 80%.
7575
- The *Percentage CPU* of *myVM2* is at 50%.
7676

77-
The alert rule triggers on *myVM1* but not *myVM2*. These triggered alerts are independent. They can also resolve at different times depending on the individual behavior of each of the virtual machines.
77+
The alert rule triggers on *VM-a* but not *VM-b*. These triggered alerts are independent. They can also resolve at different times depending on the individual behavior of each of the virtual machines.
7878

7979
For more information about multi-resource alert rules and the resource types supported for this capability, see [Monitoring at scale using metric alerts in Azure Monitor](alerts-types.md#monitor-multiple-resources).
8080

@@ -87,20 +87,20 @@ A single metric alert rule can also monitor up to five conditions per alert rule
8787

8888
For example:
8989

90-
- **Target resource**: *myVM1*
90+
- **Target resource**: *VM-a*
9191
- Condition1
92-
- **Metric**: *Percentage CPU*
92+
- **Signa**: *Percentage CPU*
9393
- **Operator**: *Greater Than*
94-
- **Threshold**: *70*
94+
- **Threshold**: *80*
9595
- Condition2
96-
- **Metric**: *Network In Total*
96+
- **Signal**: *Network In Total*
9797
- **Operator**: *Greater Than*
9898
- **Threshold**: *20 MB*
9999

100100
For this alert rule, two metric time series are being monitored:
101101

102-
- The *Percentage CPU* where *Resource*=’myVM1’ > 70%.
103-
- The *Network In Total* where *Resource*=’myVM1’ > 20 MB.
102+
- The *Percentage CPU* where *Resource*=’VM-a’ > 80%.
103+
- The *Network In Total* where *Resource*=’VM-a’ > 20 MB.
104104

105105
![Screenshot that shows a multi-condition alert rule.](media/alerts-metric-multiple-time-series-single-rule/multi-condition-alert-rule.png)
106106

@@ -117,18 +117,18 @@ For example, you can choose to have an alert fired when the number of transactio
117117

118118
An example of an alert rule monitoring multiple dimensions is:
119119

120-
- **Target resource**: *myStorage1*
121-
- **Metric**: *Transactions*
120+
- **Target resource**: *mystorage1*
121+
- **Signal**: *Transactions*
122122
- **Dimensions**:
123-
* API name = *GetBlob, DeleteBlob, PutPage*
123+
* API name = *EntityGroupTransaction, GetBlob, PutPage*
124124
- **Operator**: *Greater Than*
125-
- **Threshold**: *70*
125+
- **Threshold**: *80*
126126

127127
For this alert rule, three metric time series are being monitored:
128128

129-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’GetBlob’ > 70
130-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’DeleteBlob’ > 70
131-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’PutPage’ > 70
129+
- Transactions where *Resource*=’mystorage1’ and *API Name*=’EntityGroupTransaction’ > 80
130+
- Transactions where *Resource*=’mystorage1’ and *API Name*=’GetBlob’ > 80
131+
- Transactions where *Resource*=’mystorage1’ and *API Name*=’PutPage’ > 80
132132

133133
![Screenshot that shows a multi-dimension alert rule with values from one dimension.](media/alerts-metric-multiple-time-series-single-rule/multi-dimension-1.png)
134134

@@ -137,30 +137,30 @@ A multi-dimension metric alert rule can also monitor multiple dimension values f
137137
An example of this type of alert rule:
138138

139139
- **Target resource**: *myStorage1*
140-
- **Metric**: *Transactions*
140+
- **Signal**: *Transactions*
141141
- **Dimensions**:
142142
* API name = *GetBlob, DeleteBlob, PutPage*
143143
* Authentication = *SAS, AccountKey*
144144
- **Operator**: *Greater Than*
145-
- **Threshold**: *70*
145+
- **Threshold**: *80*
146146

147147
For this alert rule, six metric time series are being monitored separately:
148148

149-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’GetBlob’ and *Authentication*=’SAS’ > 70
150-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’GetBlob’ and *Authentication*=’AccountKey’ > 70
151-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’DeleteBlob’ and *Authentication*=’SAS’ > 70
152-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’DeleteBlob’ and *Authentication*=’AccountKey’ > 70
153-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’PutPage’ and *Authentication*=’SAS’ > 70
154-
- Transactions where *Resource*=’myStorage1’ and *API Name*=’PutPage’ and *Authentication*=’AccountKey’ > 70
149+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’GetBlob’ and *Authentication*=’SAS’ > 80
150+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’GetBlob’ and *Authentication*=’AccountKey’ > 80
151+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’DeleteBlob’ and *Authentication*=’SAS’ > 80
152+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’DeleteBlob’ and *Authentication*=’AccountKey’ > 80
153+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’PutPage’ and *Authentication*=’SAS’ > 80
154+
- Transactions where *Resource*=’myStorage1’ and *API Name*=’PutPage’ and *Authentication*=’AccountKey’ > 80
155155

156156
![Screenshot that shows a multi-dimension alert rule with values from multiple dimensions.](media/alerts-metric-multiple-time-series-single-rule/multi-dimension-2.png)
157157

158158
### Advanced multi-dimension features
159159

160-
- **Select all current and future dimensions**: You can choose to monitor all possible values of a dimension, including future values. Such an alert rule will scale automatically to monitor all values of the dimension without you needing to modify the alert rule every time a dimension value is added or removed.
161-
- **Exclude dimensions**: Selecting the **** (exclude) operator for a dimension value is equivalent to selecting all other values of that dimension, including future values.
162-
- **Add new and custom dimensions**: The dimension values displayed in the Azure portal are based on metric data collected in the last day. If the dimension value you're looking for isn't yet emitted, you can add a custom dimension value.
163-
- **Match dimensions with a prefix**: You can choose to monitor all dimension values that start with a specific pattern by selecting the **Starts with** operator and entering a custom prefix.
160+
1. **Select all current and future dimensions**: You can choose to monitor all possible values of a dimension, including future values. Such an alert rule will scale automatically to monitor all values of the dimension without you needing to modify the alert rule every time a dimension value is added or removed.
161+
1. **Exclude dimensions**: Selecting the **** (exclude) operator for a dimension value is equivalent to selecting all other values of that dimension, including future values.
162+
1. **Add new and custom dimensions**: The dimension values displayed in the Azure portal are based on metric data collected in the last day. If the dimension value you're looking for isn't yet emitted, you can add a custom dimension value.
163+
1. **Match dimensions with a prefix**: You can choose to monitor all dimension values that start with a specific pattern by selecting the **Starts with** operator and entering a custom prefix.
164164

165165
![Screenshot that shows advanced multi-dimension features.](media/alerts-metric-multiple-time-series-single-rule/advanced-features.png)
166166

20.9 KB
Loading
Loading
35.7 KB
Loading
23.3 KB
Loading
26.6 KB
Loading
26.6 KB
Loading

articles/azure-monitor/toc.yml

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -5,86 +5,26 @@ items:
55
items:
66
- name: Azure Monitor overview
77
href: overview.md
8-
- name: Getting started
9-
items:
10-
- name: Get started with Azure Monitor
11-
href: getting-started.md
12-
- name: Plan your implementation
13-
href: best-practices-plan.md
14-
- name: Configure data collection
15-
href: best-practices-data-collection.md
16-
- name: Analysis and visualizations
17-
href: best-practices-analysis.md
18-
- name: Configure alerts and automated actions
19-
href: best-practices-alerts.md
20-
- name: Optimize costs
21-
href: best-practices-cost.md
228
- name: Multicloud monitoring
239
href: best-practices-multicloud.md
2410
- name: What's new?
2511
href: whats-new.md
2612
- name: FAQ
2713
href: faq.yml
28-
- name: Samples
14+
- name: Getting started
2915
items:
30-
- name: Resource Manager templates
31-
items:
32-
- name: Overview
33-
href: resource-manager-samples.md
34-
- name: Agents
35-
href: agents/resource-manager-agent.md
36-
- name: Alerts
37-
items:
38-
- name: Log alert rules
39-
href: alerts/resource-manager-alerts-log.md
40-
- name: Metric alert rules
41-
href: alerts/resource-manager-alerts-metric.md
42-
- name: Activity log alert rules
43-
href: alerts/resource-manager-alerts-activity-log.md
44-
- name: Resource health alert rules
45-
href: alerts/resource-manager-alerts-resource-health.md
46-
- name: Action groups
47-
href: alerts/resource-manager-action-groups.md
48-
- name: Application Insights
49-
items:
50-
- name: Create a resource
51-
href: app/resource-manager-app-resource.md
52-
- name: Container insights
53-
href: containers/resource-manager-container-insights.md
54-
- name: Data collection rules
55-
href: agents/resource-manager-data-collection-rules.md
56-
- name: Data collection endpoints
57-
href: essentials/data-collection-endpoint-sample.md
58-
- name: Diagnostic settings
59-
href: essentials/resource-manager-diagnostic-settings.md
60-
- name: Log Analytics workspaces
61-
href: logs/resource-manager-workspace.md
62-
- name: Log Analytics clusters
63-
href: logs/resource-manager-cluster.md
64-
- name: Log queries
65-
href: logs/resource-manager-log-queries.md
66-
- name: SQL Insights (preview)
67-
href: insights/resource-manager-sql-insights.md
68-
- name: Workbooks
69-
href: visualize/resource-manager-workbooks.md
70-
- name: VM insights
71-
href: vm/resource-manager-vminsights.md
72-
- name: Alerts
73-
href: alerts/alerts-payload-samples.md
74-
- name: Data collection rules
75-
items:
76-
- name: Agent
77-
href: agents/data-collection-rule-sample-agent.md
78-
- name: Custom logs
79-
href: logs/data-collection-rule-sample-custom-logs.md
80-
- name: Monitor Logs in Azure CLI
81-
href: logs\azure-cli-log-analytics-workspace-sample.md
82-
- name: Configure workspaces using PowerShell
83-
href: logs/powershell-workspace-configuration.md
84-
- name: Azure Resource Graph queries
85-
href: ./resource-graph-samples.md
86-
- name: Azure CLI metric alerts
87-
href: azure-cli-metrics-alert-sample.md
16+
- name: Get started with Azure Monitor
17+
href: getting-started.md
18+
- name: Plan your implementation
19+
href: best-practices-plan.md
20+
- name: Configure data collection
21+
href: best-practices-data-collection.md
22+
- name: Analysis and visualizations
23+
href: best-practices-analysis.md
24+
- name: Configure alerts and automated actions
25+
href: best-practices-alerts.md
26+
- name: Optimize costs
27+
href: best-practices-cost.md
8828
- name: Monitoring scenarios
8929
items:
9030
- name: Monitor Azure resources
@@ -1513,6 +1453,66 @@ items:
15131453
href: logs/kql-machine-learning-azure-monitor.md
15141454
- name: Analyze data in Azure Monitor Logs using a notebook
15151455
href: logs/notebooks-azure-monitor-logs.md
1456+
- name: Samples
1457+
items:
1458+
- name: Resource Manager templates
1459+
items:
1460+
- name: Overview
1461+
href: resource-manager-samples.md
1462+
- name: Agents
1463+
href: agents/resource-manager-agent.md
1464+
- name: Alerts
1465+
items:
1466+
- name: Log alert rules
1467+
href: alerts/resource-manager-alerts-log.md
1468+
- name: Metric alert rules
1469+
href: alerts/resource-manager-alerts-metric.md
1470+
- name: Activity log alert rules
1471+
href: alerts/resource-manager-alerts-activity-log.md
1472+
- name: Resource health alert rules
1473+
href: alerts/resource-manager-alerts-resource-health.md
1474+
- name: Action groups
1475+
href: alerts/resource-manager-action-groups.md
1476+
- name: Application Insights
1477+
items:
1478+
- name: Create a resource
1479+
href: app/resource-manager-app-resource.md
1480+
- name: Container insights
1481+
href: containers/resource-manager-container-insights.md
1482+
- name: Data collection rules
1483+
href: agents/resource-manager-data-collection-rules.md
1484+
- name: Data collection endpoints
1485+
href: essentials/data-collection-endpoint-sample.md
1486+
- name: Diagnostic settings
1487+
href: essentials/resource-manager-diagnostic-settings.md
1488+
- name: Log Analytics workspaces
1489+
href: logs/resource-manager-workspace.md
1490+
- name: Log Analytics clusters
1491+
href: logs/resource-manager-cluster.md
1492+
- name: Log queries
1493+
href: logs/resource-manager-log-queries.md
1494+
- name: SQL Insights (preview)
1495+
href: insights/resource-manager-sql-insights.md
1496+
- name: Workbooks
1497+
href: visualize/resource-manager-workbooks.md
1498+
- name: VM insights
1499+
href: vm/resource-manager-vminsights.md
1500+
- name: Alerts
1501+
href: alerts/alerts-payload-samples.md
1502+
- name: Data collection rules
1503+
items:
1504+
- name: Agent
1505+
href: agents/data-collection-rule-sample-agent.md
1506+
- name: Custom logs
1507+
href: logs/data-collection-rule-sample-custom-logs.md
1508+
- name: Monitor Logs in Azure CLI
1509+
href: logs\azure-cli-log-analytics-workspace-sample.md
1510+
- name: Configure workspaces using PowerShell
1511+
href: logs/powershell-workspace-configuration.md
1512+
- name: Azure Resource Graph queries
1513+
href: ./resource-graph-samples.md
1514+
- name: Azure CLI metric alerts
1515+
href: azure-cli-metrics-alert-sample.md
15161516
- name: Reference
15171517
items:
15181518
- name: Service limits

0 commit comments

Comments
 (0)