explanation of "Backend Limit" I see in the stats page

2017-06-26 Thread John Cherouvim
Hello I have this configuration for a backend containing a server: backend static_backend option forwardfor server s localhost:80 maxconn 900 On the stats page though I see a "Backend" row which shows almost the same numbers for my "s" server. What does this represent? That "Backend"

Re: explanation of "Backend Limit" I see in the stats page

2017-06-27 Thread John Cherouvim
26/06/2017 13:45, John Cherouvim wrote: Hello I have this configuration for a backend containing a server: backend static_backend option forwardfor server s localhost:80 maxconn 900 On the stats page though I see a "Backend" row which shows almost the same numbe

301 redirects are logged as 503

2018-02-05 Thread John Cherouvim
The 301 (or 302) redirects I've configured in /etc/haproxy/haproxy.cfg result in log entries which do not show 301 but 503: 127.0.0.1 - - [05/Feb/2018:12:15:09 +0200] "HEAD /latest-news HTTP/1.1" 503 1486 "" "curl/7.47.0" 103/-1 - This makes logs analysis harder for me. Do you know whether

trying to undestand (via netstat) how many connections haproxy opens to backends

2018-02-06 Thread John Cherouvim
I'm trying to understand the output of netstat when haproxy is handling requests waiting for the backend to finish processing. My setup is a VM with LAN IP 192.168.10.50 hosting one haproxy and one apache httpd instance: - apache httpd is listening on 127.0.0.1:12345 (not accessible from

Re: stats page: inconsistent numbers spacing (thousands)

2018-03-12 Thread John Cherouvim
your great software. John Willy Tarreau wrote: Hello John, On Fri, Mar 02, 2018 at 01:04:11PM +0200, John Cherouvim wrote: Hello My stats page (haproxy version: 1.8.4-1ppa1~xenial) shows some values as "2" and others as "2 000" (note the thousands spacing). The C

stats page: inconsistent numbers spacing (thousands)

2018-03-02 Thread John Cherouvim
Hello My stats page (haproxy version: 1.8.4-1ppa1~xenial) shows some values as "2" and others as "2 000" (note the thousands spacing). The CSV in question shows the numbers without spaces: backend_varnish,varnish,0,0,0,0,2,0,0,0,,0,,0,0,0,0,no

subscribe

2018-03-02 Thread John Cherouvim

subscribe

2018-10-23 Thread John Cherouvim

[PATCH] CLEANUP/MINOR removal of unused function U2A

2018-10-23 Thread John Cherouvim
Hello I'm removing an unused function. stats.c is only using U2H and LIM2A. U2A was not being referenced from anywhere. thanks From 692996c782d14240c563c319010ad89939400157 Mon Sep 17 00:00:00 2001 From: Ioannis Cherouvim <743305+cherou...@users.noreply.github.com> Date: Tue, 23 Oct 2018

[PATCH] CLEANUP/MINOR LIM2A function comment fix

2018-10-24 Thread John Cherouvim
Hello I changed "the HTML representation" to "the ASCII representation" in the documentation for LIM2A to make it consistent with what it actually does. I think the fact that it returns ASCII is encoded in the function name (similarly as it's done in U2A vs U2H) so maybe this was a copy