Skip to content

Commit 384b566

Browse files
committed
fix: Fix hardcoded datasource uids
1 parent 29fb707 commit 384b566

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/AlertsTable/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class AlertsQueryBuilder implements QueryBuilder<TableRow> {
165165

166166
return new SceneQueryRunner({
167167
datasource: {
168-
uid: 'prometheus',
168+
uid: '$datasource',
169169
type: 'prometheus',
170170
},
171171
queries: [

src/components/ResourceBreakdownTable/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ function createRootQuery(sceneVariables: SceneVariableSet | SceneVariables, sort
220220

221221
return new SceneQueryRunner({
222222
datasource: {
223-
uid: 'prometheus',
223+
uid: '$datasource',
224224
type: 'prometheus',
225225
},
226226
queries: [

0 commit comments

Comments
 (0)