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.
10 lines
355 B
10 lines
355 B
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';
|
|
|