├── README.md ├── algorithm ├── Squeeze.py ├── __pycache__ │ └── Squeeze.cpython-37.pyc ├── clustering │ ├── __pycache__ │ │ └── density_cluster.cpython-37.pyc │ └── density_cluster.py ├── evaluate.py ├── filter_normal │ ├── __pycache__ │ │ └── filter.cpython-37.pyc │ ├── cal_deviation.py │ └── filter.py └── top_down_location │ ├── __pycache__ │ └── top_down.cpython-37.pyc │ └── top_down.py ├── app ├── common │ ├── __pycache__ │ │ ├── common.cpython-37.pyc │ │ └── errorcode.cpython-37.pyc │ ├── common.py │ └── errorcode.py ├── controller │ ├── __pycache__ │ │ └── render.cpython-37.pyc │ ├── api │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── migrations │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ ├── render.py │ ├── settings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── settings.cpython-37.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ └── wsgi.cpython-37.pyc │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── templates │ │ ├── delete.html │ │ ├── detect.html │ │ ├── import_data.html │ │ ├── index.html │ │ ├── search_data_by_name.html │ │ └── test.html │ └── tmp │ │ ├── uploadfile_1c55950e.csv │ │ ├── uploadfile_3a647242.csv │ │ ├── uploadfile_563dc066.csv │ │ ├── uploadfile_5f80b6b9.csv │ │ ├── uploadfile_6203906e.csv │ │ ├── uploadfile_65959c67.csv │ │ ├── uploadfile_78547746.csv │ │ ├── uploadfile_7f33db21.csv │ │ ├── uploadfile_8f9133cf.csv │ │ └── uploadfile_fc32d74c.csv ├── db_operation │ ├── __pycache__ │ │ ├── database.cpython-37.pyc │ │ └── datatable_op.cpython-37.pyc │ ├── database.py │ ├── datatable_op.py │ └── tmp │ │ └── tmpfile_table38.csv └── service │ ├── Data_Service.py │ ├── Detect_Service.py │ ├── __pycache__ │ ├── Data_Service.cpython-37.pyc │ ├── Detect_Service.cpython-37.pyc │ └── arguments.cpython-37.pyc │ └── arguments.py └── sql ├── anomaly.sql ├── create_table_of_data.sql ├── sample_dataset.sql └── wirtesql.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/Squeeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/Squeeze.py -------------------------------------------------------------------------------- /algorithm/__pycache__/Squeeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/__pycache__/Squeeze.cpython-37.pyc -------------------------------------------------------------------------------- /algorithm/clustering/__pycache__/density_cluster.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/clustering/__pycache__/density_cluster.cpython-37.pyc -------------------------------------------------------------------------------- /algorithm/clustering/density_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/clustering/density_cluster.py -------------------------------------------------------------------------------- /algorithm/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/evaluate.py -------------------------------------------------------------------------------- /algorithm/filter_normal/__pycache__/filter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/filter_normal/__pycache__/filter.cpython-37.pyc -------------------------------------------------------------------------------- /algorithm/filter_normal/cal_deviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/filter_normal/cal_deviation.py -------------------------------------------------------------------------------- /algorithm/filter_normal/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/filter_normal/filter.py -------------------------------------------------------------------------------- /algorithm/top_down_location/__pycache__/top_down.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/top_down_location/__pycache__/top_down.cpython-37.pyc -------------------------------------------------------------------------------- /algorithm/top_down_location/top_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/algorithm/top_down_location/top_down.py -------------------------------------------------------------------------------- /app/common/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/common/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /app/common/__pycache__/errorcode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/common/__pycache__/errorcode.cpython-37.pyc -------------------------------------------------------------------------------- /app/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/common/common.py -------------------------------------------------------------------------------- /app/common/errorcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/common/errorcode.py -------------------------------------------------------------------------------- /app/controller/__pycache__/render.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/__pycache__/render.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controller/api/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/api/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/admin.py -------------------------------------------------------------------------------- /app/controller/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/apps.py -------------------------------------------------------------------------------- /app/controller/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controller/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/models.py -------------------------------------------------------------------------------- /app/controller/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/tests.py -------------------------------------------------------------------------------- /app/controller/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/api/views.py -------------------------------------------------------------------------------- /app/controller/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controller/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/manage.py -------------------------------------------------------------------------------- /app/controller/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/render.py -------------------------------------------------------------------------------- /app/controller/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controller/settings/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/settings/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/settings/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/settings/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /app/controller/settings/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/settings.py -------------------------------------------------------------------------------- /app/controller/settings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/urls.py -------------------------------------------------------------------------------- /app/controller/settings/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/settings/wsgi.py -------------------------------------------------------------------------------- /app/controller/templates/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/delete.html -------------------------------------------------------------------------------- /app/controller/templates/detect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/detect.html -------------------------------------------------------------------------------- /app/controller/templates/import_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/import_data.html -------------------------------------------------------------------------------- /app/controller/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/index.html -------------------------------------------------------------------------------- /app/controller/templates/search_data_by_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/search_data_by_name.html -------------------------------------------------------------------------------- /app/controller/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/templates/test.html -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_1c55950e.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_1c55950e.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_3a647242.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_3a647242.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_563dc066.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_563dc066.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_5f80b6b9.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_6203906e.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_6203906e.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_65959c67.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_65959c67.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_78547746.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_78547746.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_7f33db21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_7f33db21.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_8f9133cf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/controller/tmp/uploadfile_8f9133cf.csv -------------------------------------------------------------------------------- /app/controller/tmp/uploadfile_fc32d74c.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/db_operation/__pycache__/database.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/db_operation/__pycache__/database.cpython-37.pyc -------------------------------------------------------------------------------- /app/db_operation/__pycache__/datatable_op.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/db_operation/__pycache__/datatable_op.cpython-37.pyc -------------------------------------------------------------------------------- /app/db_operation/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/db_operation/database.py -------------------------------------------------------------------------------- /app/db_operation/datatable_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/db_operation/datatable_op.py -------------------------------------------------------------------------------- /app/db_operation/tmp/tmpfile_table38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/db_operation/tmp/tmpfile_table38.csv -------------------------------------------------------------------------------- /app/service/Data_Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/Data_Service.py -------------------------------------------------------------------------------- /app/service/Detect_Service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/Detect_Service.py -------------------------------------------------------------------------------- /app/service/__pycache__/Data_Service.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/__pycache__/Data_Service.cpython-37.pyc -------------------------------------------------------------------------------- /app/service/__pycache__/Detect_Service.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/__pycache__/Detect_Service.cpython-37.pyc -------------------------------------------------------------------------------- /app/service/__pycache__/arguments.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/__pycache__/arguments.cpython-37.pyc -------------------------------------------------------------------------------- /app/service/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/app/service/arguments.py -------------------------------------------------------------------------------- /sql/anomaly.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/sql/anomaly.sql -------------------------------------------------------------------------------- /sql/create_table_of_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/sql/create_table_of_data.sql -------------------------------------------------------------------------------- /sql/sample_dataset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/sql/sample_dataset.sql -------------------------------------------------------------------------------- /sql/wirtesql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalaland1921/Root_Cause_Detection_System_Demo/HEAD/sql/wirtesql.py --------------------------------------------------------------------------------