dtrace in apache

2008-08-23 Thread rahul
Hi, I was reviewing the omniti labs dtrace functions, at http://labs.omniti.com/trac/project-dtrace/browser/trunk/apache22/apr-util-hook-probes.patch This patch (util-hook) is committed into apache already. I was concerned that quite a few were just tracing function boundaries, which the dtrace

Re: mod_limitipconn merge - try2

2008-08-23 Thread Niklas Edmundsson
On Fri, 22 Aug 2008, William A. Rowe, Jr. wrote: this is a form of authorization, it appears to fit in aaa. Perhaps even with a name in that scheme, such as mod_authz_hostlimit or something like that. I'd say that's stretching a point. But since I don't think I can suggest an existing

Re: dtrace in apache

2008-08-23 Thread Basant Kukreja
Hi, I agree with Rahul. pid provider can be used to trace apr calls. Following dscript traces apr calls in stock apache (without any probes) pid*::apr_*:entry /execname == httpd/ { } pid*::apr_*:return /execname == httpd/ { } -- If apr calls would not have

Re: Dropping mod_sed into /trunk/ ?

2008-08-23 Thread Basant Kukreja
Hi, There is one important aspect of mod_sed design (which is borrowed from Sun Web Server) that I would like to emphasize is that sed code has been separated from filter code. So sed code itself can be archived in a shared/static library (let me call it as libsed). mod_sed filter code is just

Re: Dropping mod_sed into /trunk/ ?

2008-08-23 Thread rahul
I have a request, in mod_sed, if there are multiline commands, specifying them is cumbersome, It would be nice to have the ability to specify a script file instead. |There is one important aspect of mod_sed design (which is borrowed from Sun | Web Server) that I would like to emphasize is

Re: SNI in 2.2.x (Re: Time for 2.2.10?)

2008-08-23 Thread Kaspar Brand
Ian G wrote: Nick Kew [EMAIL PROTECTED]wrote: ... It might be worth a --with-SNI configuration option, which would label it as an experimental feature. I imagine the use of SNI would need to be configured in httpd.conf anyway, in the virtual host parts. Making SNI support configurable

Re: Dropping mod_sed into /trunk/ ?

2008-08-23 Thread Basant Kukreja
On Sat, Aug 23, 2008 at 05:28:05PM +0530, rahul wrote: I have a request, in mod_sed, if there are multiline commands, specifying them is cumbersome, It would be nice to have the ability to specify a script file instead. I agree. But I think mod_sed should support both. Any votes or