When you connect a data source, Datachecks automatically scans for databases and tables to monitor. Dataset Discovery lets you control exactly which tables are included using inclusion and exclusion patterns.Documentation Index
Fetch the complete documentation index at: https://docs.datachecks.io/llms.txt
Use this file to discover all available pages before exploring further.
Inclusion and exclusion lists
You can configure two lists for each data source:- Table Inclusion List — Only tables matching these patterns are profiled and monitored.
- Table Exclusion List — Tables matching these patterns are ignored.
Pattern matching
Patterns support wildcards for flexible matching:| Pattern | Matches | Example |
|---|---|---|
% | Any sequence of characters | %user matches admin_user, active_user |
_ | Exactly one character | customer__ matches customer01, customerAB |
* | Zero or more characters | user*data matches user_metadata, user_salesdata |
\ | Escape a wildcard to match it literally | north\_% matches north_star, north_end |
| Exact name | Only that specific table | retailorders matches only retailorders |