Kubernetes Metrics Server

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

The Kubernetes metrics server, also referred to as "metrics-server" is a lightweight, short-term, in-memory cluster-wide aggregator of resource usage data. It collects and exposes resource metrics. metrics-server is used as part of the Kubernetes resource metrics pipeline. The metrics server discovers all nodes on the cluster and queries each node's kubelet for resource metrics (CPU and memory) then exposes these metric via the Resource Metrics API. The Resource Metrics API is not available if the metrics server is not deployed. The API is served at /metrics/resource/v1beta1 on the kubelet's authenticated and read-only ports. The metrics server is registered with the main API through Kubernetes aggregator and operates as an extension API server.

The metrics server is not meant for non-autoscaling purposes. It should not be used to forward metrics to monitoring solutions, or as a source of monitoring solution metrics. Use full monitoring solutions like Prometheus.

Operations