mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
188 lines
5.5 KiB
TypeScript
188 lines
5.5 KiB
TypeScript
// Libraries
|
|
import _ from 'lodash';
|
|
|
|
// Services & Utils
|
|
import * as dateMath from 'app/core/utils/datemath';
|
|
import { addLabelToSelector } from 'app/plugins/datasource/prometheus/add_label_to_query';
|
|
import LanguageProvider from './language_provider';
|
|
import { mergeStreamsToLogs } from './result_transformer';
|
|
import { formatQuery, parseQuery } from './query_utils';
|
|
import { makeSeriesForLogs } from 'app/core/logs_model';
|
|
|
|
// Types
|
|
import { LogsStream, LogsModel } from 'app/core/logs_model';
|
|
import { PluginMeta, DataQueryOptions } from '@grafana/ui/src/types';
|
|
import { LokiQuery } from './types';
|
|
|
|
export const DEFAULT_MAX_LINES = 1000;
|
|
|
|
const DEFAULT_QUERY_PARAMS = {
|
|
direction: 'BACKWARD',
|
|
limit: DEFAULT_MAX_LINES,
|
|
regexp: '',
|
|
query: '',
|
|
};
|
|
|
|
function serializeParams(data: any) {
|
|
return Object.keys(data)
|
|
.map(k => {
|
|
const v = data[k];
|
|
return encodeURIComponent(k) + '=' + encodeURIComponent(v);
|
|
})
|
|
.join('&');
|
|
}
|
|
|
|
export class LokiDatasource {
|
|
languageProvider: LanguageProvider;
|
|
maxLines: number;
|
|
|
|
/** @ngInject */
|
|
constructor(private instanceSettings, private backendSrv, private templateSrv) {
|
|
this.languageProvider = new LanguageProvider(this);
|
|
const settingsData = instanceSettings.jsonData || {};
|
|
this.maxLines = parseInt(settingsData.maxLines, 10) || DEFAULT_MAX_LINES;
|
|
}
|
|
|
|
_request(apiUrl: string, data?, options?: any) {
|
|
const baseUrl = this.instanceSettings.url;
|
|
const params = data ? serializeParams(data) : '';
|
|
const url = `${baseUrl}${apiUrl}?${params}`;
|
|
const req = {
|
|
...options,
|
|
url,
|
|
};
|
|
return this.backendSrv.datasourceRequest(req);
|
|
}
|
|
|
|
mergeStreams(streams: LogsStream[], intervalMs: number): LogsModel {
|
|
const logs = mergeStreamsToLogs(streams, this.maxLines);
|
|
logs.series = makeSeriesForLogs(logs.rows, intervalMs);
|
|
return logs;
|
|
}
|
|
|
|
prepareQueryTarget(target, options) {
|
|
const interpolated = this.templateSrv.replace(target.expr);
|
|
const start = this.getTime(options.range.from, false);
|
|
const end = this.getTime(options.range.to, true);
|
|
return {
|
|
...DEFAULT_QUERY_PARAMS,
|
|
...parseQuery(interpolated),
|
|
start,
|
|
end,
|
|
limit: this.maxLines,
|
|
};
|
|
}
|
|
|
|
async query(options: DataQueryOptions<LokiQuery>) {
|
|
const queryTargets = options.targets
|
|
.filter(target => target.expr && !target.hide)
|
|
.map(target => this.prepareQueryTarget(target, options));
|
|
|
|
if (queryTargets.length === 0) {
|
|
return Promise.resolve({ data: [] });
|
|
}
|
|
|
|
const queries = queryTargets.map(target => this._request('/api/prom/query', target));
|
|
|
|
return Promise.all(queries).then((results: any[]) => {
|
|
const allStreams: LogsStream[] = [];
|
|
|
|
for (let i = 0; i < results.length; i++) {
|
|
const result = results[i];
|
|
const query = queryTargets[i];
|
|
|
|
// add search term to stream & add to array
|
|
if (result.data) {
|
|
for (const stream of result.data.streams || []) {
|
|
stream.search = query.regexp;
|
|
allStreams.push(stream);
|
|
}
|
|
}
|
|
}
|
|
|
|
// check resultType
|
|
if (options.targets[0].resultFormat === 'time_series') {
|
|
const logs = mergeStreamsToLogs(allStreams, this.maxLines);
|
|
logs.series = makeSeriesForLogs(logs.rows, options.intervalMs);
|
|
return { data: logs.series };
|
|
} else {
|
|
return { data: allStreams };
|
|
}
|
|
});
|
|
}
|
|
|
|
async importQueries(queries: LokiQuery[], originMeta: PluginMeta): Promise<LokiQuery[]> {
|
|
return this.languageProvider.importQueries(queries, originMeta.id);
|
|
}
|
|
|
|
metadataRequest(url) {
|
|
// HACK to get label values for {job=|}, will be replaced when implementing LokiQueryField
|
|
const apiUrl = url.replace('v1', 'prom');
|
|
return this._request(apiUrl, { silent: true }).then(res => {
|
|
const data = { data: { data: res.data.values || [] } };
|
|
return data;
|
|
});
|
|
}
|
|
|
|
modifyQuery(query: LokiQuery, action: any): LokiQuery {
|
|
const parsed = parseQuery(query.expr || '');
|
|
let selector = parsed.query;
|
|
switch (action.type) {
|
|
case 'ADD_FILTER': {
|
|
selector = addLabelToSelector(selector, action.key, action.value);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
const expression = formatQuery(selector, parsed.regexp);
|
|
return { ...query, expr: expression };
|
|
}
|
|
|
|
getHighlighterExpression(query: LokiQuery): string {
|
|
return parseQuery(query.expr).regexp;
|
|
}
|
|
|
|
getTime(date, roundUp) {
|
|
if (_.isString(date)) {
|
|
date = dateMath.parse(date, roundUp);
|
|
}
|
|
return Math.ceil(date.valueOf() * 1e6);
|
|
}
|
|
|
|
testDatasource() {
|
|
return this._request('/api/prom/label')
|
|
.then(res => {
|
|
if (res && res.data && res.data.values && res.data.values.length > 0) {
|
|
return { status: 'success', message: 'Data source connected and labels found.' };
|
|
}
|
|
return {
|
|
status: 'error',
|
|
message:
|
|
'Data source connected, but no labels received. Verify that Loki and Promtail is configured properly.',
|
|
};
|
|
})
|
|
.catch(err => {
|
|
let message = 'Loki: ';
|
|
if (err.statusText) {
|
|
message += err.statusText;
|
|
} else {
|
|
message += 'Cannot connect to Loki';
|
|
}
|
|
|
|
if (err.status) {
|
|
message += `. ${err.status}`;
|
|
}
|
|
|
|
if (err.data && err.data.message) {
|
|
message += `. ${err.data.message}`;
|
|
} else if (err.data) {
|
|
message += `. ${err.data}`;
|
|
}
|
|
return { status: 'error', message: message };
|
|
});
|
|
}
|
|
}
|
|
|
|
export default LokiDatasource;
|