No edit summary |
|||
Line 1: | Line 1: | ||
<big>'''statistics++: Making Fedora Project | <big>'''statistics++: Making Fedora Project statistics accessible and automated'''</big><br> | ||
[[User:Ianweller|Ian Weller]], Fedora Engineering, Red Hat, Inc. | [[User:Ianweller|Ian Weller]], Fedora Engineering, Red Hat, Inc. | ||
Revision as of 05:08, 27 March 2012
statistics++: Making Fedora Project statistics accessible and automated
Ian Weller, Fedora Engineering, Red Hat, Inc.
Project overview
Fedora Infrastructure has had a limited foray into the field of statistics. The Statistics page on the Fedora Project Wiki contains some limited information about the number of HTTP requests made to various infrastructure applications and the number of wiki edits made per month.
The statistics app in the first version of Fedora Community attempted to improve on the Statistics page, but ultimately failed because of the complexity of adding new and relevant automated queries to the platform and the limited amount of information Fedora's application servers could access.
With the planned messaging infrastructure for infrastructure applications, a statistics application can be programmed to listen on the message bus, record activity, and store activity in a database for later retrieval. This program will be called statistics++.
statistics++ consists of three components:
- datanommer, a server daemon that listens on the infrastructure message bus and records activity to a database
- datagrepper, an HTTP application that provides a RESTful web API for downloading data stored in the database based on a simple query syntax
- dataviewer, an HTTP application that produces automated data displays such as tables or charts
Target audience
datanommer is targeted toward infrastructure application developers who wish to make their data available for use in datagrepper and dataviewer.
datagrepper is targeted toward software developers who wish to generate their own queries for personal use or for inclusion in dataviewer.
dataviewer is targeted toward any user interested in statistics about the Fedora Project, such as Fedora users and developers, Red Hat executives, and journalists.
Goals
This project aims to solve the following problems:
- Data on the Statistics wiki page can only be generated and validated by those who have access to Fedora log servers.
- Data on the Statistics wiki page requires a human to generate the data each week.
- Data on the Statistics wiki page does not encompass all infrastructure applications.
- Data on the Statistics wiki page can be modified by anybody who can edit the wiki.
- To generate data for other infrastructure applications (such as FAS, Koji, Bodhi, and other applications), separate code has to be written for each application in order to download data.
To solve these problems, statistics++ will have the following functionality:
- Open, read-only access to any anonymized data collected by infrastructure applications
- A standard RESTful API for downloading data
- Flexible schemas for storing and retrieving data from infrastructure applications
- Live updates of statistical data from infrastructure applications
- An interface for creating automated queries and representing data in tables or charts
Non-goals
This project should not attempt to solve the following problems:
- Live pushing of data to other applications (the purpose of the messaging bus)
Details / design overview
Modularity
I decided to break statistics++ into three components to make them more modular. There are some benefits to this:
- Each component can be versioned and updated separately, assuming there is no API breakage (there shouldn't be).
- Other projects can decide to use the project as a whole or separate components (for example, using datanommer alone to prevent using the TG2 stack).
- I get to reuse the name datanommer (the name for the statistics project started about two years ago that did effectively the same thing but was put on hold due to limited resources).
datanommer
datanommer will be a system service written in Python. At a basic level, its purpose is to connect to a message bus, find messages that it is interested in, and store data from those messages into a database.
An init script or systemd service file (depending on the release) will be written for datanommer.
A configuration file defines data stored for each application. These data definitions are called schemas. A schema represents a single application, but applications can have multiple schemas. Each schema consists of this configuration:
- The regular expression to check messages against (with named groups)
- The fields that are stored in the database and their types (SQLAlchemy field types, most likely)
- (optional) A regular expression for reading data in from log files using the datanommer-logread utility
When enabled, datanommer will check each message on the bus against its list of regular expressions. If it matches a regular expression, it will extract the data using regex groups and store it in the database.
datagrepper
dataviewer
Requirements for release
- The following applications must send activity messages over the message bus:
- httpd
- MediaWiki
- FAS
- Koji
- Bodhi
- The datanommer service must run, connect to a message bus, listen for activity, parse activity messages and store data into a database for all of the above services.
- Data from before datanommer began running must be gathered from log files or application databases and placed in the database.
- The datagrepper service must run and respond to basic queries. The data schema for each infrastructure application and the query syntax must be documented, and examples in that documentation must function. The service must be capable of providing responses in JSON and compressing a response when requested.
Use cases
Within six months, statistics++ should be able to handle the following use cases:
- Adam wants information on wiki edits made in 2011. He doesn't have experience with any programming languages, but if he could import data into a spreadsheet program he can use the data that way.
- Brenda needs information on how often different architectures were requested from MirrorManager in order to provide information to FESCo on the debate of demoting an architecture to secondary.
- Cathy is a journalist and wants to determine the year-by-year growth rate of the Fedora user base.
- David is interested in seeing how many packages were available at each release's end-of-life and whether the rate of change is increasing or decreasing.
- Ethan of the Websites team wants to see if a certain page was regularly accessed enough to see if it should continue to be maintained.
- Fred wants to determine how many packages required to remain in testing for a certain period of time actually receive positive or negative karma in Bodhi.
Relationship to other services
statistics++ is directly related to the messaging bus project (fedbus and busmon).
statistics++ is indirectly related to every other infrastructure application, as we wish to include every infrastructure application in statistics++ eventually.
Reviewers
(Subject to change, names are basically placeholders)
- Infrastructure reviewer: Kevin Fenzi
- Code reviewer: Toshio Kuratomi
- Frontend usability reviewer: Máirín Duffy
Schedule summary
Milestones aren't likely to change, but dates are subject to wild change depending on the status of messaging support in infrastructure.
Date | Milestone |
---|---|
2012-04-13 | datanommer done:
|
2012-05-21 | datagrepper done
|
2012-05-28 | datagrepper Python client library done |
2012-06-29 | dataviewer done |
Dependencies
For statistics++ to run on Fedora Infrastructure, a messaging bus must be in place.
For the inclusion of each infrastructure application in statistics++, that application must send messages over the messaging bus, and data generated from that application prior to inclusion must be imported into the database.
Open issues
- How does the datanommer configuration file define data types? (Currently thinking SQLAlchemy types will work best)
- How should messages sent while datanommer is not listening be handled?
- Should datanommer check for duplicate messages (for example, reading in log files during a time period when messages were received)? If so, should this be configured per-schema?
Resources for information
- Current Statistics wiki page: http://fedoraproject.org/wiki/Statistics
- Why Fedora thinks metrics are important and some discussion on how to count users: http://fedoraproject.org/wiki/Infrastructure/Metrics
- Updates system metrics: https://admin.fedoraproject.org/updates/metrics/?release=F16
Responsible parties
- Responsible party for initial go-ahead: Tom 'spot' Callaway
- Responsible party for final project sign-off: Tom 'spot' Callaway