-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query grouping dashboard changes and extensive tests #33
base: main
Are you sure you want to change the base?
Conversation
This reverts commit 9efdbaf. Signed-off-by: Siddhant Deshmukh <deshsid@amazon.com>
Signed-off-by: Siddhant Deshmukh <deshsid@amazon.com>
Signed-off-by: Siddhant Deshmukh <deshsid@amazon.com>
import QueryGroupAggregateSummary from "./Components/QueryGroupAggregateSummary"; | ||
import QueryGroupSampleQuerySummary from "./Components/QueryGroupSampleQuerySummary"; | ||
|
||
const QueryGroupDetails = ({ queries, core }: { queries: any; core: CoreStart }) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this new component? Is it possible to reuse the QueryDetails page? Cause I see a lot of duplicate logic here with QueryDetails.tsx
render: (query: any) => { | ||
return ( | ||
<span> | ||
<EuiLink onClick={() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we having 2 same links points to the query group details?
const route = query.group_by === 'SIMILARITY' ? `/query-group-details/${hash(query)}` : `/query-details/${hash(query)}`; | ||
history.push(route); | ||
}}> | ||
{query.query_hashcode || '-'} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably use query_id for this if displaying single query: opensearch-project/query-insights#159
Description
Query grouping dashboard changes based on the proposed UX. Support grouping related configurations setting and viewing query groups using the query insights dashboards.
Currently, dashboards only supports Top N queries. With the introduction of grouping Top N queries by similarity, this PR aims to integrate query insights dashboard with the query grouping changes.
Change Details:
type
to filter outgroups
orqueries
Issues Resolved
List any issues this PR will resolve, e.g. Closes [...].
Closes : #14
Screenshots
Top N queries/groups page displaying multiple query groups:
Option to filter by group/query:
Query Group Details Page after clicking on the query group row in the Top N page:
Sample Query Details section on the query group details page:
Query Configuration Page to configure Top N Query Groups:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.