You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,10 +71,28 @@ If you are using a non-default universe (e.g., a sovereign cloud), you can confi
71
71
3. Select "Google Cloud Trace"
72
72
4. Select the authentication type from the dropdown (JWT, GCE, Access Token, or OAuth Passthrough)
73
73
5. Provide the required credentials for your chosen authentication method
74
-
6. Click "Save & test" to test that traces can be queried from Cloud Trace.
74
+
6. Optionally, configure the **Universe Domain** if you are using a non-default GCP environment
75
+
7. Optionally, configure the **Project List Filter** to restrict which projects appear in the project dropdown (see [Project List Filter](#project-list-filter) below)
76
+
8. Click "Save & test" to test that traces can be queried from Cloud Trace.
If you have access to many GCP projects, you can restrict which projects appear in the project dropdown by configuring a **Project List Filter** in the data source settings.
83
+
84
+
Enter project IDs or regex patterns in the text area, one per line. Only projects matching at least one pattern will appear in the dropdown. Leave the field empty to show all projects (the default behavior).
85
+
86
+
Each line is treated as a [regular expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions) anchored to the full project ID. For example:
87
+
88
+
| Pattern | Matches |
89
+
| --- | --- |
90
+
|`my-project-123`| Only the exact project `my-project-123`|
91
+
|`team-alpha-.*`| All projects starting with `team-alpha-`|
92
+
|`prod-.*-trace`| Projects like `prod-us-trace`, `prod-eu-trace`, etc. |
93
+
94
+
You can combine multiple patterns (one per line) to match the union of all patterns. If a pattern contains invalid regex syntax, it is treated as a literal string match.
description="Enter project IDs or regex patterns, one per line. Only matching projects will appear in the project dropdown. Leave empty to show all projects."
0 commit comments