-
Notifications
You must be signed in to change notification settings - Fork 753
telemetry(amazonq): add telemetry for falcon features #6691
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 1 commit
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 |
|---|---|---|
|
|
@@ -83,6 +83,61 @@ | |
| "type": "int", | ||
| "description": "Query latency in ms for local project context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatFolderContextCount", | ||
| "type": "int", | ||
| "description": "# of folders manually added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatFileContextCount", | ||
| "type": "int", | ||
| "description": "# of files manually added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatFileContextLength", | ||
| "type": "int", | ||
| "description": "Total length of files added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatFileContextTruncatedLength", | ||
| "type": "int", | ||
| "description": "Truncated length of files added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatPromptContextCount", | ||
| "type": "int", | ||
| "description": "# of saved prompts manually added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatPromptContextLength", | ||
| "type": "int", | ||
| "description": "Total length of saved prompts added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatPromptContextTruncatedLength", | ||
| "type": "int", | ||
| "description": "Truncated length of saved prompts added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatRuleContextCount", | ||
| "type": "int", | ||
| "description": "# of workspace rules automatically added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatRuleContextLength", | ||
| "type": "int", | ||
| "description": "Total length of workspace rules added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatRuleContextTruncatedLength", | ||
| "type": "int", | ||
| "description": "Truncated length of workspace rules added to context" | ||
| }, | ||
| { | ||
| "name": "cwsprChatHasContextList", | ||
| "type": "boolean", | ||
| "description": "true if context list is displayed to user" | ||
| }, | ||
| { | ||
| "name": "amazonqIndexFileSizeInMB", | ||
| "type": "int", | ||
|
|
@@ -638,6 +693,10 @@ | |
| "name": "amazonq_closeChat", | ||
| "description": "When chat panel is closed" | ||
| }, | ||
| { | ||
| "name": "amazonq_createSavedPrompt", | ||
|
||
| "description": "When a saved user prompt is created" | ||
| }, | ||
| { | ||
| "name": "amazonq_startConversation", | ||
| "description": "When user starts a new conversation", | ||
|
|
@@ -804,6 +863,50 @@ | |
| { | ||
| "type": "codewhispererCustomizationArn", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatHasContextList", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatFolderContextCount", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatFileContextCount", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatFileContextLength", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatFileContextTruncatedLength", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatPromptContextCount", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatPromptContextLength", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatRuleContextTruncatedLength", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatRuleContextCount", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatRuleContextLength", | ||
| "required": false | ||
| }, | ||
| { | ||
| "type": "cwsprChatPromptContextTruncatedLength", | ||
| "required": false | ||
| } | ||
| ] | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.