|
49 | 49 | "type": "string", |
50 | 50 | "description": "A detailed state of a specific auth connection. Use `authStatus` for a higher level view of an extension's general connection." |
51 | 51 | }, |
52 | | - { |
53 | | - "name": "cwsprChatActiveEditorImportCount", |
54 | | - "type": "int", |
55 | | - "description": "Number of import statements in the active editor" |
56 | | - }, |
57 | | - { |
58 | | - "name": "cwsprChatActiveEditorTotalCharacters", |
59 | | - "type": "int", |
60 | | - "description": "Total number of characters in the active editor" |
61 | | - }, |
62 | 52 | { |
63 | 53 | "name": "cwsprChatCommandName", |
64 | 54 | "type": "string", |
|
75 | 65 | ], |
76 | 66 | "description": "Type of chat command (/command) executed" |
77 | 67 | }, |
78 | | - { |
79 | | - "name": "cwsprChatConversationType", |
80 | | - "type": "string", |
81 | | - "allowedValues": [ |
82 | | - "Chat", |
83 | | - "Assign", |
84 | | - "Transform" |
85 | | - ], |
86 | | - "description": "Identifies the type of conversation" |
87 | | - }, |
88 | | - { |
89 | | - "name": "cwsprChatHasCodeSnippet", |
90 | | - "type": "boolean", |
91 | | - "description": "true if user has selected code snippet, false otherwise." |
92 | | - }, |
93 | 68 | { |
94 | 69 | "name": "cwsprChatModificationPercentage", |
95 | 70 | "type": "double", |
96 | 71 | "description": "Percentage of characters edited by user after copying/inserting code from a message" |
97 | 72 | }, |
98 | | - { |
99 | | - "name": "cwsprChatReferencesCount", |
100 | | - "type": "int", |
101 | | - "description": "Number of references in response" |
102 | | - }, |
103 | | - { |
104 | | - "name": "cwsprChatFollowUpCount", |
105 | | - "type": "int", |
106 | | - "description": "Number of follow ups in response" |
107 | | - }, |
108 | | - { |
109 | | - "name": "cwsprChatTimeToFirstChunk", |
110 | | - "type": "int", |
111 | | - "description": "Time taken in ms to get back the first chunk" |
112 | | - }, |
113 | | - { |
114 | | - "name": "cwsprChatTimeBetweenChunks", |
115 | | - "type": "string", |
116 | | - "description": "Time (list of int) taken in ms between chunks" |
117 | | - }, |
118 | | - { |
119 | | - "name": "cwsprChatFullResponseLatency", |
120 | | - "type": "int", |
121 | | - "description": "Time taken to get the full response in ms" |
122 | | - }, |
123 | | - { |
124 | | - "name": "cwsprChatProjectContextQueryMs", |
125 | | - "type": "int", |
126 | | - "description": "query latency in ms for local project context" |
127 | | - }, |
128 | | - { |
129 | | - "name": "cwsprChatResponseLength", |
130 | | - "type": "int", |
131 | | - "description": "Number of characters in response" |
132 | | - }, |
133 | | - { |
134 | | - "name": "cwsprChatRequestLength", |
135 | | - "type": "int", |
136 | | - "description": "Number of characters in request" |
137 | | - }, |
138 | | - { |
139 | | - "name": "cwsprChatResponseCode", |
140 | | - "type": "int", |
141 | | - "description": "HTTP response code for message API invocation" |
142 | | - }, |
143 | | - { |
144 | | - "name": "cwsprChatResponseCodeSnippetCount", |
145 | | - "type": "int", |
146 | | - "description": "Number of code snippets in response" |
147 | | - }, |
148 | | - { |
149 | | - "name": "cwsprChatSourceLinkCount", |
150 | | - "type": "int", |
151 | | - "description": "Number of links in response" |
152 | | - }, |
153 | | - { |
154 | | - "name": "cwsprChatTriggerInteraction", |
155 | | - "type": "string", |
156 | | - "allowedValues": [ |
157 | | - "hotkeys", |
158 | | - "click", |
159 | | - "contextMenu" |
160 | | - ], |
161 | | - "description": "Identifies the specific interaction that opens the chat panel" |
162 | | - }, |
163 | 73 | { |
164 | 74 | "name": "executedCount", |
165 | 75 | "type": "int", |
|
195 | 105 | } |
196 | 106 | ], |
197 | 107 | "metrics": [ |
198 | | - { |
199 | | - "name": "amazonq_addMessage", |
200 | | - "description": "When a message is added to the conversation", |
201 | | - "metadata": [ |
202 | | - { |
203 | | - "type": "cwsprChatConversationId" |
204 | | - }, |
205 | | - { |
206 | | - "type": "cwsprChatMessageId" |
207 | | - }, |
208 | | - { |
209 | | - "type": "cwsprChatTriggerInteraction" |
210 | | - }, |
211 | | - { |
212 | | - "type": "cwsprChatUserIntent", |
213 | | - "required": false |
214 | | - }, |
215 | | - { |
216 | | - "type": "cwsprChatHasCodeSnippet", |
217 | | - "required": false |
218 | | - }, |
219 | | - { |
220 | | - "type": "cwsprChatProgrammingLanguage", |
221 | | - "required": false |
222 | | - }, |
223 | | - { |
224 | | - "type": "cwsprChatActiveEditorTotalCharacters", |
225 | | - "required": false |
226 | | - }, |
227 | | - { |
228 | | - "type": "cwsprChatActiveEditorImportCount", |
229 | | - "required": false |
230 | | - }, |
231 | | - { |
232 | | - "type": "cwsprChatResponseCodeSnippetCount", |
233 | | - "required": false |
234 | | - }, |
235 | | - { |
236 | | - "type": "cwsprChatResponseCode" |
237 | | - }, |
238 | | - { |
239 | | - "type": "cwsprChatSourceLinkCount", |
240 | | - "required": false |
241 | | - }, |
242 | | - { |
243 | | - "type": "cwsprChatReferencesCount", |
244 | | - "required": false |
245 | | - }, |
246 | | - { |
247 | | - "type": "cwsprChatFollowUpCount", |
248 | | - "required": false |
249 | | - }, |
250 | | - { |
251 | | - "type": "cwsprChatTimeToFirstChunk" |
252 | | - }, |
253 | | - { |
254 | | - "type": "cwsprChatTimeBetweenChunks" |
255 | | - }, |
256 | | - { |
257 | | - "type": "cwsprChatFullResponseLatency" |
258 | | - }, |
259 | | - { |
260 | | - "type": "cwsprChatRequestLength" |
261 | | - }, |
262 | | - { |
263 | | - "type": "cwsprChatResponseLength", |
264 | | - "required": false |
265 | | - }, |
266 | | - { |
267 | | - "type": "cwsprChatConversationType" |
268 | | - }, |
269 | | - { |
270 | | - "type": "credentialStartUrl", |
271 | | - "required": false |
272 | | - }, |
273 | | - { |
274 | | - "type": "codewhispererCustomizationArn", |
275 | | - "required": false |
276 | | - }, |
277 | | - { |
278 | | - "type": "cwsprChatHasProjectContext", |
279 | | - "required": false |
280 | | - }, |
281 | | - { |
282 | | - "type": "cwsprChatProjectContextQueryMs", |
283 | | - "required": false |
284 | | - } |
285 | | - ] |
286 | | - }, |
287 | 108 | { |
288 | 109 | "name": "amazonq_indexWorkspace", |
289 | 110 | "description": "Indexing of local workspace", |
|
0 commit comments