mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
## Multi Level Grouping Resolves https://github.com/elastic/kibana/issues/150516 Resolves https://github.com/elastic/kibana/issues/150514 Implements multi level grouping in Alerts table and Rule details table. Supports 3 levels deep. https://user-images.githubusercontent.com/6935300/232547389-7d778f69-d96d-4bd8-8560-f5ddd9fe8060.mov ### Test plan https://docs.google.com/document/d/15oseanNzF-u-Xeoahy1IVxI4oV3wOuO8VhA886cA1U8/edit# ### To do - [Cypress](https://github.com/elastic/kibana/issues/150666) --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Steph Milovic <stephanie.milovic@elastic.co>
28 lines
749 B
TypeScript
28 lines
749 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import { getGroupingQuery, isNoneGroup, useGrouping } from './src';
|
|
import type {
|
|
DynamicGroupingProps,
|
|
GroupOption,
|
|
GroupingAggregation,
|
|
NamedAggregation,
|
|
RawBucket,
|
|
StatRenderer,
|
|
} from './src';
|
|
|
|
export { getGroupingQuery, isNoneGroup, useGrouping };
|
|
|
|
export type {
|
|
DynamicGroupingProps,
|
|
GroupOption,
|
|
GroupingAggregation,
|
|
NamedAggregation,
|
|
RawBucket,
|
|
StatRenderer,
|
|
};
|