UNPKG

@embrace-io/web-sdk

Version:
21 lines (20 loc) 1.65 kB
//#region src/instrumentations/soft-navigation-performance/SoftNavigationPerformanceInstrumentation/constants.ts const SOFT_NAVIGATION_SPAN_NAME = "Soft Navigation"; const KEY_EMB_SOFT_NAVIGATION_SOURCE = "emb.soft_navigation.source"; const KEY_EMB_SOFT_NAVIGATION_NAVIGATION_ID = "emb.soft_navigation.navigation_id"; const KEY_EMB_SOFT_NAVIGATION_INTERACTION_ID = "emb.soft_navigation.interaction_id"; const KEY_EMB_SOFT_NAVIGATION_START_TIME = "emb.soft_navigation.start_time"; const KEY_EMB_SOFT_NAVIGATION_DURATION = "emb.soft_navigation.duration"; const KEY_EMB_SOFT_NAVIGATION_PAINT_TIME = "emb.soft_navigation.paint_time"; const KEY_EMB_SOFT_NAVIGATION_PRESENTATION_TIME = "emb.soft_navigation.presentation_time"; const KEY_EMB_SOFT_NAVIGATION_SPAN_IDS = "emb.soft_navigation.span_ids"; const KEY_EMB_SOFT_NAVIGATION_LOG_IDS = "emb.soft_navigation.log_ids"; const KEY_EMB_SOFT_NAVIGATION_SPAN_ID_TYPES = "emb.soft_navigation.span_id_types"; const KEY_EMB_SOFT_NAVIGATION_LOG_ID_TYPES = "emb.soft_navigation.log_id_types"; const SOFT_NAVIGATION_SOURCES = { performanceObserver: "performance_observer", polyfill: "polyfill" }; //#endregion export { KEY_EMB_SOFT_NAVIGATION_DURATION, KEY_EMB_SOFT_NAVIGATION_INTERACTION_ID, KEY_EMB_SOFT_NAVIGATION_LOG_IDS, KEY_EMB_SOFT_NAVIGATION_LOG_ID_TYPES, KEY_EMB_SOFT_NAVIGATION_NAVIGATION_ID, KEY_EMB_SOFT_NAVIGATION_PAINT_TIME, KEY_EMB_SOFT_NAVIGATION_PRESENTATION_TIME, KEY_EMB_SOFT_NAVIGATION_SOURCE, KEY_EMB_SOFT_NAVIGATION_SPAN_IDS, KEY_EMB_SOFT_NAVIGATION_SPAN_ID_TYPES, KEY_EMB_SOFT_NAVIGATION_START_TIME, SOFT_NAVIGATION_SOURCES, SOFT_NAVIGATION_SPAN_NAME }; //# sourceMappingURL=constants.js.map