Container Resource Monitoring with Docker stats

In partnership with

TechOps Examples

Hey β€” It's Govardhana MK πŸ‘‹

Along with a use case deep dive, we identify the remote job opportunities, top news, tools, and articles in the TechOps industry.

πŸ‘‹ Before we begin... a big thank you to today's sponsor SUPERHUMAN AI

Find out why 1M+ professionals read Superhuman AI daily.

In 2 years you will be working for AI

Or an AI will be working for you

Here's how you can future-proof yourself:

  1. Join the Superhuman AI newsletter – read by 1M+ people at top companies

  2. Master AI tools, tutorials, and news in just 3 minutes a day

  3. Become 10X more productive using AI

Join 1,000,000+ pros at companies like Google, Meta, and Amazon that are using AI to get ahead.

IN TODAY'S EDITION

🧠 Use Case
  • Container Resource Monitoring with Docker stats

πŸš€ Top News

πŸ‘€ Remote Jobs

πŸ“šοΈ Resources

πŸ“’ Reddit Threads

πŸ› οΈ TOOL OF THE DAY

gama - A new terminal-based UI tool, streamlines GitHub Actions workflow management by allowing users to list, trigger, and monitor workflows directly from the terminal.

Features a live mode for automatic status updates.

🧠 USE CASE

Container Resource Monitoring with Docker stats

Most Docker users are missing out on native monitoring features and running behind shiny expensive tools.

Of course, better tools are not bad, but when you've got so much valuable information within Docker itself, it's a mistake to overlook gems like docker stats

Need to check container CPU, memory, and network usage? Use docker stats

It saves cost, simplifies debugging, and helps with capacity planning without relying on external monitoring.

when you run docker stats, you'll see an output similar to this:

Every column in the docker stats output tells a story about your container's resource usage. Let's break them down:

1. CPU % (CPU Usage)
  • Represents the % of total CPU resources used by the container.

  • Can exceed 100% in multi-core systems (e.g., 200% means 2 full cores).

Usage Levels:
βœ… <10% β†’ Low usage, mostly idle
⚠️ 10-50% β†’ Moderate usage, normal for many workloads
🚨 >80% β†’ High CPU usage, check for bottlenecks

πŸ’‘ Limit CPU usage when running a container:

docker run --cpus="1.5" your_container

2. MEM USAGE / LIMIT (Memory Usage and Limits)
  • MEM USAGE β†’ The actual memory being used by the container.

  • MEM LIMIT β†’ The maximum memory allocated for the container (if set). If no limit is defined, it shows the total host memory.

3. MEM % (Memory Percentage)

Memory usage relative to its limit.

Formula: Memory % = (MEM USAGE / MEM LIMIT) * 100

βœ… <50% β†’ Optimal
⚠️ 50-80% β†’ Keep an eye on it
🚨 >80% β†’ May trigger OOM events

4. NET I/O (Network Traffic)
  • Shows data received and transmitted by the container.

  • Useful for detecting unexpected spikes or bottlenecks.

βœ… Low network activity? Your app might be idle.
⚠️ High network I/O? Check for excessive data transfer or possible leaks.

πŸ’‘ Use tcpdump inside the container to inspect traffic

docker exec -it <container_id> tcpdump -i eth0

5. BLOCK I/O (Disk Read/Write Operations)
  • First value: Data read by the container

  • Second value: Data written by the container

βœ… <10MB β†’ Low, expected for lightweight apps.
⚠️ 10MB - 500MB β†’ Moderate, common for logging, caching.
🚨 500MB - 5GB β†’ High, likely frequent file operations or active databases.
πŸ”₯ >5GB β†’ Excessive! Check for inefficient logging, batch jobs.

πŸ’‘ Fix High Disk I/O:

  • Excessive logs? Limit log file size

    docker run --log-opt max-size=10m --log-opt max-file=3 my_container

  • Database-heavy? Add caching (Redis) & optimize queries.

6. PIDS (Number of Processes in the Container)

Represents active processes inside the container.

βœ… 1-10 β†’ Simple applications
⚠️ 10-50 β†’ Moderate complexity
🚨 >50 β†’ Possible process leaks

πŸ’‘ Limit process count per container:

docker run --pids-limit=50 your_container

By default, docker stats command streams the resource usage metrics for all running containers.

To monitor on a specific container:

docker stats <container_id_or_name>

To filter containers by name pattern:

docker stats --filter "name=techops-*"

docker stats gives you instant insights into your containers without any additional setup.

Before rushing to paid monitoring solutions, make sure you're fully leveraging the built in power of Docker itself.

I run a DevOps and Cloud consulting agency and have helped 17+ businesses, including Stanford, Hearst Corporation, CloudTruth, and more.

When your business needs my services, book a free 1:1 business consultation.

Looking to promote your company, product, service, or event to 40,000+ Cloud Native Professionals? Let's work together.