mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Updated package json but not updated source files * Update eslint plugin * updated files
58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
import _ from 'lodash';
|
|
|
|
export default class ResponseParser {
|
|
parse(query: string, results: { results: any }) {
|
|
if (!results || results.results.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
const influxResults = results.results[0];
|
|
if (!influxResults.series) {
|
|
return [];
|
|
}
|
|
|
|
const normalizedQuery = query.toLowerCase();
|
|
const isValueFirst =
|
|
normalizedQuery.indexOf('show field keys') >= 0 || normalizedQuery.indexOf('show retention policies') >= 0;
|
|
|
|
const res = {};
|
|
_.each(influxResults.series, (serie) => {
|
|
_.each(serie.values, (value) => {
|
|
if (_.isArray(value)) {
|
|
// In general, there are 2 possible shapes for the returned value.
|
|
// The first one is a two-element array,
|
|
// where the first element is somewhat a metadata value:
|
|
// the tag name for SHOW TAG VALUES queries,
|
|
// the time field for SELECT queries, etc.
|
|
// The second shape is an one-element array,
|
|
// that is containing an immediate value.
|
|
// For example, SHOW FIELD KEYS queries return such shape.
|
|
// Note, pre-0.11 versions return
|
|
// the second shape for SHOW TAG VALUES queries
|
|
// (while the newer versions—first).
|
|
|
|
if (isValueFirst) {
|
|
addUnique(res, value[0]);
|
|
} else if (value[1] !== undefined) {
|
|
addUnique(res, value[1]);
|
|
} else {
|
|
addUnique(res, value[0]);
|
|
}
|
|
} else {
|
|
addUnique(res, value);
|
|
}
|
|
});
|
|
});
|
|
|
|
// @ts-ignore problems with typings for this _.map only accepts [] but this needs to be object
|
|
return _.map(res, (value) => {
|
|
// @ts-ignore
|
|
return { text: value.toString() };
|
|
});
|
|
}
|
|
}
|
|
|
|
function addUnique(arr: { [x: string]: any }, value: string | number) {
|
|
arr[value] = value;
|
|
}
|