mirror of
https://github.com/grafana/grafana.git
synced 2025-08-26 17:21:17 +08:00

* clean PR #17366 * udpate vendor * [WIP] Implement projects management for stackdriver * [WIP] Implement projects management for stackdriver * [WIP] Implement projects management for stackdriver * Implement projects management for stackdriver * [WIP][Tests] Fix errors * clean anonymous struct * remove await * don't store project list * Add default project on query editor * gofmt * Fix tests * Move test data source to backend * Use segment instead of dropdown. remove ensure default project since it's not being used anymore. * Fix broken annotation editor * Load gceDefaultAccount only once when in the config page * Reset error message on auth type change * Add metric find query for projects * Remove debug code * Fix broken tests * Fix typings * Fix lint error * Slightly different approach - now having a distiction between config page default project, and project that is selectable from the dropdown in the query editor. * Fix broken tests * Attempt to fix strict ts errors * Prevent state from being set multiple times * Remove noOptionsMessage since it seems to be obosolete in react select * One more attempt to solve ts strict error * Interpolate project template variable. Make sure its loaded correctly when opening variable query editor first time * Implicit any fix * fix: typescript strict null check fixes * Return empty array in case project endpoint fails * Rename project to projectName to prevent clashing with legacy query prop * Fix broken test * fix: Stackdriver - template replace on filter label should have a regex format as that escapes the dots in the label name which is not valid. Co-authored-by: Labesse Kévin <kevin@labesse.me> Co-authored-by: Elias Cédric Laouiti <elias@abtasty.com> Co-authored-by: Daniel Lee <dan.limerick@gmail.com>
96 lines
3.3 KiB
TypeScript
96 lines
3.3 KiB
TypeScript
import _ from 'lodash';
|
|
import { alignOptions, aggOptions, ValueTypes, MetricKind, systemLabels } from './constants';
|
|
import { SelectableValue } from '@grafana/data';
|
|
import StackdriverDatasource from './datasource';
|
|
import { TemplateSrv } from 'app/features/templating/template_srv';
|
|
import { StackdriverQuery, MetricDescriptor } from './types';
|
|
|
|
export const extractServicesFromMetricDescriptors = (metricDescriptors: MetricDescriptor[]) =>
|
|
_.uniqBy(metricDescriptors, 'service');
|
|
|
|
export const getMetricTypesByService = (metricDescriptors: MetricDescriptor[], service: string) =>
|
|
metricDescriptors.filter((m: MetricDescriptor) => m.service === service);
|
|
|
|
export const getMetricTypes = (
|
|
metricDescriptors: MetricDescriptor[],
|
|
metricType: string,
|
|
interpolatedMetricType: string,
|
|
selectedService: string
|
|
) => {
|
|
const metricTypes = getMetricTypesByService(metricDescriptors, selectedService).map((m: any) => ({
|
|
value: m.type,
|
|
name: m.displayName,
|
|
}));
|
|
const metricTypeExistInArray = metricTypes.some(
|
|
(m: { value: string; name: string }) => m.value === interpolatedMetricType
|
|
);
|
|
const selectedMetricType = metricTypeExistInArray ? metricType : metricTypes[0].value;
|
|
return {
|
|
metricTypes,
|
|
selectedMetricType,
|
|
};
|
|
};
|
|
|
|
export const getAlignmentOptionsByMetric = (metricValueType: string, metricKind: string) => {
|
|
return !metricValueType
|
|
? []
|
|
: alignOptions.filter(i => {
|
|
return (
|
|
i.valueTypes.indexOf(metricValueType as ValueTypes) !== -1 &&
|
|
i.metricKinds.indexOf(metricKind as MetricKind) !== -1
|
|
);
|
|
});
|
|
};
|
|
|
|
export const getAggregationOptionsByMetric = (valueType: ValueTypes, metricKind: MetricKind) => {
|
|
return !metricKind
|
|
? []
|
|
: aggOptions.filter(i => {
|
|
return i.valueTypes.indexOf(valueType) !== -1 && i.metricKinds.indexOf(metricKind) !== -1;
|
|
});
|
|
};
|
|
|
|
export const getLabelKeys = async (
|
|
datasource: StackdriverDatasource,
|
|
selectedMetricType: string,
|
|
projectName: string
|
|
) => {
|
|
const refId = 'handleLabelKeysQuery';
|
|
const labels = await datasource.getLabels(selectedMetricType, refId, projectName);
|
|
return [...Object.keys(labels), ...systemLabels];
|
|
};
|
|
|
|
export const getAlignmentPickerData = (
|
|
{ valueType, metricKind, perSeriesAligner }: Partial<StackdriverQuery>,
|
|
templateSrv: TemplateSrv
|
|
) => {
|
|
const alignOptions = getAlignmentOptionsByMetric(valueType!, metricKind!).map(option => ({
|
|
...option,
|
|
label: option.text,
|
|
}));
|
|
if (!alignOptions.some((o: { value: string }) => o.value === templateSrv.replace(perSeriesAligner!))) {
|
|
perSeriesAligner = alignOptions.length > 0 ? alignOptions[0].value : '';
|
|
}
|
|
return { alignOptions, perSeriesAligner };
|
|
};
|
|
|
|
export const labelsToGroupedOptions = (groupBys: string[]) => {
|
|
const groups = groupBys.reduce((acc: any, curr: string) => {
|
|
const arr = curr.split('.').map(_.startCase);
|
|
const group = (arr.length === 2 ? arr : _.initial(arr)).join(' ');
|
|
const option = {
|
|
value: curr,
|
|
label: curr,
|
|
};
|
|
if (acc[group]) {
|
|
acc[group] = [...acc[group], option];
|
|
} else {
|
|
acc[group] = [option];
|
|
}
|
|
return acc;
|
|
}, {});
|
|
return Object.entries(groups).map(([label, options]) => ({ label, options, expanded: true }), []);
|
|
};
|
|
|
|
export const toOption = (value: string) => ({ label: value, value } as SelectableValue<string>);
|