From 8cd5ea9206a1393493f6b2567d61ea47cd6f3405 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Tue, 15 Jul 2025 20:31:03 -0700 Subject: [PATCH 01/10] NEW: add QCodeReview tool metric definition Context: Adding new amazonq_qCodeReviewTool metric definition How? added new definition --- telemetry/definitions/commonDefinitions.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index d7f77849..7442f0e4 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -8419,6 +8419,10 @@ "type": "result" } ] + }, + { + "name": "amazonq_qCodeReviewTool", + "description": "Describes different metrics for QCodeReview tool" } ] } \ No newline at end of file From 05a287b88b22ae2b4c1ea8e2e2fb0a776aae022a Mon Sep 17 00:00:00 2001 From: mkovelam Date: Tue, 15 Jul 2025 20:44:20 -0700 Subject: [PATCH 02/10] FIX: fixing amazonq_qCodeReviewTool metric description --- telemetry/definitions/commonDefinitions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 7442f0e4..178f0387 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -8422,7 +8422,7 @@ }, { "name": "amazonq_qCodeReviewTool", - "description": "Describes different metrics for QCodeReview tool" + "description": "Captures different metrics for QCodeReview tool" } ] } \ No newline at end of file From 77d3cff9e6b8504f3f86a07dfd3b6f8eec316961 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Wed, 16 Jul 2025 23:34:05 -0700 Subject: [PATCH 03/10] NEW: adding required metric definitions for Agentic review tool --- telemetry/definitions/commonDefinitions.json | 165 +++++++++++++++++++ 1 file changed, 165 insertions(+) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 178f0387..6ed0327d 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -210,6 +210,33 @@ "type": "string", "description": "AWS Region associated with a metric\n- \"n/a\" if not associated with a region.\n- \"not-set\" if metric is associated with a region, but region is unknown." }, + { + "name": "agenticReviewArtifactSize", + "type": "double", + "description": "Size of the artifact reviewed/scanned in bytes" + }, + { + "name": "agenticReviewArtifactType", + "type": "string", + "description": "Type of the artifact requested to review/scan", + "allowedValues": ["FILE", "FOLDER"] + }, + { + "name": "agenticReviewCustomRulesCount", + "type": "int", + "description": "Number of custom guide line files present" + }, + { + "name": "agenticReviewFindingsCount", + "type": "int", + "description": "Number of findings discovered after running a review/scan on a source code artifact" + }, + { + "name": "agenticReviewType", + "type": "string", + "description": "Identifies the type of agentic review triggered", + "allowedValues": ["FULL_REVIEW", "CODE_DIFF_REVIEW"] + }, { "name": "buildDuration", "type": "int", @@ -315,6 +342,16 @@ "applyFix" ] }, + { + "name": "codeReviewId", + "type": "string", + "description": "Unique identifier of an agentic review/scan request, combination of projectId and runId" + }, + { + "name": "codeScanName", + "type": "string", + "description": "Unique identifier of project in the workspace in agentic review tool" + }, { "name": "codeScanServiceInvocationsDuration", "type": "int", @@ -2133,6 +2170,11 @@ "type": "string", "description": "Resource subtype of connection start" }, + { + "name": "sourceCodeArtifactId", + "type": "string", + "description": "Unique identifier of the uploaded artifact for agentic review" + }, { "name": "sourceResourceType", "type": "string", @@ -3193,6 +3235,129 @@ "required": false } ] + }, + { + "name": "amazonq_qCodeReviewTool_codeScanSuccess", + "description": "Captures metrics for successful agentic reviews/scans", + "metadata": [ + { + "type": "agenticReviewArtifactType" + + }, + { + "type": "agenticReviewArtifactSize" + + }, + { + "type": "agenticReviewCustomRulesCount" + + }, + { + "type": "agenticReviewFindingsCount", + "required": true + }, + { + "type": "agenticReviewType" + }, + { + "type": "codeReviewId", + "required": true + }, + { + "type": "result" + } + ] + }, + { + "name": "amazonq_qCodeReviewTool_codeScanFailed", + "description": "Captures metrics for failed agentic reviews/scans", + "metadata": [ + { + "type": "agenticReviewArtifactType" + }, + { + "type": "agenticReviewArtifactSize" + }, + { + "type": "agenticReviewType" + }, + { + "type": "codeReviewId", + "required": false + }, + { + "type": "codeScanName", + "required": false + }, + { + "type": "reason", + "required": true + }, + { + "type": "result" + }, + { + "type": "sourceCodeArtifactId", + "required": false + } + ] + }, + { + "name": "amazonq_qCodeReviewTool_codeScanTimeout", + "description": "Captures metrics for timed out agentic reviews/scans", + "metadata": [ + { + "type": "agenticReviewArtifactType" + }, + { + "type": "agenticReviewArtifactSize" + }, + { + "type": "agenticReviewType" + }, + { + "type": "codeReviewId", + "required": true + }, + { + "type": "reason" + }, + { + "type": "result" + } + ] + }, + { + "name": "amazonq_qCodeReviewTool_createUploadUrlFailed", + "description": "Captures metrics for artifact upload failures in agentic reviews/scans", + "metadata": [ + { + "type": "codeScanName" + }, + { + "type": "agenticReviewArtifactSize", + "required": false + }, + { + "type": "agenticReviewArtifactType" + }, + { + "type": "reason", + "required": true + }, + { + "type": "result" + } + ] + }, + { + "name": "amazonq_qCodeReviewTool_missingFileOrFolder", + "description": "Captures metrics for invalid reviews/scans requests", + "metadata": [ + { + "type": "result" + } + ] }, { "name": "amazonq_startConversationInvoke", From e47d24040e45281b060343d15dba50d11e58a153 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Wed, 16 Jul 2025 23:43:00 -0700 Subject: [PATCH 04/10] FIX: removing not used metric definition --- telemetry/definitions/commonDefinitions.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 6ed0327d..206a099d 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -8584,10 +8584,6 @@ "type": "result" } ] - }, - { - "name": "amazonq_qCodeReviewTool", - "description": "Captures different metrics for QCodeReview tool" } ] } \ No newline at end of file From 9a44a1141eed83ea94d160a4d5ecd1ce012a9f64 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Thu, 17 Jul 2025 12:10:34 -0700 Subject: [PATCH 05/10] FIX: updated metric definitions and fixed the sort order --- telemetry/definitions/commonDefinitions.json | 143 ++++++++++--------- 1 file changed, 73 insertions(+), 70 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 206a099d..e76e2c50 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -210,33 +210,6 @@ "type": "string", "description": "AWS Region associated with a metric\n- \"n/a\" if not associated with a region.\n- \"not-set\" if metric is associated with a region, but region is unknown." }, - { - "name": "agenticReviewArtifactSize", - "type": "double", - "description": "Size of the artifact reviewed/scanned in bytes" - }, - { - "name": "agenticReviewArtifactType", - "type": "string", - "description": "Type of the artifact requested to review/scan", - "allowedValues": ["FILE", "FOLDER"] - }, - { - "name": "agenticReviewCustomRulesCount", - "type": "int", - "description": "Number of custom guide line files present" - }, - { - "name": "agenticReviewFindingsCount", - "type": "int", - "description": "Number of findings discovered after running a review/scan on a source code artifact" - }, - { - "name": "agenticReviewType", - "type": "string", - "description": "Identifies the type of agentic review triggered", - "allowedValues": ["FULL_REVIEW", "CODE_DIFF_REVIEW"] - }, { "name": "buildDuration", "type": "int", @@ -342,15 +315,47 @@ "applyFix" ] }, + { + "name": "codeReviewArtifactId", + "type": "string", + "description": "Unique identifier of the uploaded artifact for agentic review" + }, + { + "name": "codeReviewArtifactSize", + "type": "double", + "description": "Size of the artifact reviewed/scanned in bytes" + }, + { + "name": "codeReviewArtifactType", + "type": "string", + "description": "Type of the artifact requested for code review", + "allowedValues": ["FILE", "FOLDER"] + }, + { + "name": "codeReviewCustomRulesCount", + "type": "int", + "description": "Number of custom guide line files present in the code review" + }, + { + "name": "codeReviewFindingsCount", + "type": "int", + "description": "Number of findings discovered after running a code review on a source code artifact" + }, { "name": "codeReviewId", "type": "string", - "description": "Unique identifier of an agentic review/scan request, combination of projectId and runId" + "description": "Unique identifier of an code review/scan request, combination of projectId and runId" }, { - "name": "codeScanName", + "name": "codeReviewScanName", "type": "string", - "description": "Unique identifier of project in the workspace in agentic review tool" + "description": "Unique identifier of project in the workspace in code review tool" + }, + { + "name": "codeReviewType", + "type": "string", + "description": "Identifies the type of code review triggered", + "allowedValues": ["FULL_REVIEW", "CODE_DIFF_REVIEW"] }, { "name": "codeScanServiceInvocationsDuration", @@ -2170,11 +2175,6 @@ "type": "string", "description": "Resource subtype of connection start" }, - { - "name": "sourceCodeArtifactId", - "type": "string", - "description": "Unique identifier of the uploaded artifact for agentic review" - }, { "name": "sourceResourceType", "type": "string", @@ -3236,31 +3236,36 @@ } ] }, - { - "name": "amazonq_qCodeReviewTool_codeScanSuccess", - "description": "Captures metrics for successful agentic reviews/scans", + { + "name": "amazonq_qCodeReviewTool_codeScanFailed", + "description": "Captures metrics for failed agentic reviews/scans", "metadata": [ { - "type": "agenticReviewArtifactType" - + "type": "codeReviewArtifactId", + "required": false + }, + { + "type": "codeReviewArtifactSize" }, { - "type": "agenticReviewArtifactSize" - + "type": "codeReviewArtifactType" }, { - "type": "agenticReviewCustomRulesCount" - + "type": "codeReviewCustomRulesCount" }, { - "type": "agenticReviewFindingsCount", - "required": true + "type": "codeReviewId", + "required": false }, { - "type": "agenticReviewType" + "type": "codeReviewScanName", + "required": false }, { - "type": "codeReviewId", + "type": "codeReviewType" + }, + { + "type": "reason", "required": true }, { @@ -3269,36 +3274,31 @@ ] }, { - "name": "amazonq_qCodeReviewTool_codeScanFailed", - "description": "Captures metrics for failed agentic reviews/scans", + "name": "amazonq_qCodeReviewTool_codeScanSuccess", + "description": "Captures metrics for successful agentic reviews/scans", "metadata": [ { - "type": "agenticReviewArtifactType" - }, - { - "type": "agenticReviewArtifactSize" + "type": "codeReviewArtifactSize" }, { - "type": "agenticReviewType" + "type": "codeReviewArtifactType" }, { - "type": "codeReviewId", - "required": false + "type": "codeReviewCustomRulesCount" }, { - "type": "codeScanName", - "required": false + "type": "codeReviewFindingsCount", + "required": true }, { - "type": "reason", + "type": "codeReviewId", "required": true }, { - "type": "result" + "type": "codeReviewType" }, { - "type": "sourceCodeArtifactId", - "required": false + "type": "result" } ] }, @@ -3307,18 +3307,21 @@ "description": "Captures metrics for timed out agentic reviews/scans", "metadata": [ { - "type": "agenticReviewArtifactType" + "type": "codeReviewArtifactSize" }, { - "type": "agenticReviewArtifactSize" + "type": "codeReviewArtifactType" }, { - "type": "agenticReviewType" + "type": "codeReviewCustomRulesCount" }, { "type": "codeReviewId", "required": true }, + { + "type": "codeReviewType" + }, { "type": "reason" }, @@ -3332,14 +3335,14 @@ "description": "Captures metrics for artifact upload failures in agentic reviews/scans", "metadata": [ { - "type": "codeScanName" + "type": "codeReviewArtifactSize", + "required": false }, { - "type": "agenticReviewArtifactSize", - "required": false + "type": "codeReviewArtifactType" }, { - "type": "agenticReviewArtifactType" + "type": "codeReviewScanName" }, { "type": "reason", From 7121e4ed18b56a31de8389e17ba8dcfe1a35d8c0 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Thu, 17 Jul 2025 20:45:52 -0700 Subject: [PATCH 06/10] FIX: udpated codeReview Tools metric definitions --- telemetry/definitions/commonDefinitions.json | 227 +++++-------------- 1 file changed, 52 insertions(+), 175 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index e76e2c50..2ea277a8 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -80,6 +80,11 @@ "type": "double", "description": "Captures the size of the source code" }, + { + "name": "artifactType", + "type": "string", + "description": "type of artifact used in a request" + }, { "name": "amazonqTimeToLoadHistory", "type": "int", @@ -316,46 +321,9 @@ ] }, { - "name": "codeReviewArtifactId", - "type": "string", - "description": "Unique identifier of the uploaded artifact for agentic review" - }, - { - "name": "codeReviewArtifactSize", - "type": "double", - "description": "Size of the artifact reviewed/scanned in bytes" - }, - { - "name": "codeReviewArtifactType", - "type": "string", - "description": "Type of the artifact requested for code review", - "allowedValues": ["FILE", "FOLDER"] - }, - { - "name": "codeReviewCustomRulesCount", - "type": "int", - "description": "Number of custom guide line files present in the code review" - }, - { - "name": "codeReviewFindingsCount", + "name": "customRules", "type": "int", - "description": "Number of findings discovered after running a code review on a source code artifact" - }, - { - "name": "codeReviewId", - "type": "string", - "description": "Unique identifier of an code review/scan request, combination of projectId and runId" - }, - { - "name": "codeReviewScanName", - "type": "string", - "description": "Unique identifier of project in the workspace in code review tool" - }, - { - "name": "codeReviewType", - "type": "string", - "description": "Identifies the type of code review triggered", - "allowedValues": ["FULL_REVIEW", "CODE_DIFF_REVIEW"] + "description": "number of custom rules present in a request" }, { "name": "codeScanServiceInvocationsDuration", @@ -614,7 +582,7 @@ { "name": "codewhispererCodeScanJobId", "type": "string", - "description": "The ID of the security scan job" + "description": "The ID of the scan job" }, { "name": "codewhispererCodeScanLines", @@ -629,13 +597,7 @@ { "name": "codewhispererCodeScanScope", "type": "string", - "description": "The scope of the security scan being performed", - "allowedValues": [ - "FILE", - "FILE_AUTO", - "FILE_ON_DEMAND", - "PROJECT" - ] + "description": "The scope of the scan being performed" }, { "name": "codewhispererCodeScanSrcPayloadBytes", @@ -645,12 +607,12 @@ { "name": "codewhispererCodeScanSrcZipFileBytes", "type": "int", - "description": "The compressed payload size of source files in bytes of customer project context sent for security scan" + "description": "The compressed payload size of source files in bytes of customer project context sent for scan" }, { "name": "codewhispererCodeScanTotalIssues", "type": "int", - "description": "The number of security issues been detected" + "description": "The number of issues been detected" }, { "name": "codewhispererCompletionType", @@ -2713,6 +2675,47 @@ } ] }, + { + "name": "amazonq_codeReviewTool", + "description": "Parent metric name for the code review tool.", + "metadata": [ + { + "type": "artifactType", + "required": false + }, + { + "type": "codewhispererCodeScanJobId", + "required": false + }, + { + "type": "codewhispererCodeScanSrcZipFileBytes", + "required": false + }, + { + "type": "codewhispererCodeScanScope", + "required": false + }, + { + "type": "codewhispererCodeScanTotalIssues", + "required": false + }, + { + "type": "customRules", + "required": false + }, + { + "type": "reason", + "required": false + }, + { + "type": "reasonDesc", + "required": false + }, + { + "type": "result" + } + ] + }, { "name": "amazonq_createUpload", "description": "Captures createUploadUrl invocation process", @@ -3236,132 +3239,6 @@ } ] }, - { - "name": "amazonq_qCodeReviewTool_codeScanFailed", - "description": "Captures metrics for failed agentic reviews/scans", - "metadata": [ - { - "type": "codeReviewArtifactId", - "required": false - }, - { - "type": "codeReviewArtifactSize" - }, - { - "type": "codeReviewArtifactType" - }, - { - "type": "codeReviewCustomRulesCount" - }, - { - "type": "codeReviewId", - "required": false - }, - { - "type": "codeReviewScanName", - "required": false - }, - { - "type": "codeReviewType" - }, - { - "type": "reason", - "required": true - }, - { - "type": "result" - } - ] - }, - { - "name": "amazonq_qCodeReviewTool_codeScanSuccess", - "description": "Captures metrics for successful agentic reviews/scans", - "metadata": [ - { - "type": "codeReviewArtifactSize" - }, - { - "type": "codeReviewArtifactType" - }, - { - "type": "codeReviewCustomRulesCount" - }, - { - "type": "codeReviewFindingsCount", - "required": true - }, - { - "type": "codeReviewId", - "required": true - }, - { - "type": "codeReviewType" - }, - { - "type": "result" - } - ] - }, - { - "name": "amazonq_qCodeReviewTool_codeScanTimeout", - "description": "Captures metrics for timed out agentic reviews/scans", - "metadata": [ - { - "type": "codeReviewArtifactSize" - }, - { - "type": "codeReviewArtifactType" - }, - { - "type": "codeReviewCustomRulesCount" - }, - { - "type": "codeReviewId", - "required": true - }, - { - "type": "codeReviewType" - }, - { - "type": "reason" - }, - { - "type": "result" - } - ] - }, - { - "name": "amazonq_qCodeReviewTool_createUploadUrlFailed", - "description": "Captures metrics for artifact upload failures in agentic reviews/scans", - "metadata": [ - { - "type": "codeReviewArtifactSize", - "required": false - }, - { - "type": "codeReviewArtifactType" - }, - { - "type": "codeReviewScanName" - }, - { - "type": "reason", - "required": true - }, - { - "type": "result" - } - ] - }, - { - "name": "amazonq_qCodeReviewTool_missingFileOrFolder", - "description": "Captures metrics for invalid reviews/scans requests", - "metadata": [ - { - "type": "result" - } - ] - }, { "name": "amazonq_startConversationInvoke", "description": "Captures startConversation invocation process", From 5b97cf6a7f8ac74602e4493b1892b89c9da96b88 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Fri, 18 Jul 2025 11:13:32 -0700 Subject: [PATCH 07/10] FIX: updating codeReviewTool metric definitions --- telemetry/definitions/commonDefinitions.json | 29 ++++++++++++-------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 2ea277a8..497ab87d 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -80,11 +80,6 @@ "type": "double", "description": "Captures the size of the source code" }, - { - "name": "artifactType", - "type": "string", - "description": "type of artifact used in a request" - }, { "name": "amazonqTimeToLoadHistory", "type": "int", @@ -129,6 +124,11 @@ ], "description": "The current state of the App Runner service" }, + { + "name": "artifactType", + "type": "string", + "description": "type of artifact used in a request" + }, { "name": "artifactsUploadDuration", "type": "int", @@ -2677,7 +2677,7 @@ }, { "name": "amazonq_codeReviewTool", - "description": "Parent metric name for the code review tool.", + "description": "This metric is used to evaluate Amazon Q's code review tool", "metadata": [ { "type": "artifactType", @@ -2691,10 +2691,6 @@ "type": "codewhispererCodeScanSrcZipFileBytes", "required": false }, - { - "type": "codewhispererCodeScanScope", - "required": false - }, { "type": "codewhispererCodeScanTotalIssues", "required": false @@ -2713,6 +2709,10 @@ }, { "type": "result" + }, + { + "type": "scope", + "required": false } ] }, @@ -5869,7 +5869,14 @@ }, { "type": "codewhispererCodeScanScope", - "required": false + "required": false, + "description": "The scope of the security scan being performed", + "allowedValues": [ + "FILE", + "FILE_AUTO", + "FILE_ON_DEMAND", + "PROJECT" + ] }, { "type": "codewhispererCodeScanSrcPayloadBytes" From f96ba4aba9b4b242deff7f4c2c5cd762044feae1 Mon Sep 17 00:00:00 2001 From: mkovelam Date: Fri, 18 Jul 2025 11:21:18 -0700 Subject: [PATCH 08/10] FIX: fix for failed tests --- telemetry/definitions/commonDefinitions.json | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index 497ab87d..eaea89f8 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -597,7 +597,13 @@ { "name": "codewhispererCodeScanScope", "type": "string", - "description": "The scope of the scan being performed" + "description": "The scope of the security scan being performed", + "allowedValues": [ + "FILE", + "FILE_AUTO", + "FILE_ON_DEMAND", + "PROJECT" + ] }, { "name": "codewhispererCodeScanSrcPayloadBytes", @@ -5869,14 +5875,7 @@ }, { "type": "codewhispererCodeScanScope", - "required": false, - "description": "The scope of the security scan being performed", - "allowedValues": [ - "FILE", - "FILE_AUTO", - "FILE_ON_DEMAND", - "PROJECT" - ] + "required": false }, { "type": "codewhispererCodeScanSrcPayloadBytes" From f797ea2fb3cf36d59889eb8857b0cad4e5a61d3c Mon Sep 17 00:00:00 2001 From: mkovelam Date: Fri, 18 Jul 2025 11:39:32 -0700 Subject: [PATCH 09/10] FIX: fixing alphabetical order --- telemetry/definitions/commonDefinitions.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index eaea89f8..ca33efaa 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -124,16 +124,16 @@ ], "description": "The current state of the App Runner service" }, - { - "name": "artifactType", - "type": "string", - "description": "type of artifact used in a request" - }, { "name": "artifactsUploadDuration", "type": "int", "description": "Time taken to fetch the upload URL and upload the artifacts in milliseconds" }, + { + "name": "artifactType", + "type": "string", + "description": "type of artifact used in a request" + }, { "name": "attempts", "type": "int", From 1612e9cc739ab2a853b6fcbebdd2e7ebd4222fae Mon Sep 17 00:00:00 2001 From: mkovelam Date: Fri, 18 Jul 2025 11:49:29 -0700 Subject: [PATCH 10/10] FIX: fixing alphabetical order --- telemetry/definitions/commonDefinitions.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/telemetry/definitions/commonDefinitions.json b/telemetry/definitions/commonDefinitions.json index ca33efaa..d31595a1 100644 --- a/telemetry/definitions/commonDefinitions.json +++ b/telemetry/definitions/commonDefinitions.json @@ -320,11 +320,6 @@ "applyFix" ] }, - { - "name": "customRules", - "type": "int", - "description": "number of custom rules present in a request" - }, { "name": "codeScanServiceInvocationsDuration", "type": "int", @@ -1003,6 +998,11 @@ "other" ] }, + { + "name": "customRules", + "type": "int", + "description": "number of custom rules present in a request" + }, { "name": "cwsprAgenticChatInteractionType", "type": "string",