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.
12 lines
406 B
12 lines
406 B
import { DataSourceSettings } from '@grafana/data';
|
|
import { PromOptions } from '../types';
|
|
import { createDatasourceSettings } from '../../../../features/datasources/mocks';
|
|
|
|
export function createDefaultConfigOptions(): DataSourceSettings<PromOptions> {
|
|
return createDatasourceSettings<PromOptions>({
|
|
timeInterval: '1m',
|
|
queryTimeout: '1m',
|
|
httpMethod: 'GET',
|
|
directUrl: 'url',
|
|
});
|
|
}
|
|
|