[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Savannah-hackers-public] Statistics for guix.git
From: |
Bob Proulx |
Subject: |
Re: [Savannah-hackers-public] Statistics for guix.git |
Date: |
Mon, 27 Jan 2025 17:58:46 -0700 |
Ludovic Courtès wrote:
> Bob Proulx skribis:
> > We don't have any specific statistics. Generally we collect very
> > little data at all. Just enough to avoid abuse. But at the moment we
> > have a little more data than usual and I can look back through Jan 15
> > 4am through now and grep out those hits.
> >
> > root@vcs3:/var/log# zgrep /git/guix.git /var/log/nginx/access.log*
> > 310148
>
> Right, so that’s presumably 310K GET requests over 12 days.
Both GET and POST verbs are used by git. It's going to be a mix of
both. At least I always see a mix of both in the logs. I will send
you some samples by direct mail.
> I assume a git fetch/clone emits quite a few GET requests; what if you search
> for:
>
> /git/guit.git/info/refs?service=git-upload-pack
I assume substituting s/guit/guix/ there? :-)
> ? That would indicate the number of clone/fetch operations since this
> is the first GET request that Git does.
$ zgrep 'GET /git/guix.git/info/refs?service=git-upload-pack' access.log* |
wc -l
295334
Bob