mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
27 lines
891 B
TypeScript
27 lines
891 B
TypeScript
import { uniqBy } from 'lodash';
|
|
|
|
import { DataFrame, MetricFindValue } from '@grafana/data';
|
|
import { ResponseParser as ResponseParserType } from 'app/features/plugins/sql/types';
|
|
|
|
export class ResponseParser implements ResponseParserType {
|
|
transformMetricFindResponse(frame: DataFrame): MetricFindValue[] {
|
|
const values: MetricFindValue[] = [];
|
|
const textField = frame.fields.find((f) => f.name === '__text');
|
|
const valueField = frame.fields.find((f) => f.name === '__value');
|
|
|
|
if (textField && valueField) {
|
|
for (let i = 0; i < textField.values.length; i++) {
|
|
values.push({ text: '' + textField.values[i], value: '' + valueField.values[i] });
|
|
}
|
|
} else {
|
|
for (const field of frame.fields) {
|
|
for (const value of field.values) {
|
|
values.push({ text: value });
|
|
}
|
|
}
|
|
}
|
|
|
|
return uniqBy(values, 'text');
|
|
}
|
|
}
|