Files
drt/config.quickstart.yaml
DevOps Team f5b190c91d Remove investigation feature completely
- Delete investigation CLI command and related services
- Remove investigation data models and report generators
- Clean up configuration options and documentation
- Update gitignore and remove stale egg-info

Investigation feature is no longer needed and has been fully removed.
Backup preserved in git tag 'pre-investigation-removal'.
2026-02-11 20:40:43 +07:00

46 lines
844 B
YAML
Executable File

# Quick Start Configuration
# Minimal configuration to get started quickly
database_pairs:
- name: "Quick_Test"
enabled: true
baseline:
server: "YOUR_SERVER_NAME"
database: "YOUR_BASELINE_DB"
target:
server: "YOUR_SERVER_NAME"
database: "YOUR_TARGET_DB"
comparison:
mode: "health_check"
row_count:
enabled: true
tolerance_percent: 0.0
schema:
enabled: true
checks:
column_names: true
data_types: true
aggregates:
enabled: false
tables:
# Add your tables here after running discovery
# Example:
# - schema: "dbo"
# name: "YourTable"
# enabled: true
# expected_in_target: true
# aggregate_columns: []
reporting:
output_dir: "./reports"
formats:
html: true
csv: true
pdf: false
logging:
level: "INFO"
output_dir: "./logs"