├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── ceres-maintenance ├── ceres-node-create ├── ceres-node-read ├── ceres-node-write ├── ceres-tree-create ├── ceres-tree-find ├── convert-wsp-to-ceres └── slicecat ├── ceres.py ├── docs ├── Makefile ├── ceres.rst ├── conf.py ├── index.rst └── requirements.txt ├── plugins └── maintenance │ ├── defrag.py │ ├── merge.py │ ├── metadata.py │ ├── orphans.py │ ├── ratelimit.py │ ├── rollup.py │ ├── rollup_ng.py │ └── template.py ├── setup.py ├── test_requirements.txt └── tests ├── __init__.py └── test_ceres.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/README.md -------------------------------------------------------------------------------- /bin/ceres-maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-maintenance -------------------------------------------------------------------------------- /bin/ceres-node-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-node-create -------------------------------------------------------------------------------- /bin/ceres-node-read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-node-read -------------------------------------------------------------------------------- /bin/ceres-node-write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-node-write -------------------------------------------------------------------------------- /bin/ceres-tree-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-tree-create -------------------------------------------------------------------------------- /bin/ceres-tree-find: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/ceres-tree-find -------------------------------------------------------------------------------- /bin/convert-wsp-to-ceres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/convert-wsp-to-ceres -------------------------------------------------------------------------------- /bin/slicecat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/bin/slicecat -------------------------------------------------------------------------------- /ceres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/ceres.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/ceres.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/docs/ceres.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /plugins/maintenance/defrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/defrag.py -------------------------------------------------------------------------------- /plugins/maintenance/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/merge.py -------------------------------------------------------------------------------- /plugins/maintenance/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/metadata.py -------------------------------------------------------------------------------- /plugins/maintenance/orphans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/orphans.py -------------------------------------------------------------------------------- /plugins/maintenance/ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/ratelimit.py -------------------------------------------------------------------------------- /plugins/maintenance/rollup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/rollup.py -------------------------------------------------------------------------------- /plugins/maintenance/rollup_ng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/rollup_ng.py -------------------------------------------------------------------------------- /plugins/maintenance/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/plugins/maintenance/template.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ceres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphite-project/ceres/HEAD/tests/test_ceres.py --------------------------------------------------------------------------------