Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1625,17 +1625,17 @@ export interface CommonProperties {
*/
readonly brightness_level?: number;
/**
* Number of device processors
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
*/
readonly processor_count?: number;
readonly logical_cpu_count?: number;
/**
* Total RAM in megabytes
*/
readonly total_ram?: number;
/**
* Whether the device is considered a low RAM device (Android)
*/
readonly is_low_ram_device?: boolean;
readonly is_low_ram?: boolean;
[k: string]: unknown;
};
/**
Expand Down
6 changes: 3 additions & 3 deletions lib/cjs/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,17 +600,17 @@ export interface CommonTelemetryProperties {
*/
model?: string;
/**
* Number of device processors
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
*/
readonly processor_count?: number;
readonly logical_cpu_count?: number;
/**
* Total RAM in megabytes
*/
readonly total_ram?: number;
/**
* Whether the device is considered a low RAM device (Android)
*/
readonly is_low_ram_device?: boolean;
readonly is_low_ram?: boolean;
[k: string]: unknown;
};
/**
Expand Down
6 changes: 3 additions & 3 deletions lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1625,17 +1625,17 @@ export interface CommonProperties {
*/
readonly brightness_level?: number;
/**
* Number of device processors
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
*/
readonly processor_count?: number;
readonly logical_cpu_count?: number;
/**
* Total RAM in megabytes
*/
readonly total_ram?: number;
/**
* Whether the device is considered a low RAM device (Android)
*/
readonly is_low_ram_device?: boolean;
readonly is_low_ram?: boolean;
[k: string]: unknown;
};
/**
Expand Down
6 changes: 3 additions & 3 deletions lib/esm/generated/telemetry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,17 +600,17 @@ export interface CommonTelemetryProperties {
*/
model?: string;
/**
* Number of device processors
* Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.
*/
readonly processor_count?: number;
readonly logical_cpu_count?: number;
/**
* Total RAM in megabytes
*/
readonly total_ram?: number;
/**
* Whether the device is considered a low RAM device (Android)
*/
readonly is_low_ram_device?: boolean;
readonly is_low_ram?: boolean;
[k: string]: unknown;
};
/**
Expand Down
6 changes: 3 additions & 3 deletions schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,17 +356,17 @@
"description": "Current screen brightness level (0.0 to 1.0).",
"readOnly": true
},
"processor_count": {
"logical_cpu_count": {
"type": "number",
"description": "Number of device processors",
"description": "Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.",
"readOnly": true
},
"total_ram": {
"type": "number",
"description": "Total RAM in megabytes",
"readOnly": true
},
"is_low_ram_device": {
"is_low_ram": {
"type": "boolean",
"description": "Whether the device is considered a low RAM device (Android)",
"readOnly": true
Expand Down
6 changes: 3 additions & 3 deletions schemas/telemetry/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,17 @@
"type": "string",
"description": "Model of the device"
},
"processor_count": {
"logical_cpu_count": {
"type": "number",
"description": "Number of device processors",
"description": "Number of logical CPU cores available for scheduling on the device at runtime, as reported by the operating system.",
"readOnly": true
},
"total_ram": {
"type": "number",
"description": "Total RAM in megabytes",
"readOnly": true
},
"is_low_ram_device": {
"is_low_ram": {
"type": "boolean",
"description": "Whether the device is considered a low RAM device (Android)",
"readOnly": true
Expand Down
Loading