Skip to content

Commit 111523b

Browse files
committed
✨ add process.name to common schema process enrichment
1 parent 6641e15 commit 111523b

3 files changed

Lines changed: 13 additions & 0 deletions

File tree

lib/cjs/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,6 +1424,10 @@ export interface CommonProperties {
14241424
* Role of the process
14251425
*/
14261426
readonly role?: 'main' | 'renderer' | 'utility';
1427+
/**
1428+
* Process name
1429+
*/
1430+
readonly name?: string;
14271431
[k: string]: unknown;
14281432
};
14291433
[k: string]: unknown;

lib/esm/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1424,6 +1424,10 @@ export interface CommonProperties {
14241424
* Role of the process
14251425
*/
14261426
readonly role?: 'main' | 'renderer' | 'utility';
1427+
/**
1428+
* Process name
1429+
*/
1430+
readonly name?: string;
14271431
[k: string]: unknown;
14281432
};
14291433
[k: string]: unknown;

schemas/rum/_common-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,11 @@
518518
"description": "Role of the process",
519519
"enum": ["main", "renderer", "utility"],
520520
"readOnly": true
521+
},
522+
"name": {
523+
"type": "string",
524+
"description": "Process name",
525+
"readOnly": true
521526
}
522527
},
523528
"readOnly": true

0 commit comments

Comments
 (0)