You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/commands/codescan/actions/HandleIssueCommandAction.kt
Copy file name to clipboardExpand all lines: plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/controller/chat/telemetry/TelemetryHelper.kt
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -441,6 +441,26 @@ class TelemetryHelper(private val project: Project, private val sessionStorage:
Copy file name to clipboardExpand all lines: plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/codescan/utils/CodeWhispererCodeScanIssueUtils.kt
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,11 @@ private fun handleIssueCommand(issue: CodeWhispererCodeScanIssue, action: IssueC
252
252
"endLine" to issue.endLine.toString(),
253
253
"recommendation" to jacksonObjectMapper().writeValueAsString(issue.recommendation),
254
254
"suggestedFixes" to jacksonObjectMapper().writeValueAsString(issue.suggestedFixes),
255
-
"codeSnippet" to jacksonObjectMapper().writeValueAsString(issue.codeSnippet)
255
+
"codeSnippet" to jacksonObjectMapper().writeValueAsString(issue.codeSnippet),
256
+
"findingId" to issue.findingId,
257
+
"ruleId" to issue.ruleId.orEmpty(),
258
+
"detectorId" to issue.detectorId,
259
+
"autoDetected" to issue.autoDetected.toString(),
256
260
)
257
261
val actionEvent =AnActionEvent.createFromInputEvent(
0 commit comments