- TechOps Examples
- Posts
- Container Resource Monitoring with Docker stats
Container Resource Monitoring with Docker stats
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:
Join the Superhuman AI newsletter β read by 1M+ people at top companies
Master AI tools, tutorials, and news in just 3 minutes a day
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
Stanford University launched Storm, a FREE AI tool for research
Writes expert level reports in seconds.
Writes Wikipedia quality reports with 99% accuracy & citations.
π Remote Jobs
Intel is hiring a Senior DevOps Engineer
Remote Location: India
Waratek is hiring a Site Reliability Engineer
Remote Location: Europe, UK
ποΈ 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.
Not a joke, many Cloud Engineers donβt fully understand Internet and NAT Gateway differences or their implications.
Here, Iβve made this to help you better understand.
π PS - I wrote an article with visuals and a detailed breakdown of this use case in my newsletter here:β¦ x.com/i/web/status/1β¦
β Govardhana Miriyala Kannaiah (@govardhana_mk)
3:03 PM β’ Mar 6, 2025
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.