"c" and "s" values.
[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]
+
*) mod_status: Complete the data shown for async MPMs in "auto" mode.
Added number of processes, number of stopping processes and number
of busy and idle workers. [Rainer Jung]
2.4.x patch: http://people.apache.org/~covener/2.4.x-proxy-opt-fn.diff
+1: covener, jim, ylavic
- *) mod_proxy: Improve the balancer member data shown
- in mod_status when "ProxyStatus" is "On":
- add "busy" count and show byte counts in auto
- mode always in units of kilobytes.
- trunk: http://svn.apache.org/r1837588
- 2.4.x patch: svn merge -c 1837588 ^/httpd/httpd/trunk .
- (adjust CHANGES)
- +1: rjung, jim, ylavic
-
*) mod_status: Add cumulated response duration time
in milliseconds.
trunk: http://svn.apache.org/r1837590
ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Elected: %"
APR_SIZE_T_FMT "\n",
i, n, (*worker)->s->elected);
- ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Sent: %s\n",
- i, n, apr_strfsize((*worker)->s->transferred, fbuf));
- ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Rcvd: %s\n",
- i, n, apr_strfsize((*worker)->s->read, fbuf));
+ ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Busy: %"
+ APR_SIZE_T_FMT "\n",
+ i, n, (*worker)->s->busy);
+ ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Sent: %"
+ APR_OFF_T_FMT "K\n",
+ i, n, (*worker)->s->transferred >> 10);
+ ap_rprintf(r, "ProxyBalancer[%d]Worker[%d]Rcvd: %"
+ APR_OFF_T_FMT "K\n",
+ i, n, (*worker)->s->read >> 10);
+
/* TODO: Add the rest of dynamic worker data */
}