Skip to content

Commit 1c483b1

Browse files
add ddtags to rum event schema (#279)
1 parent 8bab38c commit 1c483b1

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

lib/cjs/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1231,6 +1231,10 @@ export interface CommonProperties {
12311231
* Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.
12321232
*/
12331233
readonly build_id?: string;
1234+
/**
1235+
* Tags of the event in key:value format, separated by commas (e.g. 'env:prod,version:1.2.3')
1236+
*/
1237+
readonly ddtags?: string;
12341238
/**
12351239
* Session properties
12361240
*/

lib/esm/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1231,6 +1231,10 @@ export interface CommonProperties {
12311231
* Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.
12321232
*/
12331233
readonly build_id?: string;
1234+
/**
1235+
* Tags of the event in key:value format, separated by commas (e.g. 'env:prod,version:1.2.3')
1236+
*/
1237+
readonly ddtags?: string;
12341238
/**
12351239
* Session properties
12361240
*/

schemas/rum/_common-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@
4949
"description": "Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.",
5050
"readOnly": true
5151
},
52+
"ddtags": {
53+
"type": "string",
54+
"description": "Tags of the event in key:value format, separated by commas (e.g. 'env:prod,version:1.2.3')",
55+
"readOnly": true
56+
},
5257
"session": {
5358
"type": "object",
5459
"description": "Session properties",

0 commit comments

Comments
 (0)