-
Notifications
You must be signed in to change notification settings - Fork 23
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
Refactor for message action bar and add metrics for alerting summary #304
Merged
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
337dfd6
Add message action module
000FLMS 7938e5f
Finish basic function of feedback buttons
000FLMS 82c0fd4
Add test cases and fix bugs
000FLMS 19a5749
Refactor the code to deal with core loss and fix the regenerate bug
000FLMS 15f3d2a
Update CHANGELOG.md
000FLMS 578d8b8
Update for smaller buttons
000FLMS 876b68a
Merge branch 'main' into main
000FLMS 931ceaf
Update for ui-metric
000FLMS 2e25985
Support insight with RAG
qianheng-aws 21e2278
Add change in CHANGELOG.md
qianheng-aws 662923b
Put footer in the same panel with content to match UX design
qianheng-aws 3ba3482
Refine alert prompt
qianheng-aws 1956d49
set CSS scrollbar-width to thin
qianheng-aws 14f9030
Hide insight agent id from front-end
qianheng-aws d247983
Merge branch 'insightWithRAG' into alertingInsight
000FLMS f799e15
Change summary agent config id
qianheng-aws d2278f1
Address comments
qianheng-aws f2516bb
Incorporate message action buttons into alerting summary
000FLMS d0f227d
Add hover tips and rearrange buttons
000FLMS a0e1a89
Fix UT
qianheng-aws ae41d29
Merge branch 'main' into main
000FLMS 600f9f0
Add ui-metric for alerting summary
000FLMS 5f68dfa
fix testing bugs
000FLMS 07a5cff
Merge remote-tracking branch 'refs/remotes/origin/main' into insightW…
qianheng-aws 5f27ef3
Merge branch 'main' into main
000FLMS 77ac476
Merge branch 'main' into main
000FLMS 4002c9b
Merge remote-tracking branch 'refs/remotes/origin/main' into insightW…
qianheng-aws 15d44c3
Change agent execute API
qianheng-aws 14d6d0b
Remove prompt from node JS server
qianheng-aws d94e244
Merge branch 'main' into insightWithRAG
qianheng-aws cde988b
Replace CSS with component property
qianheng-aws 72aeb88
Save the status when switch between summary and insight
000FLMS 370b817
Merge branch 'insightWithRAG' of github.com:qianheng-aws/dashboards-a…
000FLMS 9eea26d
Merge branch 'opensearch-project:main' into main
000FLMS a8191e5
Merge branch 'main' of https://github.com/000FLMS/dashboards-assistan…
000FLMS a35d147
Add tests for metrics
000FLMS 53f7c4f
Merge branch 'main' into alertingInsight
000FLMS 1d37a61
Merge branch 'main' into alertingInsight
000FLMS 61da316
Merge branch 'main' into alertingInsight
000FLMS e7c2f7f
Use usageCollectionPluginMock in tests
000FLMS a56973a
Merge branch 'alertingInsight' of https://github.com/000FLMS/dashboar…
000FLMS 9fafeae
Merge branch 'main' into alertingInsight
000FLMS 2cd22d1
Refactor reportMetric as util funciton
000FLMS b665a42
Merge branch 'alertingInsight' of https://github.com/000FLMS/dashboar…
000FLMS b8bbda1
Remove telementry plugin
000FLMS e99cfd9
Merge branch 'main' into alertingInsight
000FLMS c209f93
Fix metric type
000FLMS 0bb77d8
Merge branch 'alertingInsight' of https://github.com/000FLMS/dashboar…
000FLMS File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
It seems weird to pass insight related status to Trace Icon and its related action function.
How about add a new parameter for the purpose of extending the MessageActions with customize buttons configuration? For this case, insight button should be passed in as a extending actions. You can think about which actions should be internal ones, and which should be extending ones.
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.
It seems like that the only difference between insight and trace is just the click function, so I think adding a new button is a little redundent.
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.
Not exactly. insight button needs to show info "Insight With RAG" when moving your cursor over it. And what if you wants to have both trace button and insight button, or need other customized buttons like insight? Overall, they should be 2 different buttons.
It could be an enhancement since this PR has been merged.