├── .gitignore ├── .zuul.yaml ├── Dockerfile ├── Makefile ├── README.md ├── app.py ├── ceph.py ├── lib ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── ceph.cpython-36.pyc │ ├── model.cpython-36.pyc │ └── prometheus.cpython-36.pyc ├── ceph.py ├── model.py └── prometheus.py ├── model.py ├── prometheus.py ├── requirements.txt └── train-prophet-deployment-template.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/.zuul.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/app.py -------------------------------------------------------------------------------- /ceph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/ceph.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/ceph.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/__pycache__/ceph.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/prometheus.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/__pycache__/prometheus.cpython-36.pyc -------------------------------------------------------------------------------- /lib/ceph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/ceph.py -------------------------------------------------------------------------------- /lib/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/model.py -------------------------------------------------------------------------------- /lib/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/lib/prometheus.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/model.py -------------------------------------------------------------------------------- /prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/prometheus.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/requirements.txt -------------------------------------------------------------------------------- /train-prophet-deployment-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AICoE/prometheus-anomaly-detector-legacy/HEAD/train-prophet-deployment-template.yaml --------------------------------------------------------------------------------