| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- import _ from 'lodash';
- import $ from 'jquery';
- import kbn from 'app/core/utils/kbn';
- import * as dateMath from 'app/core/utils/datemath';
- import PrometheusMetricFindQuery from './metric_find_query';
- import { ResultTransformer } from './result_transformer';
- import { BackendSrv } from 'app/core/services/backend_srv';
- import addLabelToQuery from './add_label_to_query';
- export function alignRange(start, end, step) {
- const alignedEnd = Math.ceil(end / step) * step;
- const alignedStart = Math.floor(start / step) * step;
- return {
- end: alignedEnd,
- start: alignedStart,
- };
- }
- export function determineQueryHints(series: any[], datasource?: any): any[] {
- const hints = series.map((s, i) => {
- const query: string = s.query;
- const index: number = s.responseIndex;
- if (query === undefined || index === undefined) {
- return null;
- }
- // ..._bucket metric needs a histogram_quantile()
- const histogramMetric = query.trim().match(/^\w+_bucket$/);
- if (histogramMetric) {
- const label = 'Time series has buckets, you probably wanted a histogram.';
- return {
- index,
- label,
- fix: {
- label: 'Fix by adding histogram_quantile().',
- action: {
- type: 'ADD_HISTOGRAM_QUANTILE',
- query,
- index,
- },
- },
- };
- }
- // Check for monotony
- const datapoints: number[][] = s.datapoints;
- if (datapoints.length > 1) {
- let increasing = false;
- const monotonic = datapoints.filter(dp => dp[0] !== null).every((dp, index) => {
- if (index === 0) {
- return true;
- }
- increasing = increasing || dp[0] > datapoints[index - 1][0];
- // monotonic?
- return dp[0] >= datapoints[index - 1][0];
- });
- if (increasing && monotonic) {
- const simpleMetric = query.trim().match(/^\w+$/);
- let label = 'Time series is monotonously increasing.';
- let fix;
- if (simpleMetric) {
- fix = {
- label: 'Fix by adding rate().',
- action: {
- type: 'ADD_RATE',
- query,
- index,
- },
- };
- } else {
- label = `${label} Try applying a rate() function.`;
- }
- return {
- label,
- index,
- fix,
- };
- }
- }
- // Check for recording rules expansion
- if (datasource && datasource.ruleMappings) {
- const mapping = datasource.ruleMappings;
- const mappingForQuery = Object.keys(mapping).reduce((acc, ruleName) => {
- if (query.search(ruleName) > -1) {
- return {
- ...acc,
- [ruleName]: mapping[ruleName],
- };
- }
- return acc;
- }, {});
- if (_.size(mappingForQuery) > 0) {
- const label = 'Query contains recording rules.';
- return {
- label,
- index,
- fix: {
- label: 'Expand rules',
- action: {
- type: 'EXPAND_RULES',
- query,
- index,
- mapping: mappingForQuery,
- },
- },
- };
- }
- }
- // No hint found
- return null;
- });
- return hints;
- }
- export function extractRuleMappingFromGroups(groups: any[]) {
- return groups.reduce(
- (mapping, group) =>
- group.rules.filter(rule => rule.type === 'recording').reduce(
- (acc, rule) => ({
- ...acc,
- [rule.name]: rule.query,
- }),
- mapping
- ),
- {}
- );
- }
- export function prometheusRegularEscape(value) {
- if (typeof value === 'string') {
- return value.replace(/'/g, "\\\\'");
- }
- return value;
- }
- export function prometheusSpecialRegexEscape(value) {
- if (typeof value === 'string') {
- return prometheusRegularEscape(value.replace(/\\/g, '\\\\\\\\').replace(/[$^*{}\[\]+?.()]/g, '\\\\$&'));
- }
- return value;
- }
- export class PrometheusDatasource {
- type: string;
- editorSrc: string;
- name: string;
- ruleMappings: { [index: string]: string };
- supportsExplore: boolean;
- supportMetrics: boolean;
- url: string;
- directUrl: string;
- basicAuth: any;
- withCredentials: any;
- metricsNameCache: any;
- interval: string;
- queryTimeout: string;
- httpMethod: string;
- resultTransformer: ResultTransformer;
- /** @ngInject */
- constructor(instanceSettings, private $q, private backendSrv: BackendSrv, private templateSrv, private timeSrv) {
- this.type = 'prometheus';
- this.editorSrc = 'app/features/prometheus/partials/query.editor.html';
- this.name = instanceSettings.name;
- this.supportsExplore = true;
- this.supportMetrics = true;
- this.url = instanceSettings.url;
- this.directUrl = instanceSettings.directUrl;
- this.basicAuth = instanceSettings.basicAuth;
- this.withCredentials = instanceSettings.withCredentials;
- this.interval = instanceSettings.jsonData.timeInterval || '15s';
- this.queryTimeout = instanceSettings.jsonData.queryTimeout;
- this.httpMethod = instanceSettings.jsonData.httpMethod || 'GET';
- this.resultTransformer = new ResultTransformer(templateSrv);
- this.ruleMappings = {};
- }
- init() {
- this.loadRules();
- }
- _request(url, data?, options?: any) {
- options = _.defaults(options || {}, {
- url: this.url + url,
- method: this.httpMethod,
- });
- if (options.method === 'GET') {
- if (!_.isEmpty(data)) {
- options.url =
- options.url +
- '?' +
- _.map(data, (v, k) => {
- return encodeURIComponent(k) + '=' + encodeURIComponent(v);
- }).join('&');
- }
- } else {
- options.headers = {
- 'Content-Type': 'application/x-www-form-urlencoded',
- };
- options.transformRequest = data => {
- return $.param(data);
- };
- options.data = data;
- }
- if (this.basicAuth || this.withCredentials) {
- options.withCredentials = true;
- }
- if (this.basicAuth) {
- options.headers = {
- Authorization: this.basicAuth,
- };
- }
- return this.backendSrv.datasourceRequest(options);
- }
- // Use this for tab completion features, wont publish response to other components
- metadataRequest(url) {
- return this._request(url, null, { method: 'GET', silent: true });
- }
- interpolateQueryExpr(value, variable, defaultFormatFn) {
- // if no multi or include all do not regexEscape
- if (!variable.multi && !variable.includeAll) {
- return prometheusRegularEscape(value);
- }
- if (typeof value === 'string') {
- return prometheusSpecialRegexEscape(value);
- }
- const escapedValues = _.map(value, prometheusSpecialRegexEscape);
- return escapedValues.join('|');
- }
- targetContainsTemplate(target) {
- return this.templateSrv.variableExists(target.expr);
- }
- query(options) {
- const start = this.getPrometheusTime(options.range.from, false);
- const end = this.getPrometheusTime(options.range.to, true);
- const queries = [];
- const activeTargets = [];
- options = _.clone(options);
- for (const target of options.targets) {
- if (!target.expr || target.hide) {
- continue;
- }
- activeTargets.push(target);
- queries.push(this.createQuery(target, options, start, end));
- }
- // No valid targets, return the empty result to save a round trip.
- if (_.isEmpty(queries)) {
- return this.$q.when({ data: [] });
- }
- const allQueryPromise = _.map(queries, query => {
- if (!query.instant) {
- return this.performTimeSeriesQuery(query, query.start, query.end);
- } else {
- return this.performInstantQuery(query, end);
- }
- });
- return this.$q.all(allQueryPromise).then(responseList => {
- let result = [];
- let hints = [];
- _.each(responseList, (response, index) => {
- if (response.status === 'error') {
- const error = {
- index,
- ...response.error,
- };
- throw error;
- }
- // Keeping original start/end for transformers
- const transformerOptions = {
- format: activeTargets[index].format,
- step: queries[index].step,
- legendFormat: activeTargets[index].legendFormat,
- start: queries[index].start,
- end: queries[index].end,
- query: queries[index].expr,
- responseListLength: responseList.length,
- responseIndex: index,
- refId: activeTargets[index].refId,
- };
- const series = this.resultTransformer.transform(response, transformerOptions);
- result = [...result, ...series];
- if (queries[index].hinting) {
- const queryHints = determineQueryHints(series, this);
- hints = [...hints, ...queryHints];
- }
- });
- return { data: result, hints };
- });
- }
- createQuery(target, options, start, end) {
- const query: any = {
- hinting: target.hinting,
- instant: target.instant,
- };
- const range = Math.ceil(end - start);
- let interval = kbn.interval_to_seconds(options.interval);
- // Minimum interval ("Min step"), if specified for the query. or same as interval otherwise
- const minInterval = kbn.interval_to_seconds(
- this.templateSrv.replace(target.interval, options.scopedVars) || options.interval
- );
- const intervalFactor = target.intervalFactor || 1;
- // Adjust the interval to take into account any specified minimum and interval factor plus Prometheus limits
- const adjustedInterval = this.adjustInterval(interval, minInterval, range, intervalFactor);
- let scopedVars = { ...options.scopedVars, ...this.getRangeScopedVars() };
- // If the interval was adjusted, make a shallow copy of scopedVars with updated interval vars
- if (interval !== adjustedInterval) {
- interval = adjustedInterval;
- scopedVars = Object.assign({}, options.scopedVars, {
- __interval: { text: interval + 's', value: interval + 's' },
- __interval_ms: { text: interval * 1000, value: interval * 1000 },
- ...this.getRangeScopedVars(),
- });
- }
- query.step = interval;
- let expr = target.expr;
- // Apply adhoc filters
- const adhocFilters = this.templateSrv.getAdhocFilters(this.name);
- expr = adhocFilters.reduce((acc, filter) => {
- const { key, operator } = filter;
- let { value } = filter;
- if (operator === '=~' || operator === '!~') {
- value = prometheusSpecialRegexEscape(value);
- }
- return addLabelToQuery(acc, key, value, operator);
- }, expr);
- // Only replace vars in expression after having (possibly) updated interval vars
- query.expr = this.templateSrv.replace(expr, scopedVars, this.interpolateQueryExpr);
- query.requestId = options.panelId + target.refId;
- // Align query interval with step
- const adjusted = alignRange(start, end, query.step);
- query.start = adjusted.start;
- query.end = adjusted.end;
- return query;
- }
- adjustInterval(interval, minInterval, range, intervalFactor) {
- // Prometheus will drop queries that might return more than 11000 data points.
- // Calibrate interval if it is too small.
- if (interval !== 0 && range / intervalFactor / interval > 11000) {
- interval = Math.ceil(range / intervalFactor / 11000);
- }
- return Math.max(interval * intervalFactor, minInterval, 1);
- }
- performTimeSeriesQuery(query, start, end) {
- if (start > end) {
- throw { message: 'Invalid time range' };
- }
- const url = '/api/v1/query_range';
- const data = {
- query: query.expr,
- start: start,
- end: end,
- step: query.step,
- };
- if (this.queryTimeout) {
- data['timeout'] = this.queryTimeout;
- }
- return this._request(url, data, { requestId: query.requestId });
- }
- performInstantQuery(query, time) {
- const url = '/api/v1/query';
- const data = {
- query: query.expr,
- time: time,
- };
- if (this.queryTimeout) {
- data['timeout'] = this.queryTimeout;
- }
- return this._request(url, data, { requestId: query.requestId });
- }
- performSuggestQuery(query, cache = false) {
- const url = '/api/v1/label/__name__/values';
- if (cache && this.metricsNameCache && this.metricsNameCache.expire > Date.now()) {
- return this.$q.when(
- _.filter(this.metricsNameCache.data, metricName => {
- return metricName.indexOf(query) !== 1;
- })
- );
- }
- return this.metadataRequest(url).then(result => {
- this.metricsNameCache = {
- data: result.data.data,
- expire: Date.now() + 60 * 1000,
- };
- return _.filter(result.data.data, metricName => {
- return metricName.indexOf(query) !== 1;
- });
- });
- }
- metricFindQuery(query) {
- if (!query) {
- return this.$q.when([]);
- }
- const scopedVars = {
- __interval: { text: this.interval, value: this.interval },
- __interval_ms: { text: kbn.interval_to_ms(this.interval), value: kbn.interval_to_ms(this.interval) },
- ...this.getRangeScopedVars(),
- };
- const interpolated = this.templateSrv.replace(query, scopedVars, this.interpolateQueryExpr);
- const metricFindQuery = new PrometheusMetricFindQuery(this, interpolated, this.timeSrv);
- return metricFindQuery.process();
- }
- getRangeScopedVars() {
- const range = this.timeSrv.timeRange();
- const msRange = range.to.diff(range.from);
- const sRange = Math.round(msRange / 1000);
- const regularRange = kbn.secondsToHms(msRange / 1000);
- return {
- __range_ms: { text: msRange, value: msRange },
- __range_s: { text: sRange, value: sRange },
- __range: { text: regularRange, value: regularRange },
- };
- }
- annotationQuery(options) {
- const annotation = options.annotation;
- const expr = annotation.expr || '';
- let tagKeys = annotation.tagKeys || '';
- const titleFormat = annotation.titleFormat || '';
- const textFormat = annotation.textFormat || '';
- if (!expr) {
- return this.$q.when([]);
- }
- const step = annotation.step || '60s';
- const start = this.getPrometheusTime(options.range.from, false);
- const end = this.getPrometheusTime(options.range.to, true);
- // Unsetting min interval
- const queryOptions = {
- ...options,
- interval: '0s',
- };
- const query = this.createQuery({ expr, interval: step }, queryOptions, start, end);
- const self = this;
- return this.performTimeSeriesQuery(query, query.start, query.end).then(results => {
- const eventList = [];
- tagKeys = tagKeys.split(',');
- _.each(results.data.data.result, series => {
- const tags = _.chain(series.metric)
- .filter((v, k) => {
- return _.includes(tagKeys, k);
- })
- .value();
- for (const value of series.values) {
- if (value[1] === '1') {
- const event = {
- annotation: annotation,
- time: Math.floor(parseFloat(value[0])) * 1000,
- title: self.resultTransformer.renderTemplate(titleFormat, series.metric),
- tags: tags,
- text: self.resultTransformer.renderTemplate(textFormat, series.metric),
- };
- eventList.push(event);
- }
- }
- });
- return eventList;
- });
- }
- testDatasource() {
- const now = new Date().getTime();
- return this.performInstantQuery({ expr: '1+1' }, now / 1000).then(response => {
- if (response.data.status === 'success') {
- return { status: 'success', message: 'Data source is working' };
- } else {
- return { status: 'error', message: response.error };
- }
- });
- }
- getExploreState(panel) {
- let state = {};
- if (panel.targets) {
- const queries = panel.targets.map(t => ({
- query: this.templateSrv.replace(t.expr, {}, this.interpolateQueryExpr),
- format: t.format,
- }));
- state = {
- ...state,
- queries,
- datasource: this.name,
- };
- }
- return state;
- }
- loadRules() {
- this.metadataRequest('/api/v1/rules')
- .then(res => res.data || res.json())
- .then(body => {
- const groups = _.get(body, ['data', 'groups']);
- if (groups) {
- this.ruleMappings = extractRuleMappingFromGroups(groups);
- }
- })
- .catch(e => {
- console.log('Rules API is experimental. Ignore next error.');
- console.error(e);
- });
- }
- modifyQuery(query: string, action: any): string {
- switch (action.type) {
- case 'ADD_FILTER': {
- return addLabelToQuery(query, action.key, action.value);
- }
- case 'ADD_HISTOGRAM_QUANTILE': {
- return `histogram_quantile(0.95, sum(rate(${query}[5m])) by (le))`;
- }
- case 'ADD_RATE': {
- return `rate(${query}[5m])`;
- }
- case 'EXPAND_RULES': {
- const mapping = action.mapping;
- if (mapping) {
- const ruleNames = Object.keys(mapping);
- const rulesRegex = new RegExp(`(\\s|^)(${ruleNames.join('|')})(\\s|$|\\()`, 'ig');
- return query.replace(rulesRegex, (match, pre, name, post) => mapping[name]);
- }
- }
- default:
- return query;
- }
- }
- getPrometheusTime(date, roundUp) {
- if (_.isString(date)) {
- date = dateMath.parse(date, roundUp);
- }
- return Math.ceil(date.valueOf() / 1000);
- }
- getOriginalMetricName(labelData) {
- return this.resultTransformer.getOriginalMetricName(labelData);
- }
- }
|