Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
GetDataSourceListFilters interface
Signature
export interface GetDataSourceListFilters Import
import { GetDataSourceListFilters } from '@grafana/runtime';Properties
all property
By default only data sources that can be queried will be returned. Meaning they have tracing, metrics, logs or annotations flag set in plugin.json file
Signature
all?: boolean;annotations property
Only return data sources that support annotations
Signature
annotations?: boolean;dashboard property
Set to true to return dashboard data source
Signature
dashboard?: boolean;metrics property
Only return data sources that support metrics response
Signature
metrics?: boolean;mixed property
Include mixed deta source by setting this to true
Signature
mixed?: boolean;pluginId property
filter list by plugin
Signature
pluginId?: string;tracing property
Only return data sources that support tracing response
Signature
tracing?: boolean;variables property
Set to true to return data source variables
Signature
variables?: boolean;


