Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
event-tracking
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
event-tracking
Commits
1ecef916
Commit
1ecef916
authored
Sep 19, 2013
by
Gabe Mulley
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7 from mulby/gabe/readme
add a very simple description
parents
d062e1d1
e9e076ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
README.rst
+17
-1
setup.py
+1
-1
No files found.
README.rst
View file @
1ecef916
...
@@ -5,7 +5,23 @@ __ http://code.edx.org/
...
@@ -5,7 +5,23 @@ __ http://code.edx.org/
event-tracking
event-tracking
==============
==============
@@@
This is a system for tracking events. It is designed to support pluggable
backends for persisting the event data. When the application emits an event
each backend will be given an opportunity to save the event to stable storage.
Roadmap
-------
In the very near future the following features are planned:
* Layered contexts - allowing data to be injected into events even without
having to pass around all of said data to every location where the events
are emitted.
* Django integration - provide a Django app that allows events to easily be
captured by web applications.
* Dynamic documentation and event metadata - allow event emitters to document
the event types, and persist this documentation along with the events so
that it can be referenced during analysis to provide context about what
the event is and when it is emitted.
Documentation
Documentation
-------------
-------------
...
...
setup.py
View file @
1ecef916
import
os
import
os
from
setuptools
import
setup
from
setuptools
import
setup
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.
md
'
))
.
read
()
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.
rst
'
))
.
read
()
# allow setup.py to be run from any path
# allow setup.py to be run from any path
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment