Re: Recent download statistics

2014-12-11 Thread Martin Nowak via Digitalmars-d-announce

On Monday, 13 October 2014 at 17:47:56 UTC, Andrei Alexandrescu
wrote:
Nice, might be worth to spend some time filtering out machine 
traffic,

e.g. from running travis-ci.


How can those be identified?


Good news for the new D support on Travis-CI. I prefixed the curl
User-Agent with Travis-CI, so you'll easily find those :) [1].
Otherwise (many people will continue to use their old scripts)
you can only filter for the IP range of BlueBox that currently
hosts most (if not all) of the Travis-CI boxes, see [2], [3].

https://github.com/MartinNowak/travis-build/commit/43286a1bf3865977461c3cb86882a8c35a964a9e

[1]:
https://github.com/MartinNowak/travis-build/commit/43286a1bf3865977461c3cb86882a8c35a964a9e
[2]:
http://ns.myip.ms/view/web_hosting/143013/Blue_Box_Group_Inc.html
[3]: https://github.com/travis-ci/travis-ci/issues/2580


Re: Recent download statistics

2014-10-13 Thread Martin Nowak via Digitalmars-d-announce
On Wednesday, 3 September 2014 at 09:20:44 UTC, Andrei 
Alexandrescu wrote:

The relevant makefile rules are:

$(OUT)/downloads:
grep -o 'GET [^ ]* ' \
  $(DATADIR)/downloads/2013-* $(DATADIR)/downloads/2014-* \
  | grep 'dmd' | sed -e 's/:GET//' -e 's|^.*downloads/||' \
  | sed -e 's/ .*dmd/ dmd/' | sort $@.tmp
mv $@.tmp $@

$(OUT)/downloads.monthly: $(OUT)/downloads
sed -e 's/-.. .*//' $^ | uniq -c $@.tmp
mv $@.tmp $@


Nice, might be worth to spend some time filtering out machine 
traffic, e.g. from running travis-ci. Also equally interesting is 
to group those numbers by DPL release and OS.


Re: Recent download statistics

2014-10-13 Thread Andrei Alexandrescu via Digitalmars-d-announce

On 10/13/14, 9:07 AM, Martin Nowak wrote:

On Wednesday, 3 September 2014 at 09:20:44 UTC, Andrei Alexandrescu wrote:

The relevant makefile rules are:

$(OUT)/downloads:
grep -o 'GET [^ ]* ' \
  $(DATADIR)/downloads/2013-* $(DATADIR)/downloads/2014-* \
  | grep 'dmd' | sed -e 's/:GET//' -e 's|^.*downloads/||' \
  | sed -e 's/ .*dmd/ dmd/' | sort $@.tmp
mv $@.tmp $@

$(OUT)/downloads.monthly: $(OUT)/downloads
sed -e 's/-.. .*//' $^ | uniq -c $@.tmp
mv $@.tmp $@


Nice, might be worth to spend some time filtering out machine traffic,
e.g. from running travis-ci.


How can those be identified?


Also equally interesting is to group those numbers by DPL release and
OS.


Yah.


Andrei


Re: Recent download statistics

2014-09-03 Thread Peter Alexander via Digitalmars-d-announce
On Wednesday, 3 September 2014 at 09:20:44 UTC, Andrei 
Alexandrescu wrote:
I recently got the access logs for dmd downloads through August 
(and Sep 1st). [snip]


Nice! Will be interesting to see how much the recent increase 
contributes to sustained activity/growth.


Any idea what caused the spike in March last year?


Re: Recent download statistics

2014-09-03 Thread Gary Willoughby via Digitalmars-d-announce
On Wednesday, 3 September 2014 at 09:47:45 UTC, Peter Alexander 
wrote:

Any idea what caused the spike in March last year?


Dconf 2013?