3 messages in ru.sysoev.nginxRe: pls. explain ngx_http_stub_status...
FromSent OnAttachments
Martin MinkaApr 30, 2007 4:23 am 
Igor SysoevApr 30, 2007 4:41 am 
Martin MinkaApr 30, 2007 6:49 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: pls. explain ngx_http_stub_status_moduleActions...
From:Igor Sysoev (is-G@public.gmane.org)
Date:Apr 30, 2007 4:41:11 am
List:ru.sysoev.nginx

On Mon, Apr 30, 2007 at 01:23:59PM +0200, Martin Minka wrote:

coul you please explain the numbers in stub_status ? for example: Active connections: 291

server accepts handled requests

16630948 16630948 31070465

Reading: 6 Writing: 179 Waiting: 106 sincerely, Martin Minka

The stub status module reports status similar to mathopd's one: nginx was used as drop-in replacement on one of our sites/

active connections - number of all open connections including connections to backends.

server accepts handled requests 16630948 16630948 31070465

nginx accepted 16630948 connections, handled 16630948 connections (no one was closed just it was accepted), and handles 31070465 requests (1.8 requests per connection)

reading - nginx reads request header; writing - nginx reads request body, processes request, or writes response to a client waiting - keep-alive connections, actullay = active - (reading + writing)