From 3ccbb125850c61e7d8c461f705b1a9164f0e7dc5 Mon Sep 17 00:00:00 2001 From: WanLinghao Date: Mon, 17 Dec 2018 13:28:43 +0800 Subject: [PATCH] cAdvisor web UI port has been deprecated since v1.10. This patch updates the description about it. (#11426) * cAdvisor web UI port has been deprecated since v1.10. This patch update the description about it. * Update resource-usage-monitoring.md * Update resource-usage-monitoring.md --- .../debug-application-cluster/resource-usage-monitoring.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/en/docs/tasks/debug-application-cluster/resource-usage-monitoring.md b/content/en/docs/tasks/debug-application-cluster/resource-usage-monitoring.md index 609adc498c..805e77a847 100644 --- a/content/en/docs/tasks/debug-application-cluster/resource-usage-monitoring.md +++ b/content/en/docs/tasks/debug-application-cluster/resource-usage-monitoring.md @@ -52,10 +52,14 @@ The Kubelet acts as a bridge between the Kubernetes master and the nodes. It man cAdvisor is an open source container resource usage and performance analysis agent. It is purpose-built for containers and supports Docker containers natively. In Kubernetes, cAdvisor is integrated into the Kubelet binary. cAdvisor auto-discovers all containers in the machine and collects CPU, memory, filesystem, and network usage statistics. cAdvisor also provides the overall machine usage by analyzing the 'root' container on the machine. -On most Kubernetes clusters, cAdvisor exposes a simple UI for on-machine containers on port 4194. Here is a snapshot of part of cAdvisor's UI that shows the overall machine usage: +Kubelet exposes a simple cAdvisor UI for containers on a machine, via the default port 4194. +The picture below is an example showing the overall machine usage. However, this feature has been marked +deprecated in v1.10 and completely removed in v1.12. ![cAdvisor](/images/docs/cadvisor.png) +Starting from v1.13, you can [deploy cAdvisor as a DaemonSet](https://github.com/google/cadvisor/tree/master/deploy/kubernetes) for an access to the cAdvisor UI. + ## Full metrics pipelines Many full metrics solutions exist for Kubernetes.