mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
163 lines
4.8 KiB
TypeScript
163 lines
4.8 KiB
TypeScript
import {
|
|
AnnotationEvent,
|
|
AnnotationQueryRequest,
|
|
DataQueryRequest,
|
|
DataQueryResponse,
|
|
DataSourceApi,
|
|
DataSourceInstanceSettings,
|
|
isValidLiveChannelAddress,
|
|
parseLiveChannelAddress,
|
|
StreamingFrameOptions,
|
|
} from '@grafana/data';
|
|
|
|
import { GrafanaQuery, GrafanaAnnotationQuery, GrafanaAnnotationType, GrafanaQueryType } from './types';
|
|
import { getBackendSrv, getGrafanaLiveSrv, getTemplateSrv, toDataQueryResponse } from '@grafana/runtime';
|
|
import { Observable, of, merge } from 'rxjs';
|
|
import { map, catchError } from 'rxjs/operators';
|
|
|
|
let counter = 100;
|
|
|
|
export class GrafanaDatasource extends DataSourceApi<GrafanaQuery> {
|
|
constructor(instanceSettings: DataSourceInstanceSettings) {
|
|
super(instanceSettings);
|
|
}
|
|
|
|
query(request: DataQueryRequest<GrafanaQuery>): Observable<DataQueryResponse> {
|
|
const queries: Array<Observable<DataQueryResponse>> = [];
|
|
for (const target of request.targets) {
|
|
if (target.hide) {
|
|
continue;
|
|
}
|
|
if (target.queryType === GrafanaQueryType.LiveMeasurements) {
|
|
let { channel, filter } = target;
|
|
|
|
// Help migrate pre-release channel paths saved in dashboards
|
|
// NOTE: this should be removed before V8 is released
|
|
if (channel && channel.startsWith('telegraf/')) {
|
|
channel = 'stream/' + channel;
|
|
target.channel = channel; // mutate the current query object so it is saved with `stream/` prefix
|
|
}
|
|
|
|
const addr = parseLiveChannelAddress(channel);
|
|
if (!isValidLiveChannelAddress(addr)) {
|
|
continue;
|
|
}
|
|
const buffer: StreamingFrameOptions = {
|
|
maxLength: request.maxDataPoints ?? 500,
|
|
};
|
|
if (target.buffer) {
|
|
buffer.maxDelta = target.buffer;
|
|
buffer.maxLength = buffer.maxLength! * 2; //??
|
|
} else if (request.rangeRaw?.to === 'now') {
|
|
buffer.maxDelta = request.range.to.valueOf() - request.range.from.valueOf();
|
|
}
|
|
|
|
queries.push(
|
|
getGrafanaLiveSrv().getDataStream({
|
|
key: `${request.requestId}.${counter++}`,
|
|
addr: addr!,
|
|
filter,
|
|
buffer,
|
|
})
|
|
);
|
|
} else {
|
|
queries.push(getRandomWalk(request));
|
|
}
|
|
}
|
|
// With a single query just return the results
|
|
if (queries.length === 1) {
|
|
return queries[0];
|
|
}
|
|
if (queries.length > 1) {
|
|
return merge(...queries);
|
|
}
|
|
return of(); // nothing
|
|
}
|
|
|
|
metricFindQuery(options: any) {
|
|
return Promise.resolve([]);
|
|
}
|
|
|
|
annotationQuery(options: AnnotationQueryRequest<GrafanaQuery>): Promise<AnnotationEvent[]> {
|
|
const templateSrv = getTemplateSrv();
|
|
const annotation = (options.annotation as unknown) as GrafanaAnnotationQuery;
|
|
const params: any = {
|
|
from: options.range.from.valueOf(),
|
|
to: options.range.to.valueOf(),
|
|
limit: annotation.limit,
|
|
tags: annotation.tags,
|
|
matchAny: annotation.matchAny,
|
|
};
|
|
|
|
if (annotation.type === GrafanaAnnotationType.Dashboard) {
|
|
// if no dashboard id yet return
|
|
if (!options.dashboard.id) {
|
|
return Promise.resolve([]);
|
|
}
|
|
// filter by dashboard id
|
|
params.dashboardId = options.dashboard.id;
|
|
// remove tags filter if any
|
|
delete params.tags;
|
|
} else {
|
|
// require at least one tag
|
|
if (!Array.isArray(annotation.tags) || annotation.tags.length === 0) {
|
|
return Promise.resolve([]);
|
|
}
|
|
const delimiter = '__delimiter__';
|
|
const tags = [];
|
|
for (const t of params.tags) {
|
|
const renderedValues = templateSrv.replace(t, {}, (value: any) => {
|
|
if (typeof value === 'string') {
|
|
return value;
|
|
}
|
|
|
|
return value.join(delimiter);
|
|
});
|
|
for (const tt of renderedValues.split(delimiter)) {
|
|
tags.push(tt);
|
|
}
|
|
}
|
|
params.tags = tags;
|
|
}
|
|
|
|
return getBackendSrv().get(
|
|
'/api/annotations',
|
|
params,
|
|
`grafana-data-source-annotations-${annotation.name}-${options.dashboard?.id}`
|
|
);
|
|
}
|
|
|
|
testDatasource() {
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
|
|
// Note that the query does not actually matter
|
|
function getRandomWalk(request: DataQueryRequest): Observable<DataQueryResponse> {
|
|
const { intervalMs, maxDataPoints, range, requestId } = request;
|
|
|
|
// Yes, this implementation ignores multiple targets! But that matches existing behavior
|
|
const params: Record<string, any> = {
|
|
intervalMs,
|
|
maxDataPoints,
|
|
from: range.from.valueOf(),
|
|
to: range.to.valueOf(),
|
|
};
|
|
|
|
return getBackendSrv()
|
|
.fetch({
|
|
url: '/api/tsdb/testdata/random-walk',
|
|
method: 'GET',
|
|
params,
|
|
requestId,
|
|
})
|
|
.pipe(
|
|
map((rsp: any) => {
|
|
return toDataQueryResponse(rsp);
|
|
}),
|
|
catchError((err) => {
|
|
return of(toDataQueryResponse(err));
|
|
})
|
|
);
|
|
}
|