forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
403 B
16 lines
403 B
import { DataSourceApi } from '@grafana/data';
|
|
import { getDataSourceSrv } from '@grafana/runtime';
|
|
|
|
export async function getDS(uid?: string): Promise<DataSourceApi | undefined> {
|
|
if (!uid) {
|
|
return undefined;
|
|
}
|
|
|
|
const dsSrv = getDataSourceSrv();
|
|
try {
|
|
return await dsSrv.get(uid);
|
|
} catch (error) {
|
|
console.error('Failed to load data source', error);
|
|
return undefined;
|
|
}
|
|
}
|
|
|