This project is a fork of the compass.git project. If you have that one already cloned locally, you can use
git clone --reference /path/to/your/compass.git/incarnation mirror_URL
to save bandwidth during cloning.
 
descriptionScript and website to extract relay statistics
ownerdelber@riseup.net
last changeMon, 10 Sep 2012 07:29:27 +0000 (10 07:29 +0000)
content tags
add:
README.md

Tor relay stats

Show various metrics related to tor relays.

Deploy

* Install Pip
$ apt-get install python-dev python-pip
* Use requirements.txt to install dependancies
$ pip install -r requirements.txt
* Install foreman
$ gem install foreman
* Use the Procfile to run the app
$ foreman start

In case you want to use Apache,

$ cat app.wsgi
#!/usr/bin/python

import os, sys
sys.path.append('/path/to/app')

from app import app as application

$ cat /etc/apache2/sites-available/default
WSGIDaemonProcess compass user=nobody group=compass threads=5
WSGIScriptAlias /compass /srv/compass.torproject.org/compass/app.wsgi

<Directory /srv/compass.torproject.org/compass>
    WSGIProcessGroup compass
    WSGIApplicationGroup %{GLOBAL}
    Order deny,allow
    Allow from all
</Directory>
shortlog
2012-09-10 delberUse identifiers when manipulating weights instead of... master
2012-09-10 delberSet 'fast exit' constraints as default for FastExitFilter
2012-09-10 delberRe-introduce a separate filter for same network limits
2012-09-10 delberRewrap some very long lines
2012-09-10 delberFactor out filter inversion into its own filter class
2012-09-10 delberImprove readability in _create_filters by using keyword...
2012-09-10 delberUse constants for 'fast exits' and 'almost fast exits...
2012-09-09 Karsten LoesingMerge remote-tracking branch 'gsathya/bug_6639'
2012-09-09 Karsten LoesingMerge remote-tracking branch 'gsathya/bug_6691'
2012-09-09 Sathyanarayanan... Add new compass logo
2012-09-09 Sathyanarayanan... Remove abstractions
2012-09-09 Sathyanarayanan... Set options based on request args
2012-09-09 Sathyanarayanan... Show results in /
2012-08-29 Karsten LoesingDon't list a relay as Exit if it has the BadExit flag.
2012-08-28 Sathyanarayanan... Display more info while grouping
2012-08-28 Sathyanarayanan... Merge AS_Number and AS_Name
...
heads
11 years ago master