You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Greg Stein <gs...@lyra.org> on 2003/05/12 23:18:52 UTC

Re: svn commit: rev 5896 - trunk/www

On Mon, May 12, 2003 at 05:43:08PM -0500, fitz@tigris.org wrote:
> Author: fitz
> Date: Mon May 12 17:43:04 2003
> New Revision: 5896
> 
> Modified:
>    trunk/www/svn-repositories2.html
> Log:
> 
> Whoa.  Turns out I was off by an order of magnitude.  Thank you Greg
>...
> +8.  46 read/write users.  Over 1000 read-only users.

Yah... I was pretty surprised. I counted unique IPs from the access logs
like so:

[svn@svn httpd]$ awk '{print $1}' access_log* | sort -u | wc -l
   6346

But then Fitz and I figured that would include people who just happen to
smack the site for one reason or another, rather than actual checkouts of
the repository. So I decided that anything which does a PROPFIND is a user
of the repository (altho this picks up WebDAV mounts):

[svn@svn httpd]$ awk '/PROPFIND/ {print $1}' access_log* | sort -u | wc -l
   1400

Of course, these numbers are quite rough. It doesn't account for dynamic
IPs, and it doesn't account for IP-aggregation via NAT or proxies. And
people who use a plain old browser on the repository *could* be called read
only users, so should they be counted?

*shrug*

The simple fact is that, no matter how you want to slice the numbers, it is
quite easy to say "oh yah, we have more than 1000 users directly interacting
with the repository."

Cheers,
-g

-- 
Greg Stein, http://www.lyra.org/

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org