D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
datasource
/
influxdb
/
components
/
editor
/
Filename :
constants.ts
back
Copy
import { SelectableValue } from '@grafana/data/src'; 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';