You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/containers/container-insights-metric-alerts.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,13 @@ The methods currently available for creating Prometheus alert rules are Azure Re
41
41
42
42
1. Download the template that includes the set of alert rules you want to enable. For a list of the rules for each, see [Alert rule details](#alert-rule-details).
2. Deploy the template by using any standard methods for installing ARM templates. For guidance, see [ARM template samples for Azure Monitor](../resource-manager-samples.md#deploy-the-sample-templates).
48
47
49
48
### [Bicep template](#tab/bicep)
50
49
51
-
1. To deploy community and recommended alerts, follow this [template](https://aka.ms/azureprometheus-alerts-bicep) and follow the README.md file in the same folder for how to deploy.
50
+
1. To deploy recommended metric alerts, follow this [template](https://aka.ms/azureprometheus-recommendedmetricalertsbicep) and follow the README.md file in the same folder for how to deploy.
52
51
53
52
54
53
@@ -111,7 +110,7 @@ The configuration change can take a few minutes to finish before it takes effect
111
110
### Prerequisites
112
111
113
112
You might need to enable collection of custom metrics for your cluster. See [Metrics collected by Container insights](container-insights-custom-metrics.md).
114
-
113
+
115
114
### Enable and configure metric alert rules
116
115
117
116
#### [Azure portal](#tab/azure-portal)
@@ -181,7 +180,7 @@ The following sections present information on the alert rules provided by Contai
181
180
182
181
### Community alert rules
183
182
184
-
These handpicked alerts come from the Prometheus community. Source code for these mixin alerts can be found in [GitHub](https://aka.ms/azureprometheus-communityalerts):
183
+
These handpicked alerts come from the Prometheus community. Source code for these mixin alerts can be found in [GitHub](https://aka.ms/azureprometheus-recommendedmetricalerts):
185
184
186
185
| Alert name | Description | Default threshold |
187
186
|:---|:---|:---|
@@ -207,7 +206,7 @@ These handpicked alerts come from the Prometheus community. Source code for thes
207
206
### Recommended alert rules
208
207
209
208
The following table lists the recommended alert rules that you can enable for either Prometheus metrics or custom metrics.
210
-
Source code for the recommended alerts can be found in [GitHub](https://github.com/Azure/prometheus-collector/blob/68ab5b195a77d72b0b8e36e5565b645c3d1e2d5d/mixins/kubernetes/rules/recording_and_alerting_rules/templates/ci_recommended_alerts.json):
209
+
Source code for the recommended alerts can be found in [GitHub](https://aka.ms/azureprometheus-recommendedmetricalerts):
211
210
212
211
| Prometheus alert name | Custom metric alert name | Description | Default threshold |
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/bicep/bicep-extensibility-kubernetes-provider.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,21 @@ ms.date: 04/18/2023
10
10
11
11
The Kubernetes provider allows you to create Kubernetes resources directly with Bicep. Bicep can deploy anything that can be deployed with the [Kubernetes command-line client (kubectl)](https://kubernetes.io/docs/reference/kubectl/kubectl/) and a [Kubernetes manifest file](../../aks/concepts-clusters-workloads.md#deployments-and-yaml-manifests).
12
12
13
+
> [!NOTE]
14
+
> Kubernetes provider is not currently supported for private clusters:
15
+
>
16
+
> ```json
17
+
> resource AKS 'Microsoft.ContainerService/managedClusters@2023-01-02-preview' = {
18
+
> properties: {
19
+
> "apiServerAccessProfile": {
20
+
> "enablePrivateCluster": "true"
21
+
> }
22
+
> }
23
+
> }
24
+
>
25
+
> ```
26
+
>
27
+
13
28
## Enable the preview feature
14
29
15
30
This preview feature can be enabled by configuring the [bicepconfig.json](./bicep-config.md):
To run your R script, you'll use the `ml` extension for Azure CLI, also referred to as CLI v2. The `ml` command uses a YAML job definitions file. For more information about submitting jobs with `az ml`, see [Train models with Azure Machine Learning CLI](how-to-train-model.md?tabs=azurecli#4-submit-the-training-job).
255
+
To run your R script, you'll use the `ml` extension for Azure CLI, also referred to as CLI v2. The `ml` command uses a YAML job definitions file. For more information about submitting jobs with `az ml`, see [Train models with Azure Machine Learning CLI](how-to-train-model.md?tabs=azurecli#3-submit-the-training-job).
256
256
257
257
The YAML job file specifies an [environment](concept-environments.md). You'll need to create this environment in your workspace before you can run the job.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-train-model.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ When you train using the REST API, data and training scripts must be uploaded to
136
136
### 2. Create a compute resource for training
137
137
138
138
> [!NOTE]
139
-
> To try [serverless compute](./how-to-use-serverless-compute.md), skip this step and proceed to [4. Submit the training job](#4-submit-the-training-job).
139
+
> To try [serverless compute](./how-to-use-serverless-compute.md), skip this step and proceed to [3. Submit the training job](#3-submit-the-training-job).
140
140
141
141
An Azure Machine Learning compute cluster is a fully managed compute resource that can be used to run the training job. In the following examples, a compute cluster named `cpu-compute` is created.
0 commit comments