Skip to content

Commit

Permalink
[RUM-7070] is_main_proccess property has been added into telemetry co…
Browse files Browse the repository at this point in the history
…nfiguration
  • Loading branch information
satween committed Nov 29, 2024
1 parent 8beec7c commit cc5a730
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
name: string;
[k: string]: unknown;
}[];
/**
* Whether the SDK is initialised on the application's main or a secondary process
*/
is_main_process?: boolean;
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ export declare type TelemetryConfigurationEvent = CommonTelemetryProperties & {
name: string;
[k: string]: unknown;
}[];
/**
* Whether the SDK is initialised on the application's main or a secondary process
*/
is_main_process?: boolean;
[k: string]: unknown;
};
[k: string]: unknown;
Expand Down
4 changes: 4 additions & 0 deletions schemas/telemetry/configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,10 @@
},
"additionalProperties": true
}
},
"is_main_process": {
"type": "boolean",
"description": "Whether the SDK is initialised on the application's main or a secondary process"
}
}
}
Expand Down

0 comments on commit cc5a730

Please sign in to comment.