Skip to content

Commit a77700e

Browse files
authored
Merge pull request #52267 from stevevi/patch-10
Update documentation-government-services-monitoringandmanagement.md
2 parents 78c0f7c + 3e9bcba commit a77700e

File tree

1 file changed

+0
-95
lines changed

1 file changed

+0
-95
lines changed

articles/azure-government/documentation-government-services-monitoringandmanagement.md

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,6 @@ For more information, see [Site Recovery commercial documentation](../site-recov
8181
The following Site Recovery features are not currently available in Azure Government:
8282
* Email notification
8383

84-
| Site Recovery | Classic | Resource Manager |
85-
| --- | --- | --- |
86-
| VMware/Physical  | GA | GA |
87-
| Hyper-V | GA | GA |
88-
| Site to Site | GA | GA |
89-
9084
The following URLs for Site Recovery are different in Azure Government:
9185

9286
| Azure Public | Azure Government | Notes |
@@ -101,95 +95,6 @@ Azure Monitor is generally available in Azure Government.
10195

10296
For more information, see [Monitor commercial documentation](https://docs.microsoft.com/azure/monitoring-and-diagnostics/monitoring-overview).
10397

104-
### Variations
105-
The following sections detail differences and workarounds for features of Azure Monitor in Azure Government:
106-
107-
#### Action Groups
108-
Action Groups are generally available in Azure Government with no differences from commercial Azure.
109-
110-
#### Activity Log Alerts
111-
Activity Log Alerts are generally available in Azure Government with no differences from commercial Azure.
112-
113-
#### Alerts Experience
114-
The unified alerts UI experience is available for metric and log alerts in Azure Government.
115-
116-
#### Autoscale
117-
Autoscale is generally available in Azure Government.
118-
119-
If you are using PowerShell/ARM/REST calls to specify settings, set the "Location" of the Autoscale to "USGov Virginia" or "USGov Iowa". The resource targeted by Autoscale can exist in any region. An example of the setting is below:
120-
121-
```powershell
122-
$rule1 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/S1/resourceGroups/RG1/providers/Microsoft.Web/sites/WebSite1" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:05:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "1"
123-
$rule2 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/S1/resourceGroups/RG1/providers/Microsoft.Web/sites/WebSite1" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:10:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "2"
124-
$profile1 = New-AzAutoscaleProfile -DefaultCapacity 2 -MaximumCapacity 10 -MinimumCapacity 2 -Rules $rule1, $rule2 -Name "MyProfile"
125-
$webhook_scale = New-AzAutoscaleWebhook -ServiceUri https://example.com?mytoken=mytokenvalue
126-
$notification1= New-AzAutoscaleNotification -CustomEmails [email protected] -SendEmailToSubscriptionAdministrator -SendEmailToSubscriptionCoAdministrators -Webhooks $webhook_scale
127-
Add-AzAutoscaleSetting -Location "USGov Virginia" -Name "MyScaleVMSSSetting" -ResourceGroup sdubeys-usgv -TargetResourceId /subscriptions/s1/resourceGroups/rg1/providers/Microsoft.Web/serverFarms/ServerFarm1 -AutoscaleProfiles $profile1 -Notifications $notification1
128-
```
129-
130-
If you are interested in implementing autoscale on your resources, use PowerShell/ARM/Rest calls to specify the settings.
131-
132-
For more information on using PowerShell, see [public documentation](https://docs.microsoft.com/azure/monitoring-and-diagnostics/insights-powershell-samples#create-and-manage-autoscale-settings).
133-
134-
#### Metrics
135-
Metrics are generally available in Azure Government. However, multi-dimensional metrics are supported only via the REST API. The ability to [show multi-dimensional metrics](../azure-monitor/platform/metrics-charts.md) is in preview in the Azure Government portal.
136-
137-
#### Metric Alerts
138-
The first generation of metrics alerts is generally available in both Azure Government and commercial Azure. The first generation is called *Alerts (Classic)*. The second generation of metric alerts (also called the [unified alerts experience](../azure-monitor/platform/alerts-overview.md)) is now also available, but with a reduced set of resource providers [compared to the public cloud](../azure-monitor/platform/alerts-metric-near-real-time.md). More will be added over time.
139-
140-
The resources currently supported in the second generation alerts experience are:
141-
- Microsoft.ApiManagement/service
142-
- Microsoft.Cache/redis
143-
- Microsoft.Compute/virtualMachines
144-
- Microsoft.DBforMySQL/servers
145-
- Microsoft.DBforPostgreSQL/servers
146-
- Microsoft.DBforMariaDB/servers
147-
- Microsoft.Devices/IotHubs
148-
- Microsoft.EventGrid/domains
149-
- Microsoft.EventGrid/topics
150-
- Microsoft.EventHub/clusters
151-
- Microsoft.EventHub/namespaces
152-
- Microsoft.Insights/components
153-
- Microsoft.Network/dnsZones
154-
- Microsoft.Network/loadBalancers
155-
- Microsoft.Network/natGateways
156-
- Microsoft.Network/privateEndpoints
157-
- Microsoft.Network/privateLinkServices
158-
- Microsoft.Network/trafficManagerProfiles
159-
- Microsoft.OperationalInsights/workspaces
160-
- Microsoft.PowerBIDedicated/capacities
161-
- Microsoft.Relay/namespaces
162-
- Microsoft.ServiceBus/namespaces
163-
- Microsoft.Sql/managedInstances
164-
- Microsoft.Sql/servers/databases
165-
- Microsoft.Sql/servers/elasticPools
166-
- Microsoft.Storage/storageAccounts
167-
- Microsoft.Storage/storageAccounts/blobServices
168-
- Microsoft.Storage/storageAccounts/fileServices
169-
- Microsoft.Storage/storageAccounts/queueServices
170-
- Microsoft.Storage/storageAccounts/tableServices
171-
- Microsoft.Web/hostingEnvironments/multiRolePools
172-
- Microsoft.Web/hostingEnvironments/workerPools
173-
- Microsoft.Web/serverfarms
174-
- Microsoft.Web/sites
175-
- Microsoft.Web/sites/slots
176-
177-
> [!NOTE]
178-
> Creating multi-resource metric alert rules on Virtual Machines is **currently not supported**. This article will be updated as soon as this functionality becomes available.
179-
180-
You can still use [classic alerts](../azure-monitor/platform/alerts-classic.overview.md) for resources not yet available in the second generation of alerts.
181-
182-
When using PowerShell/ARM/Rest calls to create metric alerts, you will need to set the "Location" of the metric alert to "USGov Virginia" or "USGov Iowa". An example of the setting is below:
183-
184-
```powershell
185-
$actionEmail = New-AzAlertRuleEmail -CustomEmail [email protected]
186-
$actionWebhook = New-AzAlertRuleWebhook -ServiceUri https://example.com?token=mytoken
187-
Add-AzMetricAlertRule -Name vmcpu_gt_1 -Location "USGov Virginia" -ResourceGroup myrg1 -TargetResourceId /subscriptions/s1/resourceGroups/myrg1/providers/Microsoft.ClassicCompute/virtualMachines/my_vm1 -MetricName "Percentage CPU" -Operator GreaterThan -Threshold 1 -WindowSize 00:05:00 -TimeAggregationOperator Average -Actions $actionEmail, $actionWebhook -Description "alert on CPU > 1%"
188-
```
189-
190-
For more information on using PowerShell, see [public documentation](../azure-monitor/platform/powershell-quickstart-samples.md).
191-
192-
19398
## Application Insights
19499

195100
This section describes the supplemental configuration that is required to use Application Insights in Azure Government. To learn more about Azure Monitor and Application Insights checkout the [full documentation](https://docs.microsoft.com/azure/azure-monitor/overview).

0 commit comments

Comments
 (0)