Skip to content

Commit 30e798a

Browse files
fix: test management telemetry (#10962)
fix: test management telemetry Merge branch 'master' into daniel.mohedano/test-management-telemetry Co-authored-by: daniel.mohedano <[email protected]>
1 parent f007c41 commit 30e798a

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

internal-api/src/main/java/datadog/trace/api/civisibility/telemetry/CiVisibilityCountMetric.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ public enum CiVisibilityCountMetric {
168168
/** The number of tests requests sent to the flaky tests endpoint that errored */
169169
FLAKY_TESTS_REQUEST_ERRORS("flaky_tests.request_errors", ErrorType.class, StatusCode.class),
170170
/** The number of requests sent to the test management tests endpoint */
171-
TEST_MANAGEMENT_TESTS_REQUEST("test_management.request", RequestCompressed.class),
171+
TEST_MANAGEMENT_TESTS_REQUEST("test_management_tests.request", RequestCompressed.class),
172172
/** The number of tests requests sent to the test management tests endpoint that errored */
173173
TEST_MANAGEMENT_TESTS_REQUEST_ERRORS(
174-
"test_management.request_errors", ErrorType.class, StatusCode.class),
174+
"test_management_tests.request_errors", ErrorType.class, StatusCode.class),
175175
/** The number of coverage upload requests sent */
176176
COVERAGE_UPLOAD_REQUEST("coverage_upload.request", RequestCompressed.class),
177177
/** The number of coverage upload requests that errored */

internal-api/src/main/java/datadog/trace/api/civisibility/telemetry/CiVisibilityDistributionMetric.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ public enum CiVisibilityDistributionMetric {
5252
/** The number of tests received by the flaky tests endpoint */
5353
FLAKY_TESTS_RESPONSE_TESTS("flaky_tests.response_tests"),
5454
/** The time it takes to get the response of the test management tests endpoint request in ms */
55-
TEST_MANAGEMENT_TESTS_REQUEST_MS("test_management.request_ms"),
55+
TEST_MANAGEMENT_TESTS_REQUEST_MS("test_management_tests.request_ms"),
5656
/** The number of bytes received by the test management tests endpoint */
57-
TEST_MANAGEMENT_TESTS_RESPONSE_BYTES("test_management.response_bytes", ResponseCompressed.class),
57+
TEST_MANAGEMENT_TESTS_RESPONSE_BYTES(
58+
"test_management_tests.response_bytes", ResponseCompressed.class),
5859
/** The number of tests received by the test management tests endpoint */
59-
TEST_MANAGEMENT_TESTS_RESPONSE_TESTS("test_management.response_tests"),
60+
TEST_MANAGEMENT_TESTS_RESPONSE_TESTS("test_management_tests.response_tests"),
6061
/** The time it takes to make a coverage upload request in ms */
6162
COVERAGE_UPLOAD_REQUEST_MS("coverage_upload.request_ms"),
6263
/** The size of a coverage upload request in bytes */

0 commit comments

Comments
 (0)