Skip to content

Commit ec120da

Browse files
author
HAProxy Community
committed
Update docs for dev
1 parent 361d9bb commit ec120da

3 files changed

Lines changed: 41 additions & 12 deletions

File tree

docs/dev/configuration.html

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev8-128 - Configuration Manual</title>
5+
<title>HAProxy version 3.4-dev8-149 - Configuration Manual</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -1730,6 +1730,12 @@
17301730

17311731
<a class="list-group-item" href="#cpu_ns_tot">cpu_ns_tot</a>
17321732

1733+
<a class="list-group-item" href="#cpu_usage_grp">cpu_usage_grp</a>
1734+
1735+
<a class="list-group-item" href="#cpu_usage_proc">cpu_usage_proc</a>
1736+
1737+
<a class="list-group-item" href="#cpu_usage_thr">cpu_usage_thr</a>
1738+
17331739
<a class="list-group-item" href="#crc32">crc32</a>
17341740

17351741
<a class="list-group-item" href="#crc32c">crc32c</a>
@@ -4355,6 +4361,8 @@
43554361

43564362
<a class="list-group-item" href="#tfo (Server and default-server options)">tfo (Server and default-server options)</a>
43574363

4364+
<a class="list-group-item" href="#tgroup">tgroup</a>
4365+
43584366
<a class="list-group-item" href="#thread (Bind options)">thread (Bind options)</a>
43594367

43604368
<a class="list-group-item" href="#thread (Fetching samples from internal states)">thread (Fetching samples from internal states)</a>
@@ -4888,7 +4896,7 @@
48884896
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
48894897
</p>
48904898
<p class="text-right">
4891-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/13</b></small>
4899+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/14</b></small>
48924900
</p>
48934901
</div>
48944902
<!-- /.sidebar -->
@@ -4899,7 +4907,7 @@
48994907
<div class="text-center">
49004908
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
49014909
<h2>Configuration Manual</h2>
4902-
<p><strong>version 3.4-dev8-128</strong></p>
4910+
<p><strong>version 3.4-dev8-149</strong></p>
49034911
<p>
49044912
2026/04/03<br>
49054913

@@ -27559,6 +27567,24 @@ <h3 id="chapter-7.3.2" data-target="7.3.2"><small><a class="small" href="#7.3.2"
2755927567
to recover decent performance. The value may be artificially high due to a
2756027568
high cpu_calls count, for example when processing many HTTP chunks, and for
2756127569
this reason it is often preferred to log cpu_ns_avg instead.
27570+
</pre><a class="anchor" name="cpu_usage_grp"></a><a class="anchor" name="7-cpu_usage_grp"></a><a class="anchor" name="7.3.2-cpu_usage_grp"></a><a class="anchor" name="cpu_usage_grp (Using ACLs and fetching samples)"></a><a class="anchor" name="cpu_usage_grp (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="cpu_usage_grp"></a><a href="#7.3.2-cpu_usage_grp">cpu_usage_grp</a></b> : integer</div><pre class="text">Returns the measured CPU usage over the last polling loop, between 0 and 100,
27571+
averaged over all threads of the current thread group. This can be used for
27572+
troubleshooting and for logging. The measure is extremely volatile but will
27573+
remain accurate for sustained loads as each thread measures it over a few
27574+
tens to hundreds of requests.
27575+
</pre><a class="anchor" name="cpu_usage_proc"></a><a class="anchor" name="7-cpu_usage_proc"></a><a class="anchor" name="7.3.2-cpu_usage_proc"></a><a class="anchor" name="cpu_usage_proc (Using ACLs and fetching samples)"></a><a class="anchor" name="cpu_usage_proc (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="cpu_usage_proc"></a><a href="#7.3.2-cpu_usage_proc">cpu_usage_proc</a></b> : integer</div><pre class="text">Returns the measured CPU usage over the last polling loop, between 0 and 100,
27576+
averaged over all running threads. This can be used for troubleshooting and
27577+
for logging. The measure is extremely volatile but will remain accurate for
27578+
sustained loads as each thread measures it over a few tens to hundreds of
27579+
requests. This is 100 minus the value reported in the idle ratio in the stats
27580+
page and in &quot;show info&quot;.
27581+
</pre><a class="anchor" name="cpu_usage_thr"></a><a class="anchor" name="7-cpu_usage_thr"></a><a class="anchor" name="7.3.2-cpu_usage_thr"></a><a class="anchor" name="cpu_usage_thr (Using ACLs and fetching samples)"></a><a class="anchor" name="cpu_usage_thr (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="cpu_usage_thr"></a><a href="#7.3.2-cpu_usage_thr">cpu_usage_thr</a></b> : integer</div><pre class="text">Returns the measured CPU usage over the last polling loop, between 0 and 100,
27582+
for the calling thread. This can be used for troubleshooting and for logging.
27583+
The measure is extremely volatile but will remain accurate for sustained
27584+
loads as it is measured over a few tens to hundreds of requests. This is the
27585+
same value as used to decide to enable connection killing on too high
27586+
glitches, or to disable compression. See also &quot;<a href="#tune.glitches.kill.cpu-usage">tune.glitches.kill.cpu-usage</a>&quot;
27587+
and &quot;maxcomcpuusage&quot;.
2756227588
</pre><a class="anchor" name="date"></a><a class="anchor" name="7-date"></a><a class="anchor" name="7.3.2-date"></a><a class="anchor" name="date (Using ACLs and fetching samples)"></a><a class="anchor" name="date (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="date"></a><a href="#7.3.2-date">date</a></b>(<span style="color: #008">[<span style="color: #080">&lt;offset&gt;</span><span style="color: #008">[,<span style="color: #080">&lt;unit&gt;</span>]</span>]</span>) : integer</div><pre class="text">Returns the current date as the epoch (number of seconds since 01/01/1970).
2756327589

