Skip to content

Gathers anonymous usage statistics of IPOP users.

Notifications You must be signed in to change notification settings

gauravyeole/ipop-stat

 
 

Repository files navigation

IPOP Stats

Warning: This is under heavy development, and is not ready for use.

Gathers anonymous usage statistics of IPOP users.

We need these statistics to justify our funding in grant proposals. They're opt-in only, and the only information we collect is:

  • Your IP address
  • A randomly generated UUID
  • Client version number
  • The number of connections your node makes
  • If STUN or TURN is being used
  • The name of the controller (groupvpn or socialvpn)
  • Statistics about average connection lifetime

We'll never publish full database dumps, but we will publish general statistical information from our database.

API Documentation

The API still needs to be finalized and documented. For now, read the source to see how the API works.

We follow the JSend specification for successes and failures.

Coding Style

We follow PEP 8 with a few exceptions:

  • Lines are 80 characters long (not 79). This includes docstrings and comments.
  • Explicit line continuation is often preferred over implicit, when it saves us from deeply nesting parenthesis

Abuse

It's possible for someone to write a client that abuses the API, spamming it with artificially inflated statistics. We record IPs so we could perform some analysis later to filter out these results, but heavily NATed environments could complicate this.

Generally, we assume nobody will spam us with API calls, as there's no motivation for an attacker to do so.

Upon setting up a production system, we should use some sort of rate-limiting, to avoid being DoSed. The configuration file allows limiting based on UUID, IPv4, and IPv6 addresses. This can be paired with nginx's rate limiting module.

Please don't be evil!

Running server (without installing as an debian package)

# install MongoDB and Pymongo client
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list
sudo apt-get update
sudo apt-get install -y mongodb-org
python -m pip install pymongo

sudo apt-get install git python-pip python-flask pymongo python-yaml
git clone https://github.com/ipop-project/ipop-stats.git
cd ipop-stats/ipopusagereport-0.1/DEBIAN
sudo bash preinst
sudo passwd ipopreport
Enter new UNIX password: ipop
Retype new UNIX password: ipop
passwd: password updated successfully
sudo service mongod start
su ipopreport
Password:ipop
cd ../usr/share/ipop-usagereport
./run.py

now you can access this server through webbrowser.

http://ip_address:8081/api

controller reports status info

http://ip_address:8081/api/submit

database location:

/var/lib/mongodb/

you can query database using Mongo shell as:

$ mongo
> use usage_report
> db.user.find()          # to get the data in database
> db.user.count()         # to get number of documents in collection

Reset Database:

$ mongo
> show dbs
> use usage_report
> db.dropDatabase()

Building Debian Package

locate at the parent directory of ipopusagereport-0.1

$ cd ipopusagereport-0.1
$ dpkg-deb --build ipopusagereport-0.1

Installation and Runnnig ipopusagereport debian package

sudo dpkg -i ipopusagereport-0.1.deb
sudo apt-get update
sudo apt-get -f install

Start, Stop, Restart ipopusagereport service

Start service: (make sure mongodb server is running before starting ipopusagereport)

$ service mongod start 
$ service ipop-usagereport start

Stop service:

$ service ipop-usagereport stop

Restart Service:

$ service ipop-usagereport restart

Check status:

$ service ipop-usagereport status

About

Gathers anonymous usage statistics of IPOP users.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 72.1%
  • Shell 27.9%