commit | c960a3b60f5d05b82cdac2a33ab22ca465787e60 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Dec 22 11:05:48 2022 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Thu Dec 22 13:46:21 2022 +0100 |
tree | eae349c879bd6eec4f674cecd2b66cf0b16b206f | |
parent | 827a6299e6995c5c3ba620d8b7cbacdaef67f2c4 [diff] |
BUG/MINOR: pool/stats: Use ullong to report total pool usage in bytes in stats The same change was already performed for the cli. The stats applet and the prometheus exporter are also concerned. Both use the stats API and rely on pool functions to get total pool usage in bytes. pool_total_allocated() and pool_total_used() must return 64 bits unsigned integer to avoid any wrapping around 4G. This may be backported to all versions.