Hello!
On Tue, Dec 2, 2014 at 12:12 AM, Vitaly Kosenko wrote:
> Hello! Do openresty have utility to get current state of openresty http
> server (like active connections, current vmsize allocated per server,
> requests in queue and others)? I've worked with nginx-rails-passenger and
> they do have passenger-status utility. Do you have some?
>
We usually use non-invasive low-overhead real-time sampling tools
based on dynamic tracing (systemtap) in production:
https://github.com/openresty/nginx-systemtap-toolkit
https://github.com/openresty/stapxx#samples
> And can I do "configure" of openresty with option
> "–with-http_stub_status_module"? Or I can only operate with openresty
> modules?
Yes, sure. OpenResty's ./configure is just a superset of the official nginx's.
BTW, you can always check out all the available configure options via
the command "./configure --help".
Regards,
-agentzh