Idle load balancers: the ~$16/month each you forgot to delete"

2026年8月19日4 次浏览来源:Dev.to阅读原文

Short version: An Application or Network Load Balancer costs ~$0.0225/hour, about $16/month, just to exist, plus capacity units.

Classic Load Balancers run ~$18/month.

Load balancers outlive the services behind them: the app gets torn down, the ALB keeps billing.

Here's how to find load balancers with no real traffic or no healthy targets, and remove them safely.

Why idle load balancers linger The hourly base charge is fixed - an ALB with zero requests bills the same ~$16/month as a busy one.

Load balancers are usually created early (with an app or an IaC module) and deleted last, if ever.

A handful of abandoned ALBs from old environments is real, recurring money.

Step 1 - List load balancers and their traffic For an ALB, check request volume over the last 7 days (the metric dimension is the tail of the ARN, e.g. ): Near-zero request counts over a week is a strong idle signal. (For NLBs, use the namespace and .) Step 2 - Check for empty or unhealthy target groups A load balancer with no healthy targets is doing nothing useful: Empty output (no targets) or all alongside near-zero requests is a confident "delete me." Step 3 - Delete safely Caveat: a load balancer with no requests isn't always dead - it might be a disaster-recovery endpoint, a rarely-hit admin panel, or the target of a DNS record something depends on.

Before deleting, check Route 53 (and any external DNS) for records pointing at the load balancer's DNS name, and confirm nothing references it: Then grep your DNS zones for that name.

No references + no traffic + no healthy targets = safe to remove.

Doing it across every account, automatically Pulling CloudWatch for every load balancer by hand doesn't scale.

It's one of the checks in a read-only CLI I built, Cloud Cost Analyzer - its rule flags load balancers serving fewer than 100 requests/day over a 7-day window, alongside 89 other AWS cost rules: It runs in your environment with read-only access, so your AWS credentials never leave it.

Free tier if you want to try it on one account, and dashboards if you want to review or share reports.

Originally published on the Dragon Fractal Cloud Cost Analyzer blog.

分享
Baike.dev

baike.dev helps you discover great languages, frameworks, databases, DevOps and cloud-native tools.

Quick links

About

Contribute

Found a great developer tool? Share it with the community.

Submit a tool
© 2026 baike.dev Developer EncyclopediaUpdated daily · Discover great developer tools