mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Select: Don't portal by default * Select: Portal all the Selects * Fix indendentation in this comment * Select: Remove @example docs until formatting is correct * Docs: Add some documentation for the Select changes * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update packages/grafana-ui/src/components/Select/types.ts Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/prepareTimeSeries/PrepareTimeSeriesEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Docs: Variants instead of varients * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
54 lines
1.9 KiB
TypeScript
54 lines
1.9 KiB
TypeScript
import React, { FunctionComponent, useMemo } from 'react';
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { MultiSelect } from '@grafana/ui';
|
|
import { labelsToGroupedOptions } from '../functions';
|
|
import { SYSTEM_LABELS, INPUT_WIDTH } from '../constants';
|
|
import { MetricDescriptor, MetricQuery } from '../types';
|
|
import { Aggregation, QueryEditorRow } from '.';
|
|
|
|
export interface Props {
|
|
variableOptionGroup: SelectableValue<string>;
|
|
labels: string[];
|
|
metricDescriptor?: MetricDescriptor;
|
|
onChange: (query: MetricQuery) => void;
|
|
query: MetricQuery;
|
|
}
|
|
|
|
export const GroupBy: FunctionComponent<Props> = ({
|
|
labels: groupBys = [],
|
|
query,
|
|
onChange,
|
|
variableOptionGroup,
|
|
metricDescriptor,
|
|
}) => {
|
|
const options = useMemo(() => [variableOptionGroup, ...labelsToGroupedOptions([...groupBys, ...SYSTEM_LABELS])], [
|
|
groupBys,
|
|
variableOptionGroup,
|
|
]);
|
|
|
|
return (
|
|
<QueryEditorRow
|
|
label="Group by"
|
|
tooltip="You can reduce the amount of data returned for a metric by combining different time series. To combine multiple time series, you can specify a grouping and a function. Grouping is done on the basis of labels. The grouping function is used to combine the time series in the group into a single time series."
|
|
>
|
|
<MultiSelect
|
|
menuShouldPortal
|
|
width={INPUT_WIDTH}
|
|
placeholder="Choose label"
|
|
options={options}
|
|
value={query.groupBys ?? []}
|
|
onChange={(options) => {
|
|
onChange({ ...query, groupBys: options.map((o) => o.value!) });
|
|
}}
|
|
></MultiSelect>
|
|
<Aggregation
|
|
metricDescriptor={metricDescriptor}
|
|
templateVariableOptions={variableOptionGroup.options}
|
|
crossSeriesReducer={query.crossSeriesReducer}
|
|
groupBys={query.groupBys ?? []}
|
|
onChange={(crossSeriesReducer) => onChange({ ...query, crossSeriesReducer })}
|
|
></Aggregation>
|
|
</QueryEditorRow>
|
|
);
|
|
};
|