We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cf31c commit e4c3277Copy full SHA for e4c3277
βpackages/rum-core/src/domain/assembly.tsβ
@@ -92,6 +92,11 @@ export function startRumAssembly(
92
...VIEW_MODIFIABLE_FIELD_PATHS,
93
...ROOT_MODIFIABLE_FIELD_PATHS,
94
},
95
+ [RumEventType.TRANSITION]: {
96
+ ...USER_CUSTOMIZABLE_FIELD_PATHS,
97
+ ...VIEW_MODIFIABLE_FIELD_PATHS,
98
+ ...ROOT_MODIFIABLE_FIELD_PATHS,
99
+ },
100
}
101
const eventRateLimiters = {
102
[RumEventType.ERROR]: createEventRateLimiter(
βpackages/rum-core/src/rawRumEvent.types.tsβ
@@ -29,6 +29,7 @@ export const RumEventType = {
29
RESOURCE: 'resource',
30
VITAL: 'vital',
31
STREAM: 'stream',
32
+ TRANSITION: 'transition',
33
} as const
34
35
export type RumEventType = (typeof RumEventType)[keyof typeof RumEventType]
0 commit comments