OpenStack analytics dashboard
Go to file
luke.li 2329d993ef Remove "-y" option for package install command.
According to "code conventions" [1], do not use "-y" option.
Instead, use apt-get install package, yum install package, or zypper install package.

[1] https://docs.openstack.org/doc-contrib-guide/writing-style/code-conventions

Change-Id: I293ffdd875680fc837a3ff877eba28b233c8ff9c
2018-01-05 16:37:03 +08:00
doc/source Revert "Remove Foundation members report" 2017-09-07 15:00:20 +00:00
etc Merge "add my infomation to default_data.json change id with alphabetical order Change-Id: I489ce0aed238b5ca8c1c72560d114f198258240c" 2017-12-22 09:11:06 +00:00
stackalytics Fix the invalid change-id ext-link url 2017-10-30 15:36:58 +08:00
tools Add tool to match default_data.json against OpenStackID service 2017-08-25 16:24:41 +02:00
.gitignore Add .idea pattern to .gitignore 2017-04-10 16:10:46 +05:30
.gitreview Update .gitreview for new namespace 2015-10-17 22:38:57 +00:00
.testr.conf Move tests under stackalytics package 2015-08-18 15:38:17 +03:00
LICENSE Initial code commit 2013-06-22 15:42:32 +04:00
MANIFEST.in Initial code commit 2013-06-22 15:42:32 +04:00
README.rst Remove "-y" option for package install command. 2018-01-05 16:37:03 +08:00
config-generator.conf Separate config module 2017-03-24 13:15:33 -07:00
requirements.txt Add config validation for default_data 2017-04-06 12:33:38 -07:00
setup.cfg Optimize the link address 2017-06-08 17:36:42 +07:00
setup.py Sync requirements with OpenStack global requirements 2017-03-29 16:45:01 +04:00
test-requirements.txt Add config validation for default_data 2017-04-06 12:33:38 -07:00
tox.ini fix setup.cfg and tox.ini 2017-03-10 16:14:39 +08:00

README.rst

Stackalytics

Application Features

Stackalytics is a service that automatically analyzes OpenStack development activities and displays statistics on contribution. The features are: * Extraction of author information from git log, store it in the database; * Calculate metrics on number of lines changed (LOC) and commits; * Mapping authors to companies and launchpad ids; * Filter statistics by time, modules, companies, authors; * Extract blueprint and bug ids from commit messages; * Auto-update of database.

Quickstart

To run Stackalytics, you first need to create two kind of configuration files. The one is default_data.json which shows which sources(git repo, ml, etc.) need to be analyzed. Another is stackalytics.conf which shows basic configuration like HTTP listening host and port, etc. Stackalytics repository contains the default files of these configuration under etc/ directory. It would be useful to copy and change them as you like.

  1. You need to install Stackalytics. This is done with pip after you check out Stackalytics repository:

    $ git clone https://git.openstack.org/openstack/stackalytics
    $ cd stackalytics
    $ sudo pip install -r requirements.txt
    $ sudo python setup.py install
  2. Install and run memcached DB:

    $ sudo apt-get install memcached
    $ memcached -u memcache -d
  3. Analyze data which are specifed on default_data.json and store the data into memcached DB:

    $ stackalytics-processor
  4. Start HTTP server of Stackalytics:

    $ stackalytics-dashboard
  5. Users can access Stackalytics site on http://127.0.0.1:8080 as the default.

Project Info