HAProxy Idle_pct dropping: event-loop CPU saturation and the busy-polling trap
Your HAProxy latency is climbing, nothing is queuing on the backends, and the one metric that looks wrong is Idle_pct sliding toward zero. Or worse: Idle_pct has been pinned at zero for weeks and you only just noticed because someone finally asked what it meant. Both situations are common, and they have very different explanations.
Idle_pct is HAProxy’s self-reported measure of event-loop headroom: the share of time the loop spends waiting in poll() versus processing events. It measures HAProxy CPU headroom, not system CPU. A host at 50% system CPU with Idle_pct at 80% is fine. A host at 50% system CPU with Idle_pct at 10% means HAProxy itself is saturated. That distinction is the entire point of the metric, and it is also where the traps live.
What this means
HAProxy multiplexes potentially hundreds of thousands of connections across a small number of threads using the kernel’s most efficient poller (epoll on Linux). When the loop has spare capacity, it spends most of its time blocked in poll() waiting for the next event. When the loop is the bottleneck, it goes straight from one event to the next and poll() returns immediately. Idle_pct is the ratio of polling time to total time: near 100% means almost no load, near 0% means the loop never sleeps.
| Idle_pct | State | What to expect |
|---|---|---|
| Above ~20% | Healthy headroom | Latency unaffected |
| Below ~20% | Event loop stressed | Latency begins to increase smoothly |
| Below ~5% | Saturated | Latency spikes, connections start timing out |
The degradation curve is gradual then cliff. Latency rises smoothly as idle time shrinks, then spikes sharply below ~5%. Two caveats invalidate most naive alerting on this metric:
- Busy-polling trap: with
busy-pollingenabled, the poller always uses a null timeout, so the loop never waits inpoll()andIdle_pctsits near zero by design, regardless of actual load. The metric is meaningless in this mode. Useshow activityrun-queue depth or system CPU instead. - Thread skew:
Idle_pctis averaged across all threads. One thread at 0% and three threads at 80% average to a comfortable-looking 60% while a single hot thread silently caps your throughput.show activityexposes the per-thread picture.
flowchart TD
A[Idle_pct low or dropping] --> B{busy-polling enabled?}
B -->|yes| C[Idle_pct meaningless
use show activity run-queue
and system CPU]
B -->|no| D{show activity:
per-thread skew?}
D -->|one hot thread| E[Thread skew
check accept distribution
SO_REUSEPORT, nbthread]
D -->|all threads loaded| F[Real CPU saturation
find the CPU consumer:
TLS, ACLs, Lua, compression]
F --> G[SslFrontendKeyRate high?]
C --> H{run-queue rising?}
H -->|yes| F
H -->|no| I[Not actually saturated]Common causes
| Cause | What it looks like | First thing to check |
|---|---|---|
| TLS handshake storm | Idle_pct dropping, SslFrontendKeyRate well above baseline, rate elevated, ctime spiking because the loop is too busy to make backend connections | SslFrontendKeyRate and SslCacheLookups vs SslCacheMisses in show info |
| Expensive per-request CPU work | Idle_pct drops in proportion to req_rate, no TLS explanation | Complex ACL/regex chains, compression, Lua scripts |
| Busy-polling enabled | Idle_pct permanently near zero since the last config change, latency actually fine | grep busy-polling in the HAProxy config |
| Thread skew | Idle_pct looks mediocre but not terrible; one thread doing most of the accepts | show activity per-thread counters |
| Insufficient threads | Idle_pct low, system CPU shows spare cores, nbthread below available cores | nbthread config vs core count |
| Saturation from real traffic growth | Idle_pct trend declining at daily peak over weeks | Peak Idle_pct trend against rate trend |
Quick checks
All commands are read-only. Adjust the socket path if yours differs.
# 1. Current Idle_pct and the key corroborating counters
echo "show info" | socat unix-connect:/var/run/haproxy.sock stdio | \
grep -E "^(Idle_pct|Run_queue|Tasks|SslFrontendKeyRate|SslRate|CurrConns|rate):"
# 2. Per-thread activity: hot-thread skew, run-queue depth, CPU steal
echo "show activity" | socat unix-connect:/var/run/haproxy.sock stdio
# 3. Is busy-polling configured? (check before trusting Idle_pct at all)
grep -rn "busy-polling" /etc/haproxy/
# 4. TLS pressure: cache lookups vs misses
echo "show info" | socat unix-connect:/var/run/haproxy.sock stdio | \
grep -E "^Ssl(Cache|Rate|Frontend)"
# 5. System CPU per thread, to spot one pinned core (thread skew at the OS level)
top -H -p "$(pgrep -x -d, haproxy)"
Notes on the checks:
- Check 3 first. If
busy-pollingis in the config, stop interpretingIdle_pctentirely. It is ignored by theselectandpollpollers, so on those pollers the metric still behaves normally; onepoll(the Linux default) the loop never sleeps by design. - Check 2 caveat:
show activitycounters are 32-bit and can wrap on long-running, high-traffic processes. Read them as deltas over short windows, not as lifetime totals. The command exists since HAProxy 1.9; since 2.7r1 the output adds a first column with the total/average for all threads, with per-thread values in square brackets. The individual counters are intentionally undocumented in the manual; the source code is the reference. - Check 5 confirms at OS level what
show activityshows internally: one haproxy thread pinned at 100% of a core while others idle is thread skew, not global saturation.
How to diagnose it
Rule out the busy-polling artifact before anything else.
grep -rn "busy-polling" /etc/haproxy/. If it is set,Idle_pctis near zero by design, and any alert on it will page you forever for nothing. Switch toshow activityrun-queue depth and system CPU as the saturation signals for this instance.Confirm the process is genuinely loaded.
show infogives youIdle_pct,Run_queue, andTaskstogether.Run_queueis the number of runnable tasks waiting for a thread; it should be near zero in normal operation.Idle_pctbelow ~20% withRun_queuepersistently above zero is real saturation. LowIdle_pctwith a flat zeroRun_queueis suspicious and points at the busy-polling or measurement artifacts instead.Check for thread skew. Run
show activityand compare per-thread counters (loop iterations, accept events, poll-wait timing, run-queue depth). Withnbthread > 1, the average inshow infocan hide one saturated thread, and a single hot thread limits overall throughput even when every other thread has headroom.Identify the CPU consumer. The dominant CPU cost in HAProxy is TLS handshakes. If
SslFrontendKeyRateis well above baseline andIdle_pctdrops proportionally, TLS is the cause. CheckSslCacheLookupsvsSslCacheMisses: a high miss rate means most connections pay full handshake cost, often because the session cache is too small or ticket keys rotated. If TLS is not the driver, look at the per-request work: complex ACL or regex evaluation, compression, and Lua scripts all consume event-loop CPU in proportion toreq_rate.Corroborate with traffic and latency signals. Real saturation shows up elsewhere:
ctimespiking because the loop is too busy to establish backend connections,ConnRateexceedingSessRate(pre-accept losses), and in the kernel,ListenOverflows/ListenDropsin/proc/net/netstatclimbing because the loop cannot callaccept()fast enough. IfIdle_pctis low but every one of these is quiet, question the measurement before you act on it.Decide capacity vs incident. A slow multi-week decline in peak
Idle_pctis a capacity problem. A sudden drop correlated with a traffic spike, a config change, or a deploy is an incident: a TLS session-cache failure, a new regex ACL, or a Lua script path being exercised for the first time.
Metrics and signals to monitor
| Signal | Why it matters | Warning sign |
|---|---|---|
Idle_pct (show info) | HAProxy-specific CPU headroom, more precise than system CPU | Below ~20% sustained; below ~5% is saturated. Meaningless with busy-polling |
Run_queue (show info) | Tasks ready to run but waiting for a thread: the CPU backlog | Persistently above zero |
show activity per-thread counters | Detects the hot thread that the average Idle_pct hides | Large skew in per-thread accept/loop counters |
SslFrontendKeyRate | The dominant CPU consumer; drives Idle_pct down | Well above baseline or tested ceiling |
SslCacheLookups vs SslCacheMisses | High miss rate means full handshakes for most connections | Miss rate climbing after reloads or config changes |
rate / req_rate | Establishes whether the load driving CPU is real traffic | Growth matching the Idle_pct decline |
ctime | Saturated loop delays backend connection establishment | Spiking without backend-side explanation |
ListenOverflows / ListenDrops (kernel) | Loop too busy to accept() fast enough; silent client-side timeouts | Counters incrementing |
| System per-core CPU | Confirms HAProxy view at OS level; shows pinned cores | One core at 100%, others idle |
Fixes
TLS handshake storm
Fix session reuse first, because it is the cheapest win: a broken session cache forces every connection through a full handshake, and restoring reuse immediately returns capacity. Check SslCacheMisses / SslCacheLookups; expect a brief miss spike after every reload since the in-process cache is invalidated. Sharing ticket keys on disk across processes mitigates this. If the storm is a genuine surge of new unique clients, scale out or add capacity: handshake cost scales with new connection rate, not total connections.
Expensive per-request CPU work
Profile the config for costly constructs: regex-heavy ACL chains evaluated per request, compression of already-compressed content, and Lua scripts in the request path. The tradeoff is direct: compression trades CPU for bandwidth, and in a CPU-constrained instance disabling it is the correct call. If the load is irreducible, raise nbthread to use spare cores (verify with per-core system CPU that cores are actually free first).
Thread skew
One hot thread means the load is not distributing. SO_REUSEPORT helps distribute accepts across threads; verify nbthread matches the available core count. If you recently raised nbthread, confirm the instance was actually reloaded with the new value.
Busy-polling misconfiguration
If busy-polling was enabled without understanding it, review whether you need it at all. It trades CPU for latency by never letting the poller sleep; it is disabled by default for a reason. The documented operational hazards: improperly bound threads can heavily conflict, producing worse performance and high CPU-stolen values in show info; do not run the process on the same processor as network interrupts; avoid running it on multiple CPU threads sharing the same core. If you keep it, rewrite your Idle_pct alerting to use show activity run-queue depth instead.
Do not reach for a restart as a first move: nothing in this failure mode is fixed by restarting, and a reload resets every counter you were using to diagnose it.
Prevention
- Alert on the right signal for your mode.
Idle_pctbelow ~20% sustained is a ticket-level warning, below ~5% is saturation, but only when busy-polling is off. With busy-polling, alert onshow activityrun-queue depth and system CPU. Encoding the wrong one guarantees either pages-for-nothing or silence during a real event. - Trend peak
Idle_pct, not averages. The daily peak value is your capacity signal. Plan upgrades when peak drops below ~30%; by the time you are below ~20% at peak you are already in the risk zone. - Monitor the drivers, not just the symptom.
SslFrontendKeyRateagainst baseline,SslCacheMisses / SslCacheLookupsratio, andreq_ratetrend tell you why headroom is shrinking before it is gone. - Watch per-thread distribution on every multi-thread instance. Add
show activityto routine collection so skew is visible as it develops, not during the incident. Counters reset on reload and wrap at 32 bits on long-lived processes. - Treat busy-polling as a documented decision. If you enable it, write down the CPU-affinity constraints (no sharing with network interrupts, no co-locating threads on the same core) in the same change, and pin thread bindings deliberately.
How Netdata helps
- Netdata collects
Idle_pctalongsideRun_queue,Tasks, and the TLS signals (SslFrontendKeyRate, session-cache lookups/misses) from the HAProxy stats socket at per-second resolution, so a dropping idle percentage is immediately correlated with the driver instead of requiring three manual socket queries during an incident. - Per-second collection matters specifically here:
Idle_pctdips are short, and a low-frequency poller averages away the exact dips that precede latency events. - Correlating
Idle_pctwithctimeandSessRate/ConnRateon the same dashboard separates real event-loop saturation (all moving together) from measurement artifacts (idle low, everything else calm). - System-level per-core CPU from the same agent lets you confirm thread skew (one pinned core) without switching tools.
- Counter-reset handling on reload means your
Idle_pctand TLS trends do not phantom-drop every time the config reloads.
Related guides
- HAProxy 502 Bad Gateway: backend connection and response failures
- HAProxy 503 Service Unavailable: no server is available to handle this request
- HAProxy 504 Gateway Timeout: timeout server and the backend timeout cascade
- HAProxy backend losing servers: active server count and cascade risk
- HAProxy backend queue building (qcur): requests waiting for a free server slot
- HAProxy connect time (ctime) high: network latency and backend accept-queue overflow
- HAProxy connection errors (econ): backend connections refused, timed out, or reset
- HAProxy scur approaching slim: the concurrent-session saturation signal
- HAProxy 5xx delta: telling HAProxy-generated errors from backend errors
- HAProxy health checks green but the application is broken: when UP does not mean healthy
- HAProxy health check L4TOUT and L4CON: server marked DOWN and unreachable
- HAProxy health check L7STS: server DOWN on the wrong HTTP status






