mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Initial * WIP * wip * Refactor: fixing types * Refactor: Fixed more typings * Feature: Moves TestData to new API * Feature: Moves CloudMonitoringDatasource to new API * Feature: Moves PrometheusDatasource to new Variables API * Refactor: Clean up comments * Refactor: changes to QueryEditorProps instead * Refactor: cleans up testdata, prometheus and cloud monitoring variable support * Refactor: adds variableQueryRunner * Refactor: adds props to VariableQueryEditor * Refactor: reverted Loki editor * Refactor: refactor queryrunner into smaller pieces * Refactor: adds upgrade query thunk * Tests: Updates old tests * Docs: fixes build errors for exported api * Tests: adds guard tests * Tests: adds QueryRunner tests * Tests: fixes broken tests * Tests: adds variableQueryObserver tests * Test: adds tests for operator functions * Test: adds VariableQueryRunner tests * Refactor: renames dataSource * Refactor: adds definition for standard variable support * Refactor: adds cancellation to OptionPicker * Refactor: changes according to Dominiks suggestion * Refactor:tt * Refactor: adds tests for factories * Refactor: restructuring a bit * Refactor: renames variableQueryRunner.ts * Refactor: adds quick exit when runRequest returns errors * Refactor: using TextArea from grafana/ui * Refactor: changed from interfaces to classes instead * Tests: fixes broken test * Docs: fixes doc issue count * Docs: fixes doc issue count * Refactor: Adds check for self referencing queries * Tests: fixed unused variable * Refactor: Changes comments
260 lines
7.3 KiB
TypeScript
260 lines
7.3 KiB
TypeScript
import set from 'lodash/set';
|
|
import { from, merge, Observable, of } from 'rxjs';
|
|
import { delay, map } from 'rxjs/operators';
|
|
|
|
import {
|
|
AnnotationEvent,
|
|
ArrayDataFrame,
|
|
arrowTableToDataFrame,
|
|
base64StringToArrowTable,
|
|
DataFrame,
|
|
DataQueryError,
|
|
DataQueryRequest,
|
|
DataQueryResponse,
|
|
DataSourceApi,
|
|
DataSourceInstanceSettings,
|
|
DataTopic,
|
|
LiveChannelScope,
|
|
LoadingState,
|
|
TableData,
|
|
TimeRange,
|
|
TimeSeries,
|
|
} from '@grafana/data';
|
|
import { Scenario, TestDataQuery } from './types';
|
|
import {
|
|
getBackendSrv,
|
|
getLiveMeasurementsObserver,
|
|
getTemplateSrv,
|
|
TemplateSrv,
|
|
toDataQueryError,
|
|
} from '@grafana/runtime';
|
|
import { queryMetricTree } from './metricTree';
|
|
import { runStream } from './runStreams';
|
|
import { getSearchFilterScopedVar } from 'app/features/variables/utils';
|
|
import { TestDataVariableSupport } from './variables';
|
|
|
|
type TestData = TimeSeries | TableData;
|
|
|
|
export class TestDataDataSource extends DataSourceApi<TestDataQuery> {
|
|
scenariosCache?: Promise<Scenario[]>;
|
|
|
|
constructor(
|
|
instanceSettings: DataSourceInstanceSettings,
|
|
private readonly templateSrv: TemplateSrv = getTemplateSrv()
|
|
) {
|
|
super(instanceSettings);
|
|
this.variables = new TestDataVariableSupport();
|
|
}
|
|
|
|
query(options: DataQueryRequest<TestDataQuery>): Observable<DataQueryResponse> {
|
|
const queries: any[] = [];
|
|
const streams: Array<Observable<DataQueryResponse>> = [];
|
|
|
|
// Start streams and prepare queries
|
|
for (const target of options.targets) {
|
|
if (target.hide) {
|
|
continue;
|
|
}
|
|
|
|
switch (target.scenarioId) {
|
|
case 'live':
|
|
streams.push(runGrafanaLiveQuery(target, options));
|
|
break;
|
|
case 'streaming_client':
|
|
streams.push(runStream(target, options));
|
|
break;
|
|
case 'grafana_api':
|
|
streams.push(runGrafanaAPI(target, options));
|
|
break;
|
|
case 'arrow':
|
|
streams.push(runArrowFile(target, options));
|
|
break;
|
|
case 'annotations':
|
|
streams.push(this.annotationDataTopicTest(target, options));
|
|
break;
|
|
case 'variables-query':
|
|
streams.push(this.variablesQuery(target, options));
|
|
break;
|
|
default:
|
|
queries.push({
|
|
...target,
|
|
intervalMs: options.intervalMs,
|
|
maxDataPoints: options.maxDataPoints,
|
|
datasourceId: this.id,
|
|
alias: this.templateSrv.replace(target.alias || '', options.scopedVars),
|
|
});
|
|
}
|
|
}
|
|
|
|
if (queries.length) {
|
|
const stream = getBackendSrv()
|
|
.fetch({
|
|
method: 'POST',
|
|
url: '/api/tsdb/query',
|
|
data: {
|
|
from: options.range.from.valueOf().toString(),
|
|
to: options.range.to.valueOf().toString(),
|
|
queries: queries,
|
|
},
|
|
})
|
|
.pipe(map(res => this.processQueryResult(queries, res)));
|
|
|
|
streams.push(stream);
|
|
}
|
|
|
|
return merge(...streams);
|
|
}
|
|
|
|
processQueryResult(queries: any, res: any): DataQueryResponse {
|
|
const data: TestData[] = [];
|
|
let error: DataQueryError | undefined = undefined;
|
|
|
|
for (const query of queries) {
|
|
const results = res.data.results[query.refId];
|
|
|
|
for (const t of results.tables || []) {
|
|
const table = t as TableData;
|
|
table.refId = query.refId;
|
|
table.name = query.alias;
|
|
|
|
if (query.scenarioId === 'logs') {
|
|
set(table, 'meta.preferredVisualisationType', 'logs');
|
|
}
|
|
|
|
data.push(table);
|
|
}
|
|
|
|
for (const series of results.series || []) {
|
|
data.push({ target: series.name, datapoints: series.points, refId: query.refId, tags: series.tags });
|
|
}
|
|
|
|
if (results.error) {
|
|
error = {
|
|
message: results.error,
|
|
};
|
|
}
|
|
}
|
|
|
|
return { data, error };
|
|
}
|
|
|
|
annotationDataTopicTest(target: TestDataQuery, req: DataQueryRequest<TestDataQuery>): Observable<DataQueryResponse> {
|
|
return new Observable<DataQueryResponse>(observer => {
|
|
const events = this.buildFakeAnnotationEvents(req.range, 10);
|
|
const dataFrame = new ArrayDataFrame(events);
|
|
dataFrame.meta = { dataTopic: DataTopic.Annotations };
|
|
|
|
observer.next({ key: target.refId, data: [dataFrame] });
|
|
});
|
|
}
|
|
|
|
buildFakeAnnotationEvents(range: TimeRange, count: number): AnnotationEvent[] {
|
|
let timeWalker = range.from.valueOf();
|
|
const to = range.to.valueOf();
|
|
const events = [];
|
|
const step = (to - timeWalker) / count;
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
events.push({
|
|
time: timeWalker,
|
|
text: 'This is the text, <a href="https://grafana.com">Grafana.com</a>',
|
|
tags: ['text', 'server'],
|
|
});
|
|
timeWalker += step;
|
|
}
|
|
|
|
return events;
|
|
}
|
|
|
|
annotationQuery(options: any) {
|
|
return Promise.resolve(this.buildFakeAnnotationEvents(options.range, 10));
|
|
}
|
|
|
|
getQueryDisplayText(query: TestDataQuery) {
|
|
if (query.alias) {
|
|
return query.scenarioId + ' as ' + query.alias;
|
|
}
|
|
return query.scenarioId;
|
|
}
|
|
|
|
testDatasource() {
|
|
return Promise.resolve({
|
|
status: 'success',
|
|
message: 'Data source is working',
|
|
});
|
|
}
|
|
|
|
getScenarios(): Promise<Scenario[]> {
|
|
if (!this.scenariosCache) {
|
|
this.scenariosCache = getBackendSrv().get('/api/tsdb/testdata/scenarios');
|
|
}
|
|
|
|
return this.scenariosCache;
|
|
}
|
|
|
|
variablesQuery(target: TestDataQuery, options: DataQueryRequest<TestDataQuery>): Observable<DataQueryResponse> {
|
|
const query = target.stringInput;
|
|
const interpolatedQuery = this.templateSrv.replace(
|
|
query,
|
|
getSearchFilterScopedVar({ query, wildcardChar: '*', options: options.scopedVars })
|
|
);
|
|
const children = queryMetricTree(interpolatedQuery);
|
|
const items = children.map(item => ({ value: item.name, text: item.name }));
|
|
const dataFrame = new ArrayDataFrame(items);
|
|
|
|
return of({ data: [dataFrame] }).pipe(delay(100));
|
|
}
|
|
}
|
|
|
|
function runArrowFile(target: TestDataQuery, req: DataQueryRequest<TestDataQuery>): Observable<DataQueryResponse> {
|
|
let data: DataFrame[] = [];
|
|
if (target.stringInput && target.stringInput.length > 10) {
|
|
try {
|
|
const table = base64StringToArrowTable(target.stringInput);
|
|
const frame = arrowTableToDataFrame(table);
|
|
frame.refId = target.refId;
|
|
data = [frame];
|
|
} catch (e) {
|
|
console.warn('Error reading saved arrow', e);
|
|
const error = toDataQueryError(e);
|
|
error.refId = target.refId;
|
|
return of({ state: LoadingState.Error, error, data });
|
|
}
|
|
}
|
|
return of({ state: LoadingState.Done, data, key: req.requestId + target.refId });
|
|
}
|
|
|
|
function runGrafanaAPI(target: TestDataQuery, req: DataQueryRequest<TestDataQuery>): Observable<DataQueryResponse> {
|
|
const url = `/api/${target.stringInput}`;
|
|
return from(
|
|
getBackendSrv()
|
|
.get(url)
|
|
.then(res => {
|
|
const frame = new ArrayDataFrame(res);
|
|
return {
|
|
state: LoadingState.Done,
|
|
data: [frame],
|
|
};
|
|
})
|
|
);
|
|
}
|
|
|
|
let liveQueryCounter = 1000;
|
|
|
|
function runGrafanaLiveQuery(
|
|
target: TestDataQuery,
|
|
req: DataQueryRequest<TestDataQuery>
|
|
): Observable<DataQueryResponse> {
|
|
if (!target.channel) {
|
|
throw new Error(`Missing channel config`);
|
|
}
|
|
return getLiveMeasurementsObserver(
|
|
{
|
|
scope: LiveChannelScope.Grafana,
|
|
namespace: 'testdata',
|
|
path: target.channel,
|
|
},
|
|
`testStream.${liveQueryCounter++}`
|
|
);
|
|
}
|