From: Christophe Jaillet Date: Mon, 10 Dec 2012 21:35:16 +0000 (+0000) Subject: mod_proxy_balancer: It's totally unclear what Drn, Dis, Ign, Stby means. X-Git-Tag: 2.5.0-alpha~6034 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fc22893b4e7daf81f17cba6839ac16535062284;p=apache mod_proxy_balancer: It's totally unclear what Drn, Dis, Ign, Stby means. PR 52478 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1419796 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 11ed9c6c06..8a127252dc 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.0 + *) mod_proxy_balancer: Improve output + PR 52478 [Danijel ] + *) core: Add LogLevelOverride directive that allows to override the loglevel for clients from certain IPs. This also works for things like the SSL handshake where LogLevel ... is evaluated diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index 0429ac91f8..261cd5f81f 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1535,7 +1535,11 @@ static int balancer_handler(request_rec *r) NULL); ap_rputs("\">\n", r); ap_rputs("Status:", r); - ap_rputs("\n", r); + ap_rputs("
IgnDrnDisStby
" + "" + "" + "" + "\n", r); create_radio("w_status_I", (PROXY_WORKER_IGNORE_ERRORS & wsel->s->status), r); create_radio("w_status_N", (PROXY_WORKER_DRAIN & wsel->s->status), r); create_radio("w_status_D", (PROXY_WORKER_DISABLED & wsel->s->status), r);
Ignore ErrorsDraining ModeDisabledHot Standby