hub MarionetteOps Monitor orchestration
arrow_back Blog

Kubernetes Checks That Fit on One Screen

Kubernetes 1.36 gives teams a mature platform, but the best first dashboard still focuses on customer paths, workload health, and capacity.

The platform can hide simple questions

Kubernetes has become normal infrastructure for many teams. With Kubernetes 1.36 current in 2026, the project is mature, widely supported, and full of useful primitives.

It is also easy to build dashboards that are too large to help during an incident. Pods, deployments, nodes, services, ingress, jobs, volumes, autoscalers, and controllers all matter. During the first five minutes, the team still needs simple answers.

Start from the customer path

The first line of a Kubernetes dashboard should show whether the application works from the outside. Public uptime, TLS, ingress routing, and key synthetic checks should sit above internal cluster detail.

If customers cannot log in, it is secondary whether the pod count is technically correct. Start with the promise the service makes, then drill down.

Keep workload health close to capacity

A compact Kubernetes view should include:

  • External uptime and latency
  • Deployment availability
  • Pod restarts and crash loops
  • Pending pods
  • Node pressure
  • CPU and memory requests versus usage
  • Persistent volume capacity
  • Ingress or gateway error rates
  • Job and cron job failures

These signals tell you whether the system is broken, under-provisioned, or waiting on scheduling.

Watch rollout behavior

Many Kubernetes incidents are release incidents. Monitor rollout status, image pull failures, readiness probe failures, and changes in restart rate after deploys. A workload can have the desired replica count while still failing readiness checks or serving traffic badly.

Readiness and liveness probes should match real application behavior. A process that can answer /healthz while its database connection pool is exhausted is not healthy in the way customers care about.

Make escalation boring

The best Kubernetes dashboard lets the first responder decide where to go next: ingress, workload, node, storage, dependency, or code release. It does not need to explain the whole cluster on one screen.

Kubernetes gives you detail. Monitoring should give you direction.