Skip to content

Commit d633dd7

Browse files
Merge pull request #229801 from gracewehner/grace/prom-030623
Prometheus feature support update and TSG clarification
2 parents a98f1a3 + 9504e1d commit d633dd7

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

articles/azure-monitor/essentials/prometheus-metrics-enable.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,21 +330,21 @@ Deploy the template with the parameter file using any valid method for deploying
330330

331331
## Verify Deployment
332332

333-
Run the following command to verify that the daemon set was deployed properly:
333+
Run the following command to verify that the DaemonSet was deployed properly:
334334

335335
```
336336
kubectl get ds ama-metrics-node --namespace=kube-system
337337
```
338338

339-
The output should resemble the following:
339+
The number of pods should be equal to the number of nodes on the cluster. The output should resemble the following:
340340

341341
```
342342
User@aksuser:~$ kubectl get ds ama-metrics-node --namespace=kube-system
343343
NAME DESIRED CURRENT READY UP-TO-DATE AVAILABLE NODE SELECTOR AGE
344344
ama-metrics-node 1 1 1 1 1 <none> 10h
345345
```
346346

347-
Run the following command to which verify that the replica set was deployed properly:
347+
Run the following command to which verify that the ReplicaSets were deployed properly:
348348

349349
```
350350
kubectl get rs --namespace=kube-system
@@ -358,12 +358,16 @@ NAME DESIRED CURRENT READY AGE
358358
ama-metrics-5c974985b8 1 1 1 11h
359359
ama-metrics-ksm-5fcf8dffcd 1 1 1 11h
360360
```
361+
## Feature Support
361362

363+
- ARM64 and Mariner nodes are supported.
364+
- HTTP Proxy is supported and will use the same settings as the HTTP Proxy settings for the AKS cluster configured with [these instructions](/articles/aks/http-proxy.md).
362365

363366
## Limitations
364367

365368
- CPU and Memory requests and limits can't be changed for Container insights metrics addon. If changed, they'll be reconciled and replaced by original values in a few seconds.
366-
- Metrics addon doesn't work on AKS clusters configured with HTTP proxy.
369+
- Azure Monitor Private Link (AMPLS) is not currently supported.
370+
- Only public clouds are currently supported.
367371

368372

369373
## Uninstall metrics addon

articles/azure-monitor/essentials/prometheus-metrics-troubleshoot.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ ms.reviewer: aul
1111

1212
Follow the steps in this article to determine the cause of Prometheus metrics not being collected as expected in Azure Monitor.
1313

14+
Note that the ReplicaSet pod scrapes metrics from `kube-state-metrics` and custom scrape targets in the `ama-metrics-prometheus-config` configmap. The DaemonSet pods scrape metrics from the following targets on their respective node: `kubelet`, `cAdvisor`, `node-exporter`, and custom scrape targets in the `ama-metrics-prometheus-config-node` configmap. The pod that you will want to view the logs and the Prometheus UI for will depend on which scrape target you are investigating.
15+
1416
## Pod status
1517

1618
Check the pod status with the following command:

0 commit comments

Comments
 (0)