├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── cyclops ├── __init__.py ├── app.py ├── cache.py ├── config.py ├── count.py ├── db.py ├── handlers │ ├── __init__.py │ ├── base.py │ ├── healthcheck.py │ └── router.py ├── hash_calculator.py ├── init.py ├── local.conf ├── projects.py ├── server.py ├── storage.py └── tasks.py ├── logo.png ├── redis.conf ├── setup.py └── tests ├── __init__.py ├── handlers ├── __init__.py └── test_router.py ├── helpers.py ├── sentry_db.sql ├── test.conf ├── test_app.py ├── test_cache.py ├── test_conf.py ├── test_grouping.py ├── test_server.py └── test_storage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/README.md -------------------------------------------------------------------------------- /cyclops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/__init__.py -------------------------------------------------------------------------------- /cyclops/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/app.py -------------------------------------------------------------------------------- /cyclops/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/cache.py -------------------------------------------------------------------------------- /cyclops/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/config.py -------------------------------------------------------------------------------- /cyclops/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/count.py -------------------------------------------------------------------------------- /cyclops/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/db.py -------------------------------------------------------------------------------- /cyclops/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclops/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/handlers/base.py -------------------------------------------------------------------------------- /cyclops/handlers/healthcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/handlers/healthcheck.py -------------------------------------------------------------------------------- /cyclops/handlers/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/handlers/router.py -------------------------------------------------------------------------------- /cyclops/hash_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/hash_calculator.py -------------------------------------------------------------------------------- /cyclops/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/init.py -------------------------------------------------------------------------------- /cyclops/local.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclops/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/projects.py -------------------------------------------------------------------------------- /cyclops/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/server.py -------------------------------------------------------------------------------- /cyclops/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/storage.py -------------------------------------------------------------------------------- /cyclops/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/cyclops/tasks.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/logo.png -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/redis.conf -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/handlers/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/handlers/test_router.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/sentry_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/sentry_db.sql -------------------------------------------------------------------------------- /tests/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test.conf -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_conf.py -------------------------------------------------------------------------------- /tests/test_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_grouping.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sentry-extensions/cyclops/HEAD/tests/test_storage.py --------------------------------------------------------------------------------