Added kafkaQueueProblems scenarios #269901
Merged
yuliia-fryshko merged 1 commit intoMay 19, 2026
Merged
Conversation
Closes elastic/obs-ai-team#436 This PR adds AI Insight Feedback Telemetry: - Added FeedbackButtons component with Yes/No buttons for user feedback - Created telemetry event schema (`observability_agent_builder_ai_insight_feedback`) tracking feedback and insight_type - For the "Start Conversation" button we will use kibana-browse events. For this we only had to add `data-test-subj=obsAgentBuilder-{log|alert|error}-startConversationButton` to the ui component **Test plan** - run kibana locally; - Open and Click to expand any AI Insight - Wait for the AI summary to be fully generated - Verify feedback buttons appear - Confirm the "Was this helpful?" text is displayed with Yes and No buttons - Click either Yes or No button - Verify: - A toast notification appears with "Thanks for your feedback!" - The clicked button becomes disabled Verify telemetry event in Dev Tools: - Open Kibana Dev Tools - Run the following query: ``` GET ebt-kibana-browser/_search { "query": { "match": { "event_type": "observability_agent_builder_ai_insight_feedback" } } } ``` - Validate event payload and confirm the response contains a hit with: ``` "event_type": "observability_agent_builder_ai_insight_feedback", "properties.feedback": "positive" or "negative" "properties.insight_type": "log", "alert", or "error" ``` - click Start Conversation button; - Open Kibana Dev Tools - Run the following query: ``` GET ebt-kibana-browser/_search { "query": { "bool": { "must": [ { "match": { "event_type": "click" }}, { "term": { "properties.target": "data-test-subj=obsAgentBuilder-log-startConversationButton" }} ] } } } ``` <img width="1142" height="284" alt="Screenshot 2026-01-30 at 19 17 21" src="https://github.com/user-attachments/assets/27912cce-17eb-4e33-bb2d-957ceb64e920" /> <img width="1163" height="97" alt="Screenshot 2026-01-30 at 19 24 59" src="https://github.com/user-attachments/assets/7acced69-9683-48f6-bbd5-e40088766ab4" /> --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Viduni Wickramarachchi <viduni.ushanka@gmail.com> (cherry picked from commit 4b56723)
arturoliduena
approved these changes
May 19, 2026
Contributor
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Backport
This will backport the following commits from main to 9.4:
Added kafkaQueueProblems scenarios #267402
Questions ?
Please refer to the Backport tool documentation