mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
Allow multiple series in Predictable CSV Wave testdata scenario Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
22 lines
368 B
TypeScript
22 lines
368 B
TypeScript
import { CSVWave, TestDataQuery } from './types';
|
|
|
|
export const defaultPulseQuery: any = {
|
|
timeStep: 60,
|
|
onCount: 3,
|
|
onValue: 2,
|
|
offCount: 3,
|
|
offValue: 1,
|
|
};
|
|
|
|
export const defaultCSVWaveQuery: CSVWave[] = [
|
|
{
|
|
timeStep: 60,
|
|
valuesCSV: '0,0,2,2,1,1',
|
|
},
|
|
];
|
|
|
|
export const defaultQuery: TestDataQuery = {
|
|
scenarioId: 'random_walk',
|
|
refId: '',
|
|
};
|