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 packages/core/src/domain/telemetry/telemetryEvent.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,17 +641,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 packages/rum-core/src/rumEvent.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1685,17 +1685,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
2 changes: 1 addition & 1 deletion rum-events-format
Submodule rum-events-format updated 53 files
+2 −2 .github/workflows/android-sdk.yml
+240 −0 lib/cjs/generated/browserProfiling.d.ts
+6 −0 lib/cjs/generated/browserProfiling.js
+97 −0 lib/cjs/generated/mobileProfiling.d.ts
+6 −0 lib/cjs/generated/mobileProfiling.js
+121 −0 lib/cjs/generated/profiling.d.ts
+6 −0 lib/cjs/generated/profiling.js
+3 −3 lib/cjs/generated/rum.d.ts
+3 −3 lib/cjs/generated/telemetry.d.ts
+1 −0 lib/cjs/src/index.d.ts
+1 −0 lib/cjs/src/index.js
+4 −0 lib/cjs/src/profiling.d.ts
+34 −0 lib/cjs/src/profiling.js
+21 −0 lib/cjs/src/session-replay-browser.d.ts
+19 −1 lib/cjs/src/session-replay-browser.js
+11 −1 lib/cjs/src/session-replay.d.ts
+4 −1 lib/cjs/src/session-replay.js
+240 −0 lib/esm/generated/browserProfiling.d.ts
+5 −0 lib/esm/generated/browserProfiling.js
+97 −0 lib/esm/generated/mobileProfiling.d.ts
+5 −0 lib/esm/generated/mobileProfiling.js
+121 −0 lib/esm/generated/profiling.d.ts
+5 −0 lib/esm/generated/profiling.js
+3 −3 lib/esm/generated/rum.d.ts
+3 −3 lib/esm/generated/telemetry.d.ts
+1 −0 lib/esm/src/index.d.ts
+1 −0 lib/esm/src/index.js
+4 −0 lib/esm/src/profiling.d.ts
+4 −0 lib/esm/src/profiling.js
+21 −0 lib/esm/src/session-replay-browser.d.ts
+18 −0 lib/esm/src/session-replay-browser.js
+11 −1 lib/esm/src/session-replay.d.ts
+2 −1 lib/esm/src/session-replay.js
+1 −0 lib/package.json
+6 −0 lib/profiling/package.json
+1 −0 lib/src/index.ts
+6 −0 lib/src/profiling.ts
+44 −0 lib/src/session-replay-browser.ts
+8 −0 lib/src/session-replay.ts
+23 −0 samples/profiling/browser/profile-event/profile-event.json
+69 −0 samples/profiling/browser/profiler-trace/profiler-trace.json
+25 −0 samples/profiling/mobile/profile-event/profile-event.json
+14 −0 schemas/profiling-browser-schema.json
+7 −0 schemas/profiling-mobile-schema.json
+19 −0 schemas/profiling-schema.json
+117 −0 schemas/profiling/_common-schema.json
+37 −0 schemas/profiling/browser/profile-event-schema.json
+216 −0 schemas/profiling/browser/profiler-trace-schema.json
+30 −0 schemas/profiling/mobile/profile-event-schema.json
+3 −3 schemas/rum/_common-schema.json
+3 −3 schemas/telemetry/_common-schema.json
+3 −0 scripts/generate.mjs
+2 −0 scripts/validate.mjs