mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
28 lines
701 B
TypeScript
28 lines
701 B
TypeScript
import { DataQueryRequest, DataQuery, CoreApp, dateTime } from '@grafana/data';
|
|
|
|
export function getQueryOptions<TQuery extends DataQuery>(
|
|
options: Partial<DataQueryRequest<TQuery>>
|
|
): DataQueryRequest<TQuery> {
|
|
const raw = { from: 'now', to: 'now-1h' };
|
|
const range = { from: dateTime(), to: dateTime(), raw: raw };
|
|
|
|
const defaults: DataQueryRequest<TQuery> = {
|
|
requestId: 'TEST',
|
|
app: CoreApp.Dashboard,
|
|
range: range,
|
|
targets: [],
|
|
scopedVars: {},
|
|
timezone: 'browser',
|
|
panelId: 1,
|
|
dashboardUID: 'test-uid-1',
|
|
interval: '60s',
|
|
intervalMs: 60000,
|
|
maxDataPoints: 500,
|
|
startTime: 0,
|
|
};
|
|
|
|
Object.assign(defaults, options);
|
|
|
|
return defaults;
|
|
}
|