constants.ts 356 B

1234567891011
  1. import { SelectableValue } from '@grafana/data';
  2. import { ResultFormat } from '../types';
  3. export const RESULT_FORMATS: Array<SelectableValue<ResultFormat>> = [
  4. { label: 'Time series', value: 'time_series' },
  5. { label: 'Table', value: 'table' },
  6. { label: 'Logs', value: 'logs' },
  7. ];
  8. export const DEFAULT_RESULT_FORMAT: ResultFormat = 'time_series';