.dockerignore
.flake8
.gitignore
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
Makefile
README.md
RELEASE.md
ROADMAP.md
activate.ps1
pyproject.toml
requirements.txt
setup.py
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/workflows/build-install.yml
.github/workflows/cli-e2e.yml
.github/workflows/dagster-integration.yml
.github/workflows/lint-format.yml
.github/workflows/release.yml
.github/workflows/test.yml
.github/workflows/version-check.yml
baselinr/__init__.py
baselinr/cli.py
baselinr/cli_output.py
baselinr/client.py
baselinr/planner.py
baselinr.egg-info/PKG-INFO
baselinr.egg-info/SOURCES.txt
baselinr.egg-info/dependency_links.txt
baselinr.egg-info/entry_points.txt
baselinr.egg-info/not-zip-safe
baselinr.egg-info/requires.txt
baselinr.egg-info/top_level.txt
baselinr/anomaly/__init__.py
baselinr/anomaly/anomaly_types.py
baselinr/anomaly/detection_methods.py
baselinr/anomaly/detector.py
baselinr/config/__init__.py
baselinr/config/loader.py
baselinr/config/schema.py
baselinr/connectors/__init__.py
baselinr/connectors/base.py
baselinr/connectors/bigquery.py
baselinr/connectors/factory.py
baselinr/connectors/mysql.py
baselinr/connectors/postgres.py
baselinr/connectors/redshift.py
baselinr/connectors/snowflake.py
baselinr/connectors/sqlite.py
baselinr/drift/__init__.py
baselinr/drift/baseline_selector.py
baselinr/drift/detector.py
baselinr/drift/statistical_tests.py
baselinr/drift/strategies.py
baselinr/drift/type_normalizer.py
baselinr/drift/type_thresholds.py
baselinr/events/__init__.py
baselinr/events/builtin_hooks.py
baselinr/events/event_bus.py
baselinr/events/events.py
baselinr/events/hooks.py
baselinr/incremental/__init__.py
baselinr/incremental/change_detection.py
baselinr/incremental/planner.py
baselinr/incremental/state.py
baselinr/integrations/__init__.py
baselinr/integrations/dagster/__init__.py
baselinr/integrations/dagster/assets.py
baselinr/integrations/dagster/events.py
baselinr/integrations/dagster/sensors.py
baselinr/learning/__init__.py
baselinr/learning/expectation_learner.py
baselinr/learning/expectation_storage.py
baselinr/profiling/__init__.py
baselinr/profiling/core.py
baselinr/profiling/metrics.py
baselinr/profiling/query_builder.py
baselinr/profiling/schema_detector.py
baselinr/profiling/table_matcher.py
baselinr/profiling/tag_metadata.py
baselinr/query/__init__.py
baselinr/query/client.py
baselinr/query/formatters.py
baselinr/query/status_formatter.py
baselinr/storage/__init__.py
baselinr/storage/schema.sql
baselinr/storage/schema_snowflake.sql
baselinr/storage/schema_version.py
baselinr/storage/writer.py
baselinr/storage/migrations/__init__.py
baselinr/storage/migrations/manager.py
baselinr/storage/migrations/versions/__init__.py
baselinr/storage/migrations/versions/v1_initial.py
baselinr/storage/migrations/versions/v2_schema_registry.py
baselinr/storage/migrations/versions/v3_expectations.py
baselinr/ui/__init__.py
baselinr/ui/config_builder.py
baselinr/ui/dependencies.py
baselinr/ui/startup.py
baselinr/utils/__init__.py
baselinr/utils/logging.py
baselinr/utils/metrics.py
baselinr/utils/retry.py
baselinr/utils/worker_pool.py
dashboard/.gitignore
dashboard/backend/create_tables.sql
dashboard/backend/database.py
dashboard/backend/main.py
dashboard/backend/migrate_runs_table.sql
dashboard/backend/models.py
dashboard/backend/requirements.txt
dashboard/backend/sample_data_generator.py
dashboard/backend/start.sh
dashboard/frontend/fix-nodejs-path.ps1
dashboard/frontend/next-env.d.ts
dashboard/frontend/next.config.js
dashboard/frontend/postcss.config.js
dashboard/frontend/start.sh
dashboard/frontend/tailwind.config.ts
dashboard/frontend/app/globals.css
dashboard/frontend/app/layout.tsx
dashboard/frontend/app/page.tsx
dashboard/frontend/app/providers.tsx
dashboard/frontend/app/drift/page.tsx
dashboard/frontend/app/metrics/page.tsx
dashboard/frontend/app/runs/page.tsx
dashboard/frontend/app/tables/[tableName]/page.tsx
dashboard/frontend/components/DriftAlertsTable.tsx
dashboard/frontend/components/FilterPanel.tsx
dashboard/frontend/components/KPICard.tsx
dashboard/frontend/components/RunsTable.tsx
dashboard/frontend/components/Sidebar.tsx
docker/Dockerfile
docker/dagster.yaml
docker/docker-compose.yml
docker/grafana-datasources.yml
docker/init_postgres.sql
docker/prometheus.yml
docker/workspace.yaml
docs/ORGANIZATION.md
docs/README.md
docs/architecture/ANOMALY_DETECTION.md
docs/architecture/EVENTS_AND_HOOKS.md
docs/architecture/EVENTS_IMPLEMENTATION_SUMMARY.md
docs/architecture/EXPECTATION_LEARNING.md
docs/architecture/PROJECT_OVERVIEW.md
docs/dashboard/ARCHITECTURE.md
docs/dashboard/DASHBOARD_INTEGRATION.md
docs/dashboard/QUICKSTART.md
docs/dashboard/README.md
docs/dashboard/SETUP_COMPLETE.md
docs/dashboard/backend/DAGSTER.md
docs/dashboard/backend/README.md
docs/dashboard/frontend/README.md
docs/development/DEVELOPMENT.md
docs/development/GIT_HOOKS.md
docs/development/PARALLELISM_AND_BATCHING_PROMPT.md
docs/docker/README_METRICS.md
docs/getting-started/INSTALL.md
docs/getting-started/QUICKSTART.md
docs/guides/ANOMALY_DETECTION.md
docs/guides/DRIFT_DETECTION.md
docs/guides/EXPECTATION_LEARNING.md
docs/guides/INCREMENTAL_PROFILING.md
docs/guides/PARALLELISM_AND_BATCHING.md
docs/guides/PARTITION_SAMPLING.md
docs/guides/PROFILING_ENRICHMENT.md
docs/guides/PROMETHEUS_METRICS.md
docs/guides/PYTHON_SDK.md
docs/guides/RETRY_AND_RECOVERY.md
docs/guides/RETRY_QUICK_START.md
docs/guides/SCHEMA_CHANGE_DETECTION.md
docs/guides/SLACK_ALERTS.md
docs/guides/SLACK_ALERTS_QUICKSTART.md
docs/guides/STATISTICAL_DRIFT_DETECTION.md
docs/schemas/MIGRATION_GUIDE.md
docs/schemas/QUERY_EXAMPLES.md
docs/schemas/SCHEMA_REFERENCE.md
docs/schemas/STATUS_COMMAND.md
docs/schemas/UI_COMMAND.md
examples/config.yml
examples/config_advanced.yml
examples/config_bigquery.yml
examples/config_mysql.yml
examples/config_patterns.yml
examples/config_redshift.yml
examples/config_slack_alerts.yml
examples/config_sqlite.yml
examples/config_with_metrics.yml
examples/dagster_repository.py
examples/example_hooks.py
examples/quickstart.py
examples/sdk_advanced.py
examples/sdk_quickstart.py
tests/__init__.py
tests/test_anomaly_detection_methods.py
tests/test_anomaly_detector.py
tests/test_anomaly_integration.py
tests/test_baseline_selector.py
tests/test_client.py
tests/test_config.py
tests/test_dagster_integration.py
tests/test_drift_strategies.py
tests/test_events.py
tests/test_incremental_planner.py
tests/test_learning_expectation_learner.py
tests/test_learning_expectation_storage.py
tests/test_learning_integration.py
tests/test_migrations.py
tests/test_planner.py
tests/test_profiling.py
tests/test_query_client.py
tests/test_status_command.py
tests/test_status_formatter.py
tests/test_table_patterns.py
tests/test_ui_command.py
tests/utils/__init__.py
tests/utils/test_retry.py
tests/utils/test_worker_pool.py
website/.gitignore
website/README.md
website/docusaurus.config.ts
website/sidebars.ts
website/docs/getting-started/INSTALL.md
website/docs/getting-started/QUICKSTART.md
website/docs/guides/ANOMALY_DETECTION.md
website/docs/guides/BEST_PRACTICES.md
website/docs/guides/DRIFT_DETECTION.md
website/docs/guides/EXPECTATION_LEARNING.md
website/docs/guides/INCREMENTAL_PROFILING.md
website/docs/guides/PARALLELISM_AND_BATCHING.md
website/docs/guides/PARTITION_SAMPLING.md
website/docs/guides/PERFORMANCE_TUNING.md
website/docs/guides/PROFILING_ENRICHMENT.md
website/docs/guides/PROMETHEUS_METRICS.md
website/docs/guides/PYTHON_SDK.md
website/docs/guides/RETRY_AND_RECOVERY.md
website/docs/guides/RETRY_QUICK_START.md
website/docs/guides/SCHEMA_CHANGE_DETECTION.md
website/docs/guides/SLACK_ALERTS.md
website/docs/guides/SLACK_ALERTS_QUICKSTART.md
website/docs/guides/STATISTICAL_DRIFT_DETECTION.md
website/docs/guides/TROUBLESHOOTING.md
website/docs/reference/API_REFERENCE.md
website/docs/reference/CONFIG_REFERENCE.md
website/src/components/Features/index.tsx
website/src/components/Features/styles.module.css
website/src/components/HomepageFeatures/index.tsx
website/src/components/HomepageFeatures/styles.module.css
website/src/css/custom.css
website/src/pages/features.tsx
website/src/pages/index.module.css
website/src/pages/index.tsx
website/src/pages/markdown-page.md
website/static/.nojekyll
website/static/features.html
website/static/landing.html
website/static/quickstart.html
website/static/img/docusaurus-social-card.jpg
website/static/img/docusaurus.png
website/static/img/favicon.ico
website/static/img/favicon.svg
website/static/img/logo.svg
website/static/img/undraw_anomaly_detection.svg
website/static/img/undraw_cli_api.svg
website/static/img/undraw_data_quality_monitoring.svg
website/static/img/undraw_docusaurus_drift.svg
website/static/img/undraw_docusaurus_mountain.svg
website/static/img/undraw_docusaurus_profiling.svg
website/static/img/undraw_docusaurus_python.svg
website/static/img/undraw_docusaurus_react.svg
website/static/img/undraw_docusaurus_tree.svg
website/static/img/undraw_event_alerts.svg
website/static/img/undraw_expectation_learning.svg
website/static/img/undraw_multi_database.svg
website/static/img/undraw_partition_profiling.svg
website/static/img/undraw_schema_change.svg
website/static/img/undraw_statistical_drift_use_case.svg
website/static/img/undraw_statistical_tests.svg
website/static/img/undraw_web_dashboard.svg