mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import { SelectableValue } from '@grafana/data';
|
|
import { ResultFormat } from '../types';
|
|
|
|
export const RESULT_FORMATS: Array<SelectableValue<ResultFormat>> = [
|
|
{ label: 'Time series', value: 'time_series' },
|
|
{ label: 'Table', value: 'table' },
|
|
{ label: 'Logs', value: 'logs' },
|
|
];
|
|
|
|
export const DEFAULT_RESULT_FORMAT: ResultFormat = 'time_series';
|