-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -211,7 +211,7 @@ dbt-metabase exposures \ | |
--metabase-username [email protected] \ | ||
--metabase-password Password123 \ | ||
--output-path models/ \ | ||
--exclude-collections temporary | ||
--exclude-collections "temp*" | ||
``` | ||
|
||
Once the execution completes, check your output path for exposures files containing descriptions, creator details and links for Metabase questions and dashboards: | ||
|
@@ -295,7 +295,7 @@ c.export_models( | |
# Extracting exposures | ||
c.extract_exposures( | ||
output_path=".", | ||
collection_filter=Filter(exclude=["temporary"]), | ||
collection_filter=Filter(exclude=["temp*"]), | ||
) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters