> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rafftechnologies.com/llms.txt
> Use this file to discover all available pages before exploring further.

# View Kubernetes logs and metrics

> Watch workloads, pod logs, node utilization and control-plane health from the dashboard

<sub>Updated August 24, 2026</sub>

The cluster page shows the following without any setup or port-forwarding:

* **Overview / KPI strip** — nodes ready, pods, CPU and memory across the cluster, plus **control-plane health**: etcd latency p99 and 24-hour restart counts. Green means the control plane is healthy; sustained etcd latency above 100 ms or restarts indicate a problem on our side that we are alerted on.
* **Workloads** — everything running in the cluster, read live from the cluster's API server. Read-only: you deploy and change workloads with kubectl, Helm or GitOps; this tab is for tracking. Five sub-tabs:

  * **Deployments / StatefulSets / DaemonSets** — each row shows the namespace, **Ready** count (`2/3` = 2 of 3 replicas ready), the container image with its tag, age, and a status: **Healthy** (all replicas ready), **Pending** (not ready yet, but created less than 10 minutes ago — still starting), **Degraded** (not all replicas ready past that window — worth investigating: check the pod's logs in the Logs tab).
  * **Services** — type, cluster IP and ports of every Service.
  * **Ingresses** — the HTTP routes into the cluster and their hosts.

  Filter by name or namespace to find a specific workload. A workload stuck **Degraded** with a rising restart count in the Logs tab is the usual sign of a crash loop or a failing image pull.

<Frame>
  <img src="https://mintcdn.com/rafftechnologiesllc/pydLUQqixwIwkrCw/images/products/compute/kubernetes/workloads-tab.png?fit=max&auto=format&n=pydLUQqixwIwkrCw&q=85&s=dd8022c57a607b1ddf14df1593e72efa" alt="Workloads tab listing deployments with namespace, readiness, image and health" width="1652" height="949" data-path="images/products/compute/kubernetes/workloads-tab.png" />
</Frame>

* **Metrics** — live utilization snapshot from the cluster's metrics-server: cluster-wide CPU, memory, pods and readiness, with a per-node breakdown. Refreshed every 60 seconds.

<Frame>
  <img src="https://mintcdn.com/rafftechnologiesllc/pydLUQqixwIwkrCw/images/products/compute/kubernetes/metrics-tab.png?fit=max&auto=format&n=pydLUQqixwIwkrCw&q=85&s=281b50ac2537531150b5c1564c62486e" alt="Metrics tab with cluster-wide utilization and per-node CPU and memory breakdown" width="1635" height="908" data-path="images/products/compute/kubernetes/metrics-tab.png" />
</Frame>

* **Pods & logs** — live pod list with streaming logs (tail, since, previous container).
* **Nodes** — per-node readiness (Ready / Not ready / Cordoned), CPU and memory.
* **Activity** — every action on the cluster from anyone in your org (dashboard or API), plus lifecycle events: provisioning steps, scaling, autoscaler actions, warnings. Retained for 90 days, exportable as CSV.

<Frame>
  <img src="https://mintcdn.com/rafftechnologiesllc/pydLUQqixwIwkrCw/images/products/compute/kubernetes/activity-feed.png?fit=max&auto=format&n=pydLUQqixwIwkrCw&q=85&s=50190f4c5f1466ba6bfc7d7309bcdce9" alt="Activity tab listing every cluster action with actor, source IP and result" width="1657" height="806" data-path="images/products/compute/kubernetes/activity-feed.png" />
</Frame>

<Frame>
  <img src="https://mintcdn.com/rafftechnologiesllc/pydLUQqixwIwkrCw/images/products/compute/kubernetes/pods-logs.png?fit=max&auto=format&n=pydLUQqixwIwkrCw&q=85&s=c9fa0991e9189a6141626c08827324c2" alt="Logs tab streaming live pod logs with namespace and pod selectors, pause and download" width="1651" height="990" data-path="images/products/compute/kubernetes/pods-logs.png" />
</Frame>

The same data is available on the [metrics](/api-reference/kubernetes/get-cluster-metrics) and [events](/api-reference/kubernetes/list-cluster-events) API endpoints. For monitoring inside the cluster, install **Grafana** or **kube-prometheus-stack** from [App Hub](/products/build/kubernetes/quickstart-guides/install-an-app).
