trac-hacks / tracstats

Project and source code statistics plugin for Trac.
http://trac-hacks.org/wiki/TracStatsPlugin
Other
20 stars 13 forks source link
trac-plugin

TracStats

The TracStats project is a plugin for the trac project management tool.

The TracStats plugin adds a "Stats" tab to the trac project. Underneath this tab can be found statistics about changesets, wiki pages, and tickets.

Some features include:

The TracStats plugin supports Trac installations with SQLite, MySQL, and PostgreSQL database backends.

The TracStats plugin has been tested with Subversion, Mercurial, and Git version control systems.

Installation

The TracStats plugin can be installed using standard:

$ pip install tracstats

Or, grab the sources and build using:

$ python setup.py install

Configuration

It is configured in the trac.ini file by enabling and configuring:

[components]
tracstats.* = enabled

The STATS_VIEW permission is used to control access to the statistics pages.

In addition, an optional "project root" within your repository can be configured as the base for all projects and source code statistics:

[stats]
root = path/to/projects

Troubleshooting

If you use Git (i.e. the GitPlugin for Trac) and are not able to see any of the code statistics, you likely need to configure it to cache the repository to make it work:

[git]
cached_repository = true
persistent_cache = true

You might need to run ``trac-admin repository resync

`` after the change.