This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from openedx/bmtcril/remove_block_relationships
Remove block relationships / add email to profile sink
- Loading branch information
Showing
18 changed files
with
20 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
Event Sink ClickHouse | ||
##################### | ||
|
||
|pypi-badge| |ci-badge| |codecov-badge| |doc-badge| |pyversions-badge| | ||
|license-badge| |status-badge| | ||
|
||
Purpose | ||
******* | ||
|
||
This project acts as a plugin to the `Edx Platform`_, listens for | ||
configured `Open edX events`_, and sends them to a `ClickHouse`_ database for | ||
analytics or other processing. This is being maintained as part of the Open | ||
Analytics Reference System (`OARS`_) project. | ||
analytics or other processing. This is being maintained as part of the | ||
`Aspects`_ project. | ||
|
||
OARS consumes the data sent to ClickHouse by this plugin as part of data | ||
enrichment for reporting, or capturing data that otherwise does not fit in | ||
|
@@ -21,9 +18,7 @@ Sinks | |
|
||
Currently the only sink is in the CMS. It listens for the ``COURSE_PUBLISHED`` | ||
signal and serializes a subset of the published course blocks into one table | ||
and the relationships between blocks into another table. With those we are | ||
able to recreate the "graph" of the course and get relevant data, such as | ||
block names, for reporting. | ||
in ClickHouse. | ||
|
||
Commands | ||
******** | ||
|
@@ -44,7 +39,7 @@ Please see the command help for details: | |
.. _Open edX events: https://github.com/openedx/openedx-events | ||
.. _Edx Platform: https://github.com/openedx/edx-platform | ||
.. _ClickHouse: https://clickhouse.com | ||
.. _OARS: https://docs.openedx.org/projects/openedx-oars/en/latest/index.html | ||
.. _Aspects: https://docs.openedx.org/projects/openedx-aspects/en/latest/index.html | ||
|
||
Getting Started | ||
*************** | ||
|
@@ -212,33 +207,3 @@ Reporting Security Issues | |
************************* | ||
|
||
Please do not report security issues in public. Please email [email protected]. | ||
|
||
.. |pypi-badge| image:: https://img.shields.io/pypi/v/openedx-event-sink-clickhouse.svg | ||
:target: https://pypi.python.org/pypi/openedx-event-sink-clickhouse/ | ||
:alt: PyPI | ||
|
||
.. |ci-badge| image:: https://github.com/openedx/openedx-event-sink-clickhouse/workflows/Python%20CI/badge.svg?branch=main | ||
:target: https://github.com/openedx/openedx-event-sink-clickhouse/actions | ||
:alt: CI | ||
|
||
.. |codecov-badge| image:: https://codecov.io/github/openedx/openedx-event-sink-clickhouse/coverage.svg?branch=main | ||
:target: https://codecov.io/github/openedx/openedx-event-sink-clickhouse?branch=main | ||
:alt: Codecov | ||
|
||
.. |doc-badge| image:: https://readthedocs.org/projects/openedx-event-sink-clickhouse/badge/?version=latest | ||
:target: https://openedx-event-sink-clickhouse.readthedocs.io/en/latest/ | ||
:alt: Documentation | ||
|
||
.. |pyversions-badge| image:: https://img.shields.io/pypi/pyversions/openedx-event-sink-clickhouse.svg | ||
:target: https://pypi.python.org/pypi/openedx-event-sink-clickhouse/ | ||
:alt: Supported Python versions | ||
|
||
.. |license-badge| image:: https://img.shields.io/github/license/openedx/openedx-event-sink-clickhouse.svg | ||
:target: https://github.com/openedx/openedx-event-sink-clickhouse/blob/main/LICENSE.txt | ||
:alt: License | ||
|
||
.. TODO: Choose one of the statuses below and remove the other status-badge lines. | ||
.. |status-badge| image:: https://img.shields.io/badge/Status-Experimental-yellow | ||
.. .. |status-badge| image:: https://img.shields.io/badge/Status-Maintained-brightgreen | ||
.. .. |status-badge| image:: https://img.shields.io/badge/Status-Deprecated-orange | ||
.. .. |status-badge| image:: https://img.shields.io/badge/Status-Unsupported-red |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ Contents: | |
testing | ||
internationalization | ||
modules | ||
changelog | ||
decisions | ||
references/index | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
A sink for Open edX events to send them to ClickHouse. | ||
""" | ||
|
||
__version__ = "0.5.0" | ||
__version__ = "1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
event_sink_clickhouse/templates/event_sink_clickhouse/base.html
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,14 +130,13 @@ def is_requirement(line): | |
sys.exit() | ||
|
||
README = open(os.path.join(os.path.dirname(__file__), 'README.rst'), encoding="utf8").read() | ||
CHANGELOG = open(os.path.join(os.path.dirname(__file__), 'CHANGELOG.rst'), encoding="utf8").read() | ||
|
||
setup( | ||
name='openedx_event_sink_clickhouse', | ||
version=VERSION, | ||
description="""A sink for Open edX events to send them to ClickHouse""", | ||
long_description_content_type="text/x-rst", | ||
long_description=README + '\n\n' + CHANGELOG, | ||
long_description=README, | ||
author='edX', | ||
author_email='[email protected]', | ||
url='https://github.com/openedx/openedx_event_sink_clickhouse', | ||
|
Oops, something went wrong.