Commit ea4d40e 1 parent 92f013e commit ea4d40e Copy full SHA for ea4d40e
File tree 1 file changed +8
-3
lines changed
metadata-ingestion/src/datahub/ingestion/source/looker
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -300,11 +300,16 @@ class LookerDashboardSourceConfig(
300
300
301
301
folder_path_pattern : AllowDenyPattern = Field (
302
302
default = AllowDenyPattern .allow_all (),
303
- description = "Allow or deny dashboards from specific folders. "
303
+ description = "Allow or deny dashboards from specific folders using their fully qualified paths . "
304
304
"For example: \n "
305
305
"deny: \n "
306
- " - sales/deprecated \n "
307
- "This pattern will deny the ingestion of all dashboards and looks within the sales/deprecated folder. \n "
306
+ " - Shared/deprecated \n "
307
+ "This pattern will deny the ingestion of all dashboards and looks within the Shared/deprecated folder. \n "
308
+ "allow: \n "
309
+ " - Shared/sales \n "
310
+ "This pattern will allow only the ingestion of dashboards within the Shared/sales folder. \n "
311
+ "To get the correct path from Looker, take the folder hierarchy shown in the UI and join it with slashes. "
312
+ "For example, Shared -> Customer Reports -> Sales becomes Shared/Customer Reports/Sales. "
308
313
"Dashboards will only be ingested if they're allowed by both this config and dashboard_pattern." ,
309
314
)
310
315
You can’t perform that action at this time.
0 commit comments