├── .github └── workflows │ ├── pull_request.yml │ ├── python-job.yml │ └── release_exe.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── NOTICE ├── README.md ├── demo ├── demo │ ├── demo_helper.py │ ├── heartbeat_demo.py │ ├── main.py │ ├── observability_demo.py │ └── testgen_demo.py ├── deploy │ ├── Dockerfile │ ├── build-image │ ├── docker-bake.json │ └── requirements.txt └── input_data │ ├── data_tests.csv │ └── demo_pipeline_tests.csv ├── dk-installer.py ├── docs └── build_windows_installer.md ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py ├── installer.py ├── test_action.py ├── test_analytics_wrapper.py ├── test_compose_delete.py ├── test_installer.py ├── test_multistep_action.py ├── test_obs_demo.py ├── test_obs_install.py ├── test_obs_upgrade.py ├── test_stream_iterator.py ├── test_tg_install.py ├── test_tg_run_demo.py └── test_tg_upgrade.py /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/python-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/.github/workflows/python-job.yml -------------------------------------------------------------------------------- /.github/workflows/release_exe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/.github/workflows/release_exe.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo/demo_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/demo/demo_helper.py -------------------------------------------------------------------------------- /demo/demo/heartbeat_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/demo/heartbeat_demo.py -------------------------------------------------------------------------------- /demo/demo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/demo/main.py -------------------------------------------------------------------------------- /demo/demo/observability_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/demo/observability_demo.py -------------------------------------------------------------------------------- /demo/demo/testgen_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/demo/testgen_demo.py -------------------------------------------------------------------------------- /demo/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/deploy/Dockerfile -------------------------------------------------------------------------------- /demo/deploy/build-image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/deploy/build-image -------------------------------------------------------------------------------- /demo/deploy/docker-bake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/deploy/docker-bake.json -------------------------------------------------------------------------------- /demo/deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/deploy/requirements.txt -------------------------------------------------------------------------------- /demo/input_data/data_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/input_data/data_tests.csv -------------------------------------------------------------------------------- /demo/input_data/demo_pipeline_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/demo/input_data/demo_pipeline_tests.csv -------------------------------------------------------------------------------- /dk-installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/dk-installer.py -------------------------------------------------------------------------------- /docs/build_windows_installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/docs/build_windows_installer.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/installer.py: -------------------------------------------------------------------------------- 1 | ../dk-installer.py -------------------------------------------------------------------------------- /tests/test_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_action.py -------------------------------------------------------------------------------- /tests/test_analytics_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_analytics_wrapper.py -------------------------------------------------------------------------------- /tests/test_compose_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_compose_delete.py -------------------------------------------------------------------------------- /tests/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_installer.py -------------------------------------------------------------------------------- /tests/test_multistep_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_multistep_action.py -------------------------------------------------------------------------------- /tests/test_obs_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_obs_demo.py -------------------------------------------------------------------------------- /tests/test_obs_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_obs_install.py -------------------------------------------------------------------------------- /tests/test_obs_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_obs_upgrade.py -------------------------------------------------------------------------------- /tests/test_stream_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_stream_iterator.py -------------------------------------------------------------------------------- /tests/test_tg_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_tg_install.py -------------------------------------------------------------------------------- /tests/test_tg_run_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_tg_run_demo.py -------------------------------------------------------------------------------- /tests/test_tg_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataKitchen/data-observability-installer/HEAD/tests/test_tg_upgrade.py --------------------------------------------------------------------------------