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 |