[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: rev 5896 - trunk/www

From: Greg Stein <gstein_at_lyra.org>
Date: 2003-05-13 01:18:52 CEST

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
Received on Tue May 13 01:17:17 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.