-
Notifications
You must be signed in to change notification settings - Fork 61
telemetry(AmazonQ): Adding amazonq_feedback event for feedback #969
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
Changes from 2 commits
eb7ecf9
9d4ff12
e1af12b
59b7eec
277ae32
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1251,6 +1251,8 @@ | |
| "description": "The id of the feature the user is interacting in. See also: `component`, `featureId`, `module`, `resourceType`.", | ||
| "allowedValues": [ | ||
| "amazonQ", | ||
| "amazonQTest", | ||
| "amazonQReview", | ||
| "awsExplorer", | ||
| "awsToolkit", | ||
| "codewhisperer", | ||
|
|
@@ -1870,6 +1872,15 @@ | |
| "type": "string", | ||
| "description": "A generic version metadata" | ||
| }, | ||
| { | ||
| "name": "vote", | ||
| "type": "string", | ||
| "description": "User can click on thumbs up or thumbs down for feedback.", | ||
| "allowedValues": [ | ||
| "downvote", | ||
| "upvote" | ||
| ] | ||
| }, | ||
| { | ||
| "name": "workflowToken", | ||
| "type": "string", | ||
|
|
@@ -1977,34 +1988,6 @@ | |
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "amazonq_approachThumbsDown", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this metric is used by multiple IDEs. did you check if it's no longer in use? If not then it will break their code.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, confirmed with @jpinkney-aws , this is not being used by any team in both IDE's. |
||
| "description": "User clicked on the thumbs down button to say that they are unsatisfied", | ||
| "unit": "Count", | ||
| "metadata": [ | ||
| { | ||
| "type": "amazonqConversationId" | ||
| }, | ||
| { | ||
| "type": "credentialStartUrl", | ||
| "required": false | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "amazonq_approachThumbsUp", | ||
| "description": "User clicked on the thumbs up button, to mention that they are satisfied", | ||
| "unit": "Count", | ||
| "metadata": [ | ||
| { | ||
| "type": "amazonqConversationId" | ||
| }, | ||
| { | ||
| "type": "credentialStartUrl", | ||
| "required": false | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "amazonq_bundleExtensionIgnored", | ||
| "description": "File extension was ignored 'count' many times during bundling process", | ||
|
|
@@ -2156,6 +2139,27 @@ | |
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "amazonq_feedback", | ||
| "description": "When a user gives feedback using vote or comment or rating in the conversation", | ||
| "metadata": [ | ||
| { | ||
dhruvigajjar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "type": "amazonqConversationId", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "credentialStartUrl", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "featureId" | ||
| }, | ||
| { | ||
| "type": "vote", | ||
| "required": false | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "amazonq_interactWithMessage", | ||
| "description": "When a user interacts with a message in the conversation", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.