Skip to content

Commit 69fabd5

Browse files
authored
[RUM-11233][telemetry configuration] add remote_configuration_id (#293)
1 parent 364afe3 commit 69fabd5

4 files changed

Lines changed: 15 additions & 1 deletion

File tree

lib/cjs/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,10 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
429429
* The variant of the SDK build (e.g., standard, lite, etc.).
430430
*/
431431
variant?: string;
432+
/**
433+
* The id of the remote configuration
434+
*/
435+
remote_configuration_id?: string;
432436
[k: string]: unknown;
433437
};
434438
[k: string]: unknown;

lib/esm/generated/telemetry.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,10 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
429429
* The variant of the SDK build (e.g., standard, lite, etc.).
430430
*/
431431
variant?: string;
432+
/**
433+
* The id of the remote configuration
434+
*/
435+
remote_configuration_id?: string;
432436
[k: string]: unknown;
433437
};
434438
[k: string]: unknown;

samples/telemetry-events/configuration.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"option_foo": "bar"
7272
}
7373
],
74-
"track_feature_flags_for_events": ["long_task", "resource", "vital"]
74+
"track_feature_flags_for_events": ["long_task", "resource", "vital"],
75+
"remote_configuration_id": "ae3a5d82-cdd1-468d-9bc9-3aa9e54d953c"
7576
}
7677
}
7778
}

schemas/telemetry/configuration-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,11 @@
475475
"type": "string",
476476
"description": "The variant of the SDK build (e.g., standard, lite, etc.).",
477477
"readOnly": false
478+
},
479+
"remote_configuration_id": {
480+
"type": "string",
481+
"description": "The id of the remote configuration",
482+
"readOnly": false
478483
}
479484
}
480485
}

0 commit comments

Comments
 (0)