]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
The number of times elected as well as the i/o
authorJim Jagielski <jim@apache.org>
Wed, 12 Jul 2006 15:13:22 +0000 (15:13 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 12 Jul 2006 15:13:22 +0000 (15:13 +0000)
of the workers is useful info to show in the
manager.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@421287 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_balancer.c

index c8f6f54bce06dc616d661739c042bde0bf723d49..ff0322f6637ae48cbf2c00edf044099e27fd5dfc 100644 (file)
@@ -685,6 +685,7 @@ static int balancer_handler(request_rec *r)
                 "<th>Worker URL</th>"
                 "<th>Route</th><th>RouteRedir</th>"
                 "<th>Factor</th><th>Status</th>"
+                "<th>Elected</th><th>To</th><th>From</th>"
                 "</tr>\n", r);
 
             worker = (proxy_worker *)balancer->workers->elts;
@@ -710,7 +711,11 @@ static int balancer_handler(request_rec *r)
                     ap_rputs("Ok", r);
                 if (!PROXY_WORKER_IS_INITIALIZED(worker))
                     ap_rputs("-", r);
-                ap_rputs("</td></tr>\n", r);
+                ap_rputs("</td>", r);
+                ap_rprintf(r, "<td>%" APR_SIZE_T_FMT "</td>", worker->s->elected);
+                ap_rprintf(r, "<td>%" APR_OFF_T_FMT "</td>", worker->s->transferred);
+                ap_rprintf(r, "<td>%" APR_OFF_T_FMT "</td>", worker->s->read);
+                ap_rputs("</tr>\n", r);
 
                 ++worker;
             }