[Rainer Jung]
*) mod_proxy: Improve the balancer member data shown in mod_status when
- "ProxyStatus" is "On": add "busy" count to auto mode and show byte
- counts in auto mode always in units of kilobytes. [Rainer Jung]
+ "ProxyStatus" is "On": add "busy" count and show byte counts in
+ auto mode always in units of kilobytes. [Rainer Jung]
*) mod_status: Add cumulated response duration time in milliseconds
to auto mode.
2.4.x patch: https://home.apache.org/~jim/patches/response-204-304.patch
+1: jim, ylavic
- *) mod_proxy: Improve the balancer member data shown
- in mod_status when "ProxyStatus" is "On":
- add "busy" count to html mode. The auto mode part
- has already been backported.
- This changes the HTML output format for the proxy-status
- but adds the very important busy metric.
- trunk: http://svn.apache.org/r1837588 (remaining parts)
- 2.4.x patch: https://home.apache.org/~rjung/patches/httpd-2.4.x-proxy-status-html-busy-r1837588-part2.patch
- +1: rjung, jim, ylavic
-
*) mod_status: Add cumulated response duration time
in milliseconds to html mode. The auto mode part
has already been backported.
ap_rputs("\n\n<table border=\"0\"><tr>"
"<th>Sch</th><th>Host</th><th>Stat</th>"
"<th>Route</th><th>Redir</th>"
- "<th>F</th><th>Set</th><th>Acc</th><th>Wr</th><th>Rd</th>"
+ "<th>F</th><th>Set</th><th>Acc</th><th>Busy</th><th>Wr</th><th>Rd</th>"
"</tr>\n", r);
}
else {
ap_rvputs(r, "</td><td>", (*worker)->s->redirect, NULL);
ap_rprintf(r, "</td><td>%.2f</td>", (float)((*worker)->s->lbfactor)/100.0);
ap_rprintf(r, "<td>%d</td>", (*worker)->s->lbset);
- ap_rprintf(r, "<td>%" APR_SIZE_T_FMT "</td><td>",
+ ap_rprintf(r, "<td>%" APR_SIZE_T_FMT "</td>",
(*worker)->s->elected);
+ ap_rprintf(r, "<td>%" APR_SIZE_T_FMT "</td><td>",
+ (*worker)->s->busy);
ap_rputs(apr_strfsize((*worker)->s->transferred, fbuf), r);
ap_rputs("</td><td>", r);
ap_rputs(apr_strfsize((*worker)->s->read, fbuf), r);