← Docs|Understanding Results

Understanding Your Results

A complete guide to interpreting your Kubernetes waste audit.

Waste Categories

Over-Provisioned Memory

When pods have limits that are more than 2x their requests.

Example:

requests:
memory: 500Mi
limits:
memory: 2Gi # 4x over!

Cost: You're reserving 1.5GB of unused memory = ~$11/month wasted

Over-Provisioned CPU

When pods have CPU limits that are more than 3x their requests.

Example:

requests:
cpu: 100m
limits:
cpu: 1000m # 10x over!

Cost: You're reserving 0.85 cores unused = ~$18/month wasted

Unbound Storage

PersistentVolumes that are provisioned but not attached to any pod.

Example: A 100GB PV sitting unused = $10/month wasted

Orphaned Load Balancers

LoadBalancer services with no backend pods (empty selector).

Cost: Each idle load balancer = ~$20/month wasted

Key Metrics Explained

Annual Waste

Total money you could save per year by right-sizing resources. This is the headline number.

Monthly Waste

Same as annual, but divided by 12. Easier to compare against your monthly cloud bill.

Pods Over-Prov.

Number of pods where limits are significantly higher than requests. These are your "quick wins."

No Requests

Pods with no resource requests set. This is dangerous - they can starve other pods.

What's a Normal Amount of Waste?

10-20%:Excellent! You're well-optimized.

20-40%:Typical. Most clusters have this much waste.

40-60%:High waste. Significant savings opportunity.

>60%:Critical. Review your resource settings ASAP.