2756427590
If an offset value is specified, then it is added to the current date before
@@ -27841,6 +27867,9 @@ <h3 id="chapter-7.3.2" data-target="7.3.2"><small><a class="small" href="#7.3.2"
2784127867

2784227868
It must only be used for debugging purpose. The exact format is not
2784327869
documented because it may evolve depending on developers requirements.
27870+
</pre><a class="anchor" name="tgroup"></a><a class="anchor" name="7-tgroup"></a><a class="anchor" name="7.3.2-tgroup"></a><a class="anchor" name="tgroup (Using ACLs and fetching samples)"></a><a class="anchor" name="tgroup (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="tgroup"></a><a href="#7.3.2-tgroup">tgroup</a></b> : integer</div><pre class="text">Returns an integer value corresponding to the position of the thread group
27871+
calling the function, between 0 and (global.thread-groups - 1). This is
27872+
useful for logging and debugging purposes.
2784427873
</pre><a class="anchor" name="thread"></a><a class="anchor" name="7-thread"></a><a class="anchor" name="7.3.2-thread"></a><a class="anchor" name="thread (Using ACLs and fetching samples)"></a><a class="anchor" name="thread (Fetching samples from internal states)"></a><div class="keyword"><b><a class="anchor" name="thread"></a><a href="#7.3.2-thread">thread</a></b> : integer</div><pre class="text">Returns an integer value corresponding to the position of the thread calling
2784527874
the function, between 0 and (global.nbthread-1). This is useful for logging
2784627875
and debugging purposes.
@@ -35290,7 +35319,7 @@ <h2 id="chapter-12.9" data-target="12.9"><small><a class="small" href="#12.9">12
3529035319
<br>
3529135320
<hr>
3529235321
<div class="text-right">
35293-
HAProxy 3.4-dev8-128 &ndash; Configuration Manual<br>
35322+
HAProxy 3.4-dev8-149 &ndash; Configuration Manual<br>
3529435323
<small>, 2026/04/03</small>
3529535324
</div>
3529635325
</div>

docs/dev/intro.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev8-128 - Starter Guide</title>
5+
<title>HAProxy version 3.4-dev8-149 - Starter Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -484,7 +484,7 @@
484484
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
485485
</p>
486486
<p class="text-right">
487-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/13</b></small>
487+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/14</b></small>
488488
</p>
489489
</div>
490490
<!-- /.sidebar -->
@@ -495,7 +495,7 @@
495495
<div class="text-center">
496496
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
497497
<h2>Starter Guide</h2>
498-
<p><strong>version 3.4-dev8-128</strong></p>
498+
<p><strong>version 3.4-dev8-149</strong></p>
499499
<p>
500500
<br>
501501

@@ -2515,7 +2515,7 @@ <h2 id="chapter-4.4" data-target="4.4"><small><a class="small" href="#4.4">4.4.<
25152515
<br>
25162516
<hr>
25172517
<div class="text-right">
2518-
HAProxy 3.4-dev8-128 &ndash; Starter Guide<br>
2518+
HAProxy 3.4-dev8-149 &ndash; Starter Guide<br>
25192519
<small>, </small>
25202520
</div>
25212521
</div>

docs/dev/management.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.4-dev8-128 - Management Guide</title>
5+
<title>HAProxy version 3.4-dev8-149 - Management Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -696,7 +696,7 @@
696696
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
697697
</p>
698698
<p class="text-right">
699-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/13</b></small>
699+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/04/14</b></small>
700700
</p>
701701
</div>
702702
<!-- /.sidebar -->
@@ -707,7 +707,7 @@
707707
<div class="text-center">
708708
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
709709
<h2>Management Guide</h2>
710-
<p><strong>version 3.4-dev8-128</strong></p>
710+
<p><strong>version 3.4-dev8-149</strong></p>
711711
<p>
712712
<br>
713713

@@ -5849,7 +5849,7 @@ <h2 id="chapter-13.1" data-target="13.1"><small><a class="small" href="#13.1">13
58495849
<br>
58505850
<hr>
58515851
<div class="text-right">
5852-
HAProxy 3.4-dev8-128 &ndash; Management Guide<br>
5852+
HAProxy 3.4-dev8-149 &ndash; Management Guide<br>
58535853
<small>, </small>
58545854
</div>
58555855
</div>

0 commit comments

Comments
 (0)