From a2873612eaa1697b7aa4627684d42c8ac9913313 Mon Sep 17 00:00:00 2001 From: joaquin-diaz Date: Mon, 23 Feb 2026 15:51:01 -0300 Subject: [PATCH 1/6] feat: add surface label attribute to logs and spans. Add surface label API --- .gitignore | 2 + .../NoOpPageManager/NoOpPageManager.ts | 6 +++ .../ProxyPageManager/ProxyPageManager.ts | 8 ++++ .../web-sdk/src/api-page/manager/types.ts | 4 ++ packages/web-sdk/src/common/attributes.ts | 6 +++ packages/web-sdk/src/common/index.ts | 2 + packages/web-sdk/src/common/types.ts | 5 +++ packages/web-sdk/src/constants/attributes.ts | 1 + packages/web-sdk/src/constants/index.ts | 1 + packages/web-sdk/src/index.ts | 1 + .../EmbracePageManager.test.ts | 37 ++++++++++++++++++- .../EmbracePageManager/EmbracePageManager.ts | 27 ++++++++++++++ .../src/managers/EmbracePageManager/types.ts | 3 ++ .../PageLogRecordProcessor.test.ts | 21 ++++++++++- .../PageLogRecordProcessor.ts | 11 +++++- .../PageSpanProcessor.test.ts | 22 ++++++++++- .../PageSpanProcessor/PageSpanProcessor.ts | 11 +++++- packages/web-sdk/src/sdk/initSDK.ts | 15 ++++++-- packages/web-sdk/src/sdk/types.ts | 10 ++++- 19 files changed, 184 insertions(+), 9 deletions(-) create mode 100644 packages/web-sdk/src/common/attributes.ts diff --git a/.gitignore b/.gitignore index 350639942..7262f8135 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,5 @@ dist test-results build-test-results .turbo/ +.claude/settings.local.json +.vscode diff --git a/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts b/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts index b6c391228..7a50b85cc 100644 --- a/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts +++ b/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts @@ -11,5 +11,11 @@ export class NoOpPageManager implements PageManager { return ''; } + public setAppSurfaceLabel(_label: string): void {} + + public getAppSurfaceLabel(): string | null { + return null; + } + public clearCurrentRoute(): void {} } diff --git a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts index a91038b6b..80069f7e8 100644 --- a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts +++ b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts @@ -26,6 +26,14 @@ export class ProxyPageManager implements PageManager { return this.getDelegate().getCurrentPageId(); } + public setAppSurfaceLabel(label: string): void { + this.getDelegate().setAppSurfaceLabel(label); + } + + public getAppSurfaceLabel(): string | null { + return this.getDelegate().getAppSurfaceLabel(); + } + public clearCurrentRoute(): void { this.getDelegate().clearCurrentRoute(); } diff --git a/packages/web-sdk/src/api-page/manager/types.ts b/packages/web-sdk/src/api-page/manager/types.ts index b76b7ab25..5667bac0c 100644 --- a/packages/web-sdk/src/api-page/manager/types.ts +++ b/packages/web-sdk/src/api-page/manager/types.ts @@ -12,5 +12,9 @@ export interface PageManager { getCurrentPageId: () => string | null; + setAppSurfaceLabel: (label: string) => void; + + getAppSurfaceLabel: () => string | null; + clearCurrentRoute: () => void; } diff --git a/packages/web-sdk/src/common/attributes.ts b/packages/web-sdk/src/common/attributes.ts new file mode 100644 index 000000000..f6583d85e --- /dev/null +++ b/packages/web-sdk/src/common/attributes.ts @@ -0,0 +1,6 @@ +import { KEY_APP_SURFACE_LABEL } from '../constants/index.ts'; + +// These attributes are exposed in the public API for users to use in the attributes scrubber +export const attributes = { + pageLabel: KEY_APP_SURFACE_LABEL, +}; diff --git a/packages/web-sdk/src/common/index.ts b/packages/web-sdk/src/common/index.ts index 6283b0289..ce97bf862 100644 --- a/packages/web-sdk/src/common/index.ts +++ b/packages/web-sdk/src/common/index.ts @@ -1,6 +1,8 @@ export type { AttributeScrubber, PathnameDocument, + TitleDocument, URLDocument, VisibilityStateDocument, } from './types.ts'; +export { attributes } from './attributes.ts'; diff --git a/packages/web-sdk/src/common/types.ts b/packages/web-sdk/src/common/types.ts index 03f1c501a..f89b5a763 100644 --- a/packages/web-sdk/src/common/types.ts +++ b/packages/web-sdk/src/common/types.ts @@ -13,6 +13,11 @@ export interface PathnameDocument { pathname: string; } +// Useful for testing so that we can pass in a document-like object and change its title +export interface TitleDocument { + title: string; +} + export interface AttributeScrubber { key: string; scrub: (value: string) => string; diff --git a/packages/web-sdk/src/constants/attributes.ts b/packages/web-sdk/src/constants/attributes.ts index 955ccba45..035a76b41 100644 --- a/packages/web-sdk/src/constants/attributes.ts +++ b/packages/web-sdk/src/constants/attributes.ts @@ -30,6 +30,7 @@ export const KEY_EMB_MAX_PENDING_SPANS_REACHED = // to be consistent with mobile where we use 'app.surface.*' for screen names and ids export const KEY_EMB_PAGE_PATH = 'app.surface.name'; export const KEY_EMB_PAGE_ID = 'app.surface.id'; +export const KEY_APP_SURFACE_LABEL = 'app.surface.label'; export enum EMB_TYPES { Session = 'ux.session', diff --git a/packages/web-sdk/src/constants/index.ts b/packages/web-sdk/src/constants/index.ts index 9f802548d..28c143e1b 100644 --- a/packages/web-sdk/src/constants/index.ts +++ b/packages/web-sdk/src/constants/index.ts @@ -17,6 +17,7 @@ export { KEY_EMB_NAVIGATION_SOURCE, KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH, + KEY_APP_SURFACE_LABEL, KEY_EMB_REFERRER_URL, KEY_EMB_SDK_STARTUP_DURATION, KEY_EMB_SESSION_NUMBER, diff --git a/packages/web-sdk/src/index.ts b/packages/web-sdk/src/index.ts index 0babada25..c08ee953d 100644 --- a/packages/web-sdk/src/index.ts +++ b/packages/web-sdk/src/index.ts @@ -6,6 +6,7 @@ export { session } from './api-sessions/index.ts'; export type { ExtendedSpan } from './api-traces/index.ts'; export { trace } from './api-traces/index.ts'; export { user } from './api-users/index.ts'; +export { attributes } from './common/index.ts'; export { getNavigationInstrumentation } from './instrumentations/index.ts'; export type { DynamicConfigManager, DynamicSDKConfig } from './sdk/index.ts'; export { initSDK } from './sdk/index.ts'; diff --git a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts index 75290a28a..14709b6aa 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts @@ -2,6 +2,7 @@ import * as chai from 'chai'; import sinonChai from 'sinon-chai'; import { UUID_PATTERN } from '../../../tests/utils/constants.ts'; import type { Route } from '../../api-page/index.ts'; +import type { TitleDocument } from '../../common/index.ts'; import { EmbracePageManager } from './EmbracePageManager.ts'; chai.use(sinonChai); @@ -9,9 +10,11 @@ const { expect } = chai; describe('EmbracePageManager', () => { let pageManager: EmbracePageManager; + let mockDocument: TitleDocument; beforeEach(() => { - pageManager = new EmbracePageManager(); + mockDocument = { title: '' }; + pageManager = new EmbracePageManager({ titleDocument: mockDocument }); }); it('should initialize with null values', () => { @@ -72,4 +75,36 @@ describe('EmbracePageManager', () => { expect(initialPageId).to.equal(secondPageId); }); + + it('should set and get custom app surface label', () => { + pageManager.setAppSurfaceLabel('my-custom-label'); + expect(pageManager.getAppSurfaceLabel()).to.equal('my-custom-label'); + }); + + it('should fallback to document.title when custom label is not set', () => { + mockDocument.title = 'My Page Title'; + expect(pageManager.getAppSurfaceLabel()).to.equal('My Page Title'); + }); + + it('should not fallback to document.title when fallback is disabled', () => { + const customPageManager = new EmbracePageManager({ + disableDocumentTitleFallback: true, + titleDocument: mockDocument, + }); + mockDocument.title = 'My Page Title'; + void expect(customPageManager.getAppSurfaceLabel()).to.be.null; + }); + + it('should prefer custom label over document.title fallback', () => { + mockDocument.title = 'My Page Title'; + pageManager.setAppSurfaceLabel('custom-label'); + expect(pageManager.getAppSurfaceLabel()).to.equal('custom-label'); + }); + + it('should clear custom label on routing', () => { + mockDocument.title = 'My Page Title'; + pageManager.setAppSurfaceLabel('custom-label'); + pageManager.clearCurrentRoute(); + expect(pageManager.getAppSurfaceLabel()).to.equal('My Page Title'); + }); }); diff --git a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts index f28737bf9..be5dce7a2 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts @@ -1,14 +1,40 @@ import type { PageManager, Route } from '../../api-page/index.ts'; +import type { TitleDocument } from '../../common/index.ts'; import { generateUUID } from '../../utils/index.ts'; +import type { EmbracePageManagerArgs } from './types.ts'; export class EmbracePageManager implements PageManager { private _currentRoute: Route | null = null; private _currentPageId: string | null = null; + private _customAppSurfaceLabel: string | null = null; + private readonly _titleDocument: TitleDocument | undefined; + private readonly _disableDocumentTitleFallback: boolean; + + public constructor({ + disableDocumentTitleFallback, + titleDocument = window.document, + }: EmbracePageManagerArgs = {}) { + this._disableDocumentTitleFallback = disableDocumentTitleFallback ?? false; + this._titleDocument = titleDocument; + } public getCurrentPageId = (): string | null => this._currentPageId; public getCurrentRoute = () => this._currentRoute; + public setAppSurfaceLabel = (label: string): void => { + this._customAppSurfaceLabel = label; + }; + + public getAppSurfaceLabel = (): string | null => { + return ( + this._customAppSurfaceLabel || + (this._disableDocumentTitleFallback || !this._titleDocument + ? null + : this._titleDocument.title) + ); + }; + public setCurrentRoute = (route: Route) => { if (!this._currentRoute || this._currentRoute.url !== route.url) { this._currentPageId = generateUUID(); @@ -20,5 +46,6 @@ export class EmbracePageManager implements PageManager { public clearCurrentRoute = () => { this._currentRoute = null; this._currentPageId = null; + this._customAppSurfaceLabel = null; }; } diff --git a/packages/web-sdk/src/managers/EmbracePageManager/types.ts b/packages/web-sdk/src/managers/EmbracePageManager/types.ts index 11093398c..7d0fb166c 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/types.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/types.ts @@ -1,9 +1,12 @@ import type { DiagLogger } from '@opentelemetry/api'; +import type { TitleDocument } from '../../common/index.ts'; import type { EMB_NAVIGATION_INSTRUMENTATIONS } from '../../constants/index.ts'; export interface EmbracePageManagerArgs { diag?: DiagLogger; shouldCleanupPathOptionsFromRouteName?: boolean; + disableDocumentTitleFallback?: boolean; + titleDocument?: TitleDocument; } export interface SetCurrentRouteSpanOptions { diff --git a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts index cbf369d6b..1cd61fb8a 100644 --- a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts +++ b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts @@ -4,7 +4,11 @@ import type { InMemoryLogRecordExporter } from '@opentelemetry/sdk-logs'; import * as chai from 'chai'; import { setupTestLogExporter } from '../../../tests/utils/index.ts'; import type { PageManager, Route } from '../../api-page/index.ts'; -import { KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH } from '../../constants/index.ts'; +import { + KEY_APP_SURFACE_LABEL, + KEY_EMB_PAGE_ID, + KEY_EMB_PAGE_PATH, +} from '../../constants/index.ts'; import { EmbracePageManager } from '../../managers/index.ts'; import { PageLogRecordProcessor } from './PageLogRecordProcessor.ts'; @@ -49,6 +53,21 @@ describe('PageLogRecordProcessor', () => { pageManager.getCurrentPageId(), ); expect(log.attributes[KEY_EMB_PAGE_PATH]).to.equal('/products/:id'); + void expect(log.attributes[KEY_APP_SURFACE_LABEL]).to.be.undefined; + }); + + it('should attach custom label when available', () => { + pageManager.setCurrentRoute(mockRoute); + pageManager.setAppSurfaceLabel('CustomLabel'); + + logger.emit({ + body: 'some log', + }); + + const finishedLogs = memoryExporter.getFinishedLogRecords(); + const log = finishedLogs[finishedLogs.length - 1]; + + expect(log.attributes[KEY_APP_SURFACE_LABEL]).to.equal('CustomLabel'); }); it('should not override page attributes', () => { diff --git a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts index c8c937bcf..ad7c6af37 100644 --- a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts +++ b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts @@ -1,6 +1,10 @@ import type { LogRecordProcessor, SdkLogRecord } from '@opentelemetry/sdk-logs'; import type { PageManager } from '../../api-page/index.ts'; -import { KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH } from '../../constants/index.ts'; +import { + KEY_APP_SURFACE_LABEL, + KEY_EMB_PAGE_ID, + KEY_EMB_PAGE_PATH, +} from '../../constants/index.ts'; import type { PageLogRecordProcessorArgs } from './types.ts'; export class PageLogRecordProcessor implements LogRecordProcessor { @@ -33,6 +37,11 @@ export class PageLogRecordProcessor implements LogRecordProcessor { this._pageManager.getCurrentPageId(), ); } + + const appSurfaceLabel = this._pageManager.getAppSurfaceLabel(); + if (appSurfaceLabel) { + logRecord.setAttribute(KEY_APP_SURFACE_LABEL, appSurfaceLabel); + } } // no-op diff --git a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts index 7a3d30002..1ce038ee2 100644 --- a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts +++ b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts @@ -4,7 +4,11 @@ import type { InMemorySpanExporter } from '@opentelemetry/sdk-trace-web'; import * as chai from 'chai'; import { setupTestTraceExporter } from '../../../tests/utils/index.ts'; import type { PageManager, Route } from '../../api-page/index.ts'; -import { KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH } from '../../constants/index.ts'; +import { + KEY_APP_SURFACE_LABEL, + KEY_EMB_PAGE_ID, + KEY_EMB_PAGE_PATH, +} from '../../constants/index.ts'; import { EmbracePageManager } from '../../managers/index.ts'; import { PageSpanProcessor } from './PageSpanProcessor.ts'; @@ -50,6 +54,22 @@ describe('PageSpanProcessor', () => { expect(readableSpan.attributes[KEY_EMB_PAGE_PATH]).to.equal( '/products/:id', ); + void expect(readableSpan.attributes[KEY_APP_SURFACE_LABEL]).to.be.undefined; + }); + + it('should attach custom label when available', () => { + pageManager.setCurrentRoute(mockRoute); + pageManager.setAppSurfaceLabel('SpanLabel'); + + const span = tracer.startSpan('test-span-label'); + span.end(); + + const finishedSpans = memoryExporter.getFinishedSpans(); + const readableSpan = finishedSpans[finishedSpans.length - 1]; + + expect(readableSpan.attributes[KEY_APP_SURFACE_LABEL]).to.equal( + 'SpanLabel', + ); }); it('should not attach page attributes when route is null', () => { diff --git a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts index 0f32c82c9..3c10c838d 100644 --- a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts +++ b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts @@ -1,6 +1,10 @@ import type { ReadableSpan, SpanProcessor } from '@opentelemetry/sdk-trace-web'; import type { PageManager } from '../../api-page/index.ts'; -import { KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH } from '../../constants/index.ts'; +import { + KEY_APP_SURFACE_LABEL, + KEY_EMB_PAGE_ID, + KEY_EMB_PAGE_PATH, +} from '../../constants/index.ts'; import type { PageSpanProcessorArgs } from './types.ts'; export class PageSpanProcessor implements SpanProcessor { @@ -31,6 +35,11 @@ export class PageSpanProcessor implements SpanProcessor { span.attributes[KEY_EMB_PAGE_PATH] = currentRoute.path; span.attributes[KEY_EMB_PAGE_ID] = currentPageId; } + + const appSurfaceLabel = this._pageManager.getAppSurfaceLabel(); + if (appSurfaceLabel) { + span.attributes[KEY_APP_SURFACE_LABEL] = appSurfaceLabel; + } } public onStart(this: void): void { diff --git a/packages/web-sdk/src/sdk/initSDK.ts b/packages/web-sdk/src/sdk/initSDK.ts index 05f243efd..039ced511 100644 --- a/packages/web-sdk/src/sdk/initSDK.ts +++ b/packages/web-sdk/src/sdk/initSDK.ts @@ -96,6 +96,7 @@ export const initSDK = ( registerGlobally = true, blockNetworkSpanForwarding = false, restrictedProtocols = new Set(['file:']), + disableDocumentTitleFallback = false, }: SDKInitConfig = {} as SDKInitConfig, ): SDKControl | false => { try { @@ -240,7 +241,10 @@ export const initSDK = ( ); } - const pageManager = setupPage({ registerGlobally }); + const pageManager = setupPage({ + disableDocumentTitleFallback, + registerGlobally, + }); const { tracerProvider, embraceTraceManager } = setupTraces({ resource: resourceWithWebSDKAttributes, @@ -485,8 +489,13 @@ const setupLogs = ({ return { loggerProvider, embraceLogManager }; }; -const setupPage = ({ registerGlobally }: SetupPageArgs) => { - const embracePageManager = new EmbracePageManager(); +const setupPage = ({ + disableDocumentTitleFallback, + registerGlobally, +}: SetupPageArgs) => { + const embracePageManager = new EmbracePageManager({ + disableDocumentTitleFallback, + }); if (registerGlobally) { page.setGlobalPageManager(embracePageManager); diff --git a/packages/web-sdk/src/sdk/types.ts b/packages/web-sdk/src/sdk/types.ts index 3fb50d424..e173f2851 100644 --- a/packages/web-sdk/src/sdk/types.ts +++ b/packages/web-sdk/src/sdk/types.ts @@ -17,7 +17,7 @@ import type { PageManager } from '../api-page/index.ts'; import type { SpanSessionManager } from '../api-sessions/index.ts'; import type { TraceManager } from '../api-traces/index.ts'; import type { UserManager } from '../api-users/index.ts'; -import type { AttributeScrubber } from '../common/index.ts'; +import type { AttributeScrubber, TitleDocument } from '../common/index.ts'; import type { ClicksInstrumentationArgs, DocumentLoadInstrumentationConfig, @@ -223,6 +223,13 @@ type BaseSDKInitConfig = { * **default**: new Set(['file:']) */ restrictedProtocols?: Set; + + /** + * disableDocumentTitleFallback disables the fallback to document.title for app.surface.label when a custom label is not set. + * + * **default**: false + */ + disableDocumentTitleFallback?: boolean; }; /* @@ -328,6 +335,7 @@ export interface SetupLogsArgs { } export interface SetupPageArgs { + disableDocumentTitleFallback?: boolean; registerGlobally?: boolean; } From 95918bcc432ac14777aca22d2f522ba258b619eb Mon Sep 17 00:00:00 2001 From: joaquin-diaz Date: Mon, 23 Feb 2026 17:30:39 -0300 Subject: [PATCH 2/6] chore: update golden files with new surface label attribute --- .../src/api-page/api/PageAPI/PageAPI.test.ts | 4 + .../ProxyPageManager/ProxyPageManager.test.ts | 2 + packages/web-sdk/src/common/index.ts | 2 +- packages/web-sdk/src/constants/index.ts | 2 +- packages/web-sdk/src/sdk/types.ts | 2 +- ...rbopack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 604 ++++++++------- ...romium-next-15-turbopack-app-send-log.json | 22 +- ...hromium-next-15-turbopack-app-session.json | 564 ++++++++------ ...webpack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 688 ++++++++++------- ...chromium-next-15-webpack-app-send-log.json | 22 +- .../chromium-next-15-webpack-app-session.json | 590 ++++++++------ ...next-16-app-handle-204-with-body-logs.json | 22 +- ...t-16-app-handle-204-with-body-session.json | 608 ++++++++------- .../chromium-next-16-app-send-log.json | 22 +- .../chromium-next-16-app-session.json | 516 +++++++------ ...te-6-es2015-handle-204-with-body-logs.json | 22 +- ...6-es2015-handle-204-with-body-session.json | 186 +++-- .../chromium-vite-6-es2015-send-log.json | 22 +- .../chromium-vite-6-es2015-session.json | 142 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 22 +- ...7-es2015-handle-204-with-body-session.json | 182 +++-- .../chromium-vite-7-es2015-send-log.json | 22 +- .../chromium-vite-7-es2015-session.json | 142 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 22 +- ...5-es2015-handle-204-with-body-session.json | 180 +++-- .../chromium-webpack-5-es2015-send-log.json | 22 +- .../chromium-webpack-5-es2015-session.json | 136 ++-- ...rbopack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 621 ++++++++------- ...irefox-next-15-turbopack-app-send-log.json | 22 +- ...firefox-next-15-turbopack-app-session.json | 564 ++++++++------ ...webpack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 676 +++++++++------- .../firefox-next-15-webpack-app-send-log.json | 22 +- .../firefox-next-15-webpack-app-session.json | 670 +++++++++------- ...next-16-app-handle-204-with-body-logs.json | 22 +- ...t-16-app-handle-204-with-body-session.json | 606 ++++++++------- .../firefox-next-16-app-send-log.json | 22 +- .../firefox-next-16-app-session.json | 651 ++++++++-------- ...te-6-es2015-handle-204-with-body-logs.json | 22 +- ...6-es2015-handle-204-with-body-session.json | 188 +++-- .../firefox-vite-6-es2015-send-log.json | 22 +- .../firefox-vite-6-es2015-session.json | 138 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 22 +- ...7-es2015-handle-204-with-body-session.json | 188 +++-- .../firefox-vite-7-es2015-send-log.json | 22 +- .../firefox-vite-7-es2015-session.json | 144 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 22 +- ...5-es2015-handle-204-with-body-session.json | 186 +++-- .../firefox-webpack-5-es2015-send-log.json | 22 +- .../firefox-webpack-5-es2015-session.json | 142 ++-- ...rbopack-app-handle-204-with-body-logs.json | 20 +- ...pack-app-handle-204-with-body-session.json | 722 ++++++++++++------ ...webkit-next-15-turbopack-app-send-log.json | 20 +- .../webkit-next-15-turbopack-app-session.json | 540 +++++++------ ...webpack-app-handle-204-with-body-logs.json | 20 +- ...pack-app-handle-204-with-body-session.json | 628 ++++++++------- .../webkit-next-15-webpack-app-send-log.json | 20 +- .../webkit-next-15-webpack-app-session.json | 648 +++++++++------- ...next-16-app-handle-204-with-body-logs.json | 20 +- ...t-16-app-handle-204-with-body-session.json | 570 ++++++++------ .../webkit-next-16-app-send-log.json | 20 +- .../webkit-next-16-app-session.json | 514 +++++++------ ...te-6-es2015-handle-204-with-body-logs.json | 20 +- ...6-es2015-handle-204-with-body-session.json | 182 +++-- .../webkit-vite-6-es2015-send-log.json | 20 +- .../webkit-vite-6-es2015-session.json | 136 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 20 +- ...7-es2015-handle-204-with-body-session.json | 182 +++-- .../webkit-vite-7-es2015-send-log.json | 20 +- .../webkit-vite-7-es2015-session.json | 136 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 20 +- ...5-es2015-handle-204-with-body-session.json | 180 +++-- .../webkit-webpack-5-es2015-send-log.json | 20 +- .../webkit-webpack-5-es2015-session.json | 134 ++-- tests/integration/tests/e2e/cdn-tests.spec.ts | 6 +- 78 files changed, 8515 insertions(+), 6155 deletions(-) diff --git a/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts b/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts index b7327a6f2..8f64ed699 100644 --- a/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts +++ b/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts @@ -40,6 +40,8 @@ describe('PageAPI', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), + setAppSurfaceLabel: sinon.stub(), + getAppSurfaceLabel: sinon.stub(), }; pageAPI.setGlobalPageManager(mockPageManager); const pageManager = pageAPI.getPageManager(); @@ -55,6 +57,8 @@ describe('PageAPI', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), + setAppSurfaceLabel: sinon.stub(), + getAppSurfaceLabel: sinon.stub(), }; pageAPI.setGlobalPageManager(mockPageManager); diff --git a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts index bafb058b1..55d8cfbf3 100644 --- a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts +++ b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts @@ -21,6 +21,8 @@ describe('ProxyPageManager', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), + setAppSurfaceLabel: sinon.stub(), + getAppSurfaceLabel: sinon.stub(), }; }); diff --git a/packages/web-sdk/src/common/index.ts b/packages/web-sdk/src/common/index.ts index ce97bf862..7a13cd04f 100644 --- a/packages/web-sdk/src/common/index.ts +++ b/packages/web-sdk/src/common/index.ts @@ -1,3 +1,4 @@ +export { attributes } from './attributes.ts'; export type { AttributeScrubber, PathnameDocument, @@ -5,4 +6,3 @@ export type { URLDocument, VisibilityStateDocument, } from './types.ts'; -export { attributes } from './attributes.ts'; diff --git a/packages/web-sdk/src/constants/index.ts b/packages/web-sdk/src/constants/index.ts index 28c143e1b..1a75c5092 100644 --- a/packages/web-sdk/src/constants/index.ts +++ b/packages/web-sdk/src/constants/index.ts @@ -4,6 +4,7 @@ export { EMB_NAVIGATION_INSTRUMENTATIONS, EMB_STATES, EMB_TYPES, + KEY_APP_SURFACE_LABEL, KEY_EMB_APP_INSTANCE_ID, KEY_EMB_COLD_START, KEY_EMB_ERROR_CODE, @@ -17,7 +18,6 @@ export { KEY_EMB_NAVIGATION_SOURCE, KEY_EMB_PAGE_ID, KEY_EMB_PAGE_PATH, - KEY_APP_SURFACE_LABEL, KEY_EMB_REFERRER_URL, KEY_EMB_SDK_STARTUP_DURATION, KEY_EMB_SESSION_NUMBER, diff --git a/packages/web-sdk/src/sdk/types.ts b/packages/web-sdk/src/sdk/types.ts index e173f2851..4811ff5c6 100644 --- a/packages/web-sdk/src/sdk/types.ts +++ b/packages/web-sdk/src/sdk/types.ts @@ -17,7 +17,7 @@ import type { PageManager } from '../api-page/index.ts'; import type { SpanSessionManager } from '../api-sessions/index.ts'; import type { TraceManager } from '../api-traces/index.ts'; import type { UserManager } from '../api-users/index.ts'; -import type { AttributeScrubber, TitleDocument } from '../common/index.ts'; +import type { AttributeScrubber } from '../common/index.ts'; import type { ClicksInstrumentationArgs, DocumentLoadInstrumentationConfig, diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json index 7dc970159..bb8550c1f 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "52DD56706DE1FFB1C43445390739BBA4" + "stringValue": "D172BED60674BABF1C3A81EA06FF1779" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811580000899902", - "observedTimeUnixNano": "1769811580001000000", + "timeUnixNano": "1771878180529199951", + "observedTimeUnixNano": "1771878180529000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341)\n at s.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585)\n at Proxy. (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026)\n at o (http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335)\n at i2 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144380)\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150466\n at tk (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376)\n at i9 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145613)\n at cu (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172613)\n at ca (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435)" + "stringValue": "Error\n at t.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215)\n at s.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579)\n at Proxy. (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020)\n at o (http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334)\n at i2 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144382)\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150468\n at tk (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378)\n at i9 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145615)\n at cu (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172615)\n at ca (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\":\"15fd21ff52e283c3bb62052de324ad34\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\":\"734e6ec704f57fd3eb85256dd8f38044\",\"Error\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\":\"62daae22085216409a457a21cb79a1b4\",\"Error\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\":\"ea3ef035957877fbf63a62637cdfcc92\",\"Error\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\":\"7f0a703a46bf13f33017d981466478d2\",\"Error\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\":\"f06fd0cd216422bc438c490a646ec9f9\",\"Error\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\":\"9854c0c6494879a068188282e03f6e99\"}" + "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\":\"450f76c7d056bbedd174d43e02bb77aa\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\":\"e37956446879e6a5a36c27f196ea6595\",\"Error\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"Error\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\":\"e1d8154aba2335b6f75749ea66ea412d\",\"Error\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"Error\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"Error\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\":\"da420bfb1f92af1ad511eeef61a12620\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "28905BC6074F8B6FD56F5EF0D2E7F5C2" + "stringValue": "E2FEC3399512987EAF22AC70F36C9F03" } }, { "key": "session.id", "value": { - "stringValue": "13BFC35A4ADF560DF1FC78E52BDEAEA6" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3010/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json index fecdebd49..62180e656 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "93DBD653C09ECA8E45634E761B4F930A" + "stringValue": "D172BED60674BABF1C3A81EA06FF1779" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "c87ff600996b48460e396f1ad7ef8a32", - "spanId": "807d2fb4a54371b7", + "traceId": "d0e843136a6462f86f4f51a5eb8ad6ef", + "spanId": "583da210088e07db", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374154557000000", - "endTimeUnixNano": "1771374155020000000", + "startTimeUnixNano": "1771878180005000000", + "endTimeUnixNano": "1771878180628400000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "BD30843D58E85662B030FA4A5C9A7180" + "stringValue": "2CD8076A9D2CD73A346EE4AC11844CF6" } }, { "key": "emb.tab_id", "value": { - "stringValue": "93DBD653C09ECA8E45634E761B4F930A" + "stringValue": "D172BED60674BABF1C3A81EA06FF1779" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 8 + "intValue": 9 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374154671300049", + "timeUnixNano": "1771878180150399902", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374154558-7262084051528" + "stringValue": "v5-1771878180008-5606696720589" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 28 + "intValue": 36 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 28 + "intValue": 36 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 2.8999999910593033 + "intValue": 8 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 25.100000008940697 + "intValue": 28 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374154677199951", + "timeUnixNano": "1771878180152699951", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374154994600098", + "timeUnixNano": "1771878180525599854", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "213ca85d6f1561f9", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "2d296f2c918bf222", + "parentSpanId": "f23928e8c4dc0125", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374154482699951", - "endTimeUnixNano": "1771374154485899951", + "startTimeUnixNano": "1771878179909999902", + "endTimeUnixNano": "1771878179920999902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -337,13 +343,19 @@ { "key": "http.response_content_length", "value": { - "intValue": 2049 + "intValue": 2045 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7139 + "intValue": 7142 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154482699951", + "timeUnixNano": "1771878179909999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154483699951", + "timeUnixNano": "1771878179912199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154483699951", + "timeUnixNano": "1771878179912199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154483699951", + "timeUnixNano": "1771878179912199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374154482699951", + "timeUnixNano": "1771878179909899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154483899951", + "timeUnixNano": "1771878179912299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154483899951", + "timeUnixNano": "1771878179912399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154485599951", + "timeUnixNano": "1771878179917899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154485899951", + "timeUnixNano": "1771878179920999902", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "6c16316aecff9b40", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "c4b170e6778af052", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487999903", - "endTimeUnixNano": "1771374154494099903", + "startTimeUnixNano": "1771878179923099951", + "endTimeUnixNano": "1771878179929299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -436,13 +448,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3010/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 31288 } }, { @@ -466,19 +478,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 31288 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 31588 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 + "intValue": 31288 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -487,49 +505,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487999903", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154490799903", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154490799903", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154490799903", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154491099903", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154491199903", + "timeUnixNano": "1771878179924999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154493799903", + "timeUnixNano": "1771878179928899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154494099903", + "timeUnixNano": "1771878179929299951", "droppedAttributesCount": 0 } ], @@ -542,18 +560,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "07a011df448aa8df", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "ca80ab6dd7a85d7c", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487799951", - "endTimeUnixNano": "1771374154492799951", + "startTimeUnixNano": "1771878179923100000", + "endTimeUnixNano": "1771878179933500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -565,13 +583,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" + "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 31288 + "intValue": 28388 } }, { @@ -595,19 +613,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 31288 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 31588 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31288 + "intValue": 28388 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -616,49 +640,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487799951", + "timeUnixNano": "1771878179923100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154487799951", + "timeUnixNano": "1771878179925400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154487799951", + "timeUnixNano": "1771878179925400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154487799951", + "timeUnixNano": "1771878179925400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154487799951", + "timeUnixNano": "1771878179925600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154490399951", + "timeUnixNano": "1771878179925600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154492599951", + "timeUnixNano": "1771878179932700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154492799951", + "timeUnixNano": "1771878179933500000", "droppedAttributesCount": 0 } ], @@ -671,18 +695,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "8cf2429e18cc40ac", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "a160677819727cba", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487700000", - "endTimeUnixNano": "1771374154495400000", + "startTimeUnixNano": "1771878179923200000", + "endTimeUnixNano": "1771878179938200000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -694,13 +718,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" + "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 + "intValue": 983 } }, { @@ -730,13 +754,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 983 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 1283 } }, { @@ -744,6 +768,12 @@ "value": { "intValue": 2961 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -751,49 +781,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487700000", + "timeUnixNano": "1771878179923200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154491300000", + "timeUnixNano": "1771878179927000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154491300000", + "timeUnixNano": "1771878179927000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154491300000", + "timeUnixNano": "1771878179927000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154491300000", + "timeUnixNano": "1771878179927300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154491300000", + "timeUnixNano": "1771878179927300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154494800000", + "timeUnixNano": "1771878179937400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154495400000", + "timeUnixNano": "1771878179938200000", "droppedAttributesCount": 0 } ], @@ -806,18 +836,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "5366b81ce7a9425e", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "1b04f1cf2bbf7b8f", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487799903", - "endTimeUnixNano": "1771374154496099903", + "startTimeUnixNano": "1771878179923099902", + "endTimeUnixNano": "1771878179939199902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -829,25 +859,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-279119dcb7a4dfd6.js" + "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4013 + "intValue": 2409 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 6046 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -865,19 +895,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4013 + "intValue": 2409 } }, { "key": "http.response.size", "value": { - "intValue": 4313 + "intValue": 2709 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 + "intValue": 6046 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -886,49 +922,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487799903", + "timeUnixNano": "1771878179923099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154487799903", + "timeUnixNano": "1771878179927399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154487799903", + "timeUnixNano": "1771878179927399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154487799903", + "timeUnixNano": "1771878179927399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154487799903", + "timeUnixNano": "1771878179927599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154492899903", + "timeUnixNano": "1771878179927799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154495499903", + "timeUnixNano": "1771878179937999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154496099903", + "timeUnixNano": "1771878179939199902", "droppedAttributesCount": 0 } ], @@ -941,18 +977,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "703e49c49e20ac01", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "86d0483dc5773de5", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487700049", - "endTimeUnixNano": "1771374154496200049", + "startTimeUnixNano": "1771878179923199902", + "endTimeUnixNano": "1771878179953899902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -964,25 +1000,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" + "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 2405 + "intValue": 24460 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6034 + "intValue": 95495 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -1000,19 +1036,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 2405 + "intValue": 24460 } }, { "key": "http.response.size", "value": { - "intValue": 2705 + "intValue": 24760 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6034 + "intValue": 95495 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1021,49 +1063,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179923199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154491400049", + "timeUnixNano": "1771878179927899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154491400049", + "timeUnixNano": "1771878179927899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154491400049", + "timeUnixNano": "1771878179927899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154491700049", + "timeUnixNano": "1771878179928199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154491700049", + "timeUnixNano": "1771878179928399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154495700049", + "timeUnixNano": "1771878179940399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154496200049", + "timeUnixNano": "1771878179953899902", "droppedAttributesCount": 0 } ], @@ -1076,18 +1118,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "1f79634c36352f09", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "b06d4efd9dee2dfe", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487700049", - "endTimeUnixNano": "1771374154496900049", + "startTimeUnixNano": "1771878179923199902", + "endTimeUnixNano": "1771878179964299902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1099,19 +1141,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7525 + "intValue": 75770 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32839 + "intValue": 253440 } }, { @@ -1135,19 +1177,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7525 + "intValue": 75770 } }, { "key": "http.response.size", "value": { - "intValue": 7825 + "intValue": 76070 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32839 + "intValue": 253440 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1156,49 +1204,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179923199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179927699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179927699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179927699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154487700049", + "timeUnixNano": "1771878179928099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154493900049", + "timeUnixNano": "1771878179928299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154496400049", + "timeUnixNano": "1771878179941199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154496900049", + "timeUnixNano": "1771878179964299902", "droppedAttributesCount": 0 } ], @@ -1211,18 +1259,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "891bd4bfdae52328", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "bb2e4772ab0da8e2", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487599951", - "endTimeUnixNano": "1771374154499299951", + "startTimeUnixNano": "1771878179923200049", + "endTimeUnixNano": "1771878179939200049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1234,19 +1282,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95481 + "intValue": 10054 } }, { @@ -1270,19 +1318,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response.size", "value": { - "intValue": 24755 + "intValue": 4309 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95481 + "intValue": 10054 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1291,49 +1345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487599951", + "timeUnixNano": "1771878179923200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154491599951", + "timeUnixNano": "1771878179923200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154491599951", + "timeUnixNano": "1771878179923200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154491599951", + "timeUnixNano": "1771878179923200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154491699951", + "timeUnixNano": "1771878179923200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154491699951", + "timeUnixNano": "1771878179929300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154497599951", + "timeUnixNano": "1771878179938000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154499299951", + "timeUnixNano": "1771878179939200049", "droppedAttributesCount": 0 } ], @@ -1346,18 +1400,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "69b9618349aff6d0", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "b62e3c9cc4484a86", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487400000", - "endTimeUnixNano": "1771374154505700000", + "startTimeUnixNano": "1771878179923099951", + "endTimeUnixNano": "1771878179948899951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1369,19 +1423,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/1becba464fa63580.js" + "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75774 + "intValue": 7535 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253416 + "intValue": 32852 } }, { @@ -1405,19 +1459,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 75774 + "intValue": 7535 } }, { "key": "http.response.size", "value": { - "intValue": 76074 + "intValue": 7835 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253416 + "intValue": 32852 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1426,49 +1486,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487400000", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154491200000", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154491200000", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154491200000", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154491400000", + "timeUnixNano": "1771878179923099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154491500000", + "timeUnixNano": "1771878179933699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154497800000", + "timeUnixNano": "1771878179945499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154505700000", + "timeUnixNano": "1771878179948899951", "droppedAttributesCount": 0 } ], @@ -1481,18 +1541,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "14233a75195ce2d2", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "328bc7df4b18a301", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154487500000", - "endTimeUnixNano": "1771374154497500000", + "startTimeUnixNano": "1771878179923100097", + "endTimeUnixNano": "1771878179949500097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1504,13 +1564,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" + "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1020 + "intValue": 1019 } }, { @@ -1534,19 +1594,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1020 + "intValue": 1019 } }, { "key": "http.response.size", "value": { - "intValue": 1320 + "intValue": 1319 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1020 + "intValue": 1019 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1555,49 +1621,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154487500000", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154487500000", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154487500000", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154487500000", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154487500000", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154496300000", + "timeUnixNano": "1771878179939400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154497200000", + "timeUnixNano": "1771878179949200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154497500000", + "timeUnixNano": "1771878179949500097", "droppedAttributesCount": 0 } ], @@ -1610,18 +1676,18 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "cb1ae567e8855e3e", - "parentSpanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "8bdcdee174780ed9", + "parentSpanId": "f23928e8c4dc0125", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154488399903", - "endTimeUnixNano": "1771374154505099903", + "startTimeUnixNano": "1771878179923100097", + "endTimeUnixNano": "1771878179971700098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1633,19 +1699,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/54dd44d7c8bba4c2.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56598 + "intValue": 56807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 205926 + "intValue": 206948 } }, { @@ -1669,19 +1735,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 56598 + "intValue": 56807 } }, { "key": "http.response.size", "value": { - "intValue": 56898 + "intValue": 57107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 205926 + "intValue": 206948 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1690,49 +1762,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154488399903", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154488399903", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154488399903", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154488399903", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154488399903", + "timeUnixNano": "1771878179923100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154496399903", + "timeUnixNano": "1771878179938400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154500099903", + "timeUnixNano": "1771878179954100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154505099903", + "timeUnixNano": "1771878179971700098", "droppedAttributesCount": 0 } ], @@ -1745,17 +1817,17 @@ "flags": 257 }, { - "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", - "spanId": "7c0fd367b417b259", + "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", + "spanId": "f23928e8c4dc0125", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374154481899903", - "endTimeUnixNano": "1771374154536699903", + "startTimeUnixNano": "1771878179910100000", + "endTimeUnixNano": "1771878179984900000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1775,56 +1847,68 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878179910100000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374154495399903", + "timeUnixNano": "1771878179943000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374154495399903", + "timeUnixNano": "1771878179943000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374154495499903", + "timeUnixNano": "1771878179943000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374154536599903", + "timeUnixNano": "1771878179984900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374154536699903", + "timeUnixNano": "1771878179984900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374154536699903", + "timeUnixNano": "1771878179984900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771374154509899903", + "timeUnixNano": "1771878179946000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771374154509899903", + "timeUnixNano": "1771878179946000000", "droppedAttributesCount": 0 } ], @@ -1845,12 +1929,12 @@ }, "spans": [ { - "traceId": "49f14a8e8bdc93a3e47837751420eed4", - "spanId": "674858bf1e8bc46b", + "traceId": "b2a421ba4c87db516c36492ac66af40b", + "spanId": "601ffe51e0d9a011", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374154673000000", - "endTimeUnixNano": "1771374154678000000", + "startTimeUnixNano": "1771878180151000000", + "endTimeUnixNano": "1771878180180000000", "attributes": [ { "key": "component", @@ -1873,7 +1957,7 @@ { "key": "session.id", "value": { - "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" + "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" } }, { @@ -1945,6 +2029,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1952,49 +2042,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154674099903", + "timeUnixNano": "1771878180151700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154677399903", + "timeUnixNano": "1771878180178700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154677399903", + "timeUnixNano": "1771878180178700049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json index c560825ae..2fe262c67 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "0B25BB3E29C7133F26FCB8317EB2FA11" + "stringValue": "60254796F39B3FFD70C40D784D860AC8" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811576318300049", - "observedTimeUnixNano": "1769811576318000000", + "timeUnixNano": "1771878175204000000", + "observedTimeUnixNano": "1771878175204000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341)\n at s.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585)\n at Proxy. (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026)\n at o (http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335)\n at i2 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144380)\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150466\n at tk (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376)\n at i9 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145613)\n at cu (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172613)\n at ca (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435)" + "stringValue": "Error\n at t.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215)\n at s.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579)\n at Proxy. (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020)\n at o (http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334)\n at i2 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144382)\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150468\n at tk (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378)\n at i9 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145615)\n at cu (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172615)\n at ca (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\":\"15fd21ff52e283c3bb62052de324ad34\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\":\"734e6ec704f57fd3eb85256dd8f38044\",\"Error\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\":\"ea3ef035957877fbf63a62637cdfcc92\",\"Error\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\":\"62daae22085216409a457a21cb79a1b4\",\"Error\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\":\"7f0a703a46bf13f33017d981466478d2\",\"Error\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\":\"f06fd0cd216422bc438c490a646ec9f9\",\"Error\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\":\"9854c0c6494879a068188282e03f6e99\"}" + "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\":\"450f76c7d056bbedd174d43e02bb77aa\",\"Error\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\":\"e37956446879e6a5a36c27f196ea6595\",\"Error\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"Error\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"Error\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\":\"e1d8154aba2335b6f75749ea66ea412d\",\"Error\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\":\"da420bfb1f92af1ad511eeef61a12620\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "B675B5B604DFDAA73C9E54F51EB877CF" + "stringValue": "F117102D32321E49CD7C622B0FC8E198" } }, { "key": "session.id", "value": { - "stringValue": "A23A40C255C5A396539CC5E6858356EC" + "stringValue": "6AEEC37160BC661DEBF050F16CFE0873" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3010/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json index ac970ce71..a351cc661 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "BC349C72EE3EB33D6A165918A43B532F" + "stringValue": "F1393C5AF5E826591C4A84A37DC0469F" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "194a9b07a86802a53b07eb4bf69b0972", - "spanId": "031b5134e2d02c09", + "traceId": "6bd0a650eed10cdf571c30af30ea0125", + "spanId": "196609553b9c963b", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811575898000000", - "endTimeUnixNano": "1769811576014800000", + "startTimeUnixNano": "1771878174480000000", + "endTimeUnixNano": "1771878174634200000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "5EE0DBB8F2B0169F85025E4DDCC684F9" + "stringValue": "93142184999233A4A77382B9E37A8B21" } }, { "key": "emb.tab_id", "value": { - "stringValue": "BC349C72EE3EB33D6A165918A43B532F" + "stringValue": "F1393C5AF5E826591C4A84A37DC0469F" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 14 + "intValue": 8 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "df3e571968c312fb", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "16f6f04014605b43", + "parentSpanId": "d0907b8527b6645b", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811575806600098", - "endTimeUnixNano": "1769811575811800098", + "startTimeUnixNano": "1771878174358900049", + "endTimeUnixNano": "1771878174380800049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -201,13 +207,19 @@ { "key": "http.response_content_length", "value": { - "intValue": 2042 + "intValue": 2045 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7139 + "intValue": 7142 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575806600098", + "timeUnixNano": "1771878174358900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575809100098", + "timeUnixNano": "1771878174362800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575809100098", + "timeUnixNano": "1771878174362800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575809100098", + "timeUnixNano": "1771878174362800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811575806600098", + "timeUnixNano": "1771878174358800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575809300098", + "timeUnixNano": "1771878174362900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575809400098", + "timeUnixNano": "1771878174362900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575811500098", + "timeUnixNano": "1771878174370500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575811800098", + "timeUnixNano": "1771878174380800049", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "fdfc8da5f4d4be42", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "3764dd1056e3e8bc", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575813900000", - "endTimeUnixNano": "1769811575819800000", + "startTimeUnixNano": "1771878174380800098", + "endTimeUnixNano": "1771878174395300098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -344,6 +356,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -351,49 +369,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575813900000", + "timeUnixNano": "1771878174380800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575813900000", + "timeUnixNano": "1771878174380800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575813900000", + "timeUnixNano": "1771878174380800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575813900000", + "timeUnixNano": "1771878174380800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575813900000", + "timeUnixNano": "1771878174380800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575817700000", + "timeUnixNano": "1771878174385900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575819200000", + "timeUnixNano": "1771878174394800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575819800000", + "timeUnixNano": "1771878174395300098", "droppedAttributesCount": 0 } ], @@ -406,18 +424,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "72ae4034585861f1", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "7fc7a6b7661f26ab", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814600000", - "endTimeUnixNano": "1769811575821700000", + "startTimeUnixNano": "1771878174381500098", + "endTimeUnixNano": "1771878174400300098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -429,19 +447,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" + "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 2961 + "intValue": 28388 } }, { @@ -453,7 +465,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "blocking" + "stringValue": "non-blocking" } }, { @@ -465,19 +477,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 + "intValue": 28388 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -486,49 +504,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814600000", + "timeUnixNano": "1771878174381500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174388800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174388800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174388800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575818200000", + "timeUnixNano": "1771878174389100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575818700000", + "timeUnixNano": "1771878174389500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575821100000", + "timeUnixNano": "1771878174399600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575821700000", + "timeUnixNano": "1771878174400300098", "droppedAttributesCount": 0 } ], @@ -541,18 +559,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "611b1ab08c80e6dd", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "1ce726b9437c33d7", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814600000", - "endTimeUnixNano": "1769811575821300000", + "startTimeUnixNano": "1771878174381499903", + "endTimeUnixNano": "1771878174406999903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -564,13 +582,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 2409 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 6046 } }, { @@ -594,19 +618,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 2409 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 2709 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 + "intValue": 6046 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -615,49 +645,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814600000", + "timeUnixNano": "1771878174381499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174390399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174390399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575817400000", + "timeUnixNano": "1771878174390399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575818300000", + "timeUnixNano": "1771878174390799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575818900000", + "timeUnixNano": "1771878174390999903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575820700000", + "timeUnixNano": "1771878174405599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575821300000", + "timeUnixNano": "1771878174406999903", "droppedAttributesCount": 0 } ], @@ -670,18 +700,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "9e4794ea9520b29a", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "f5269570be809903", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814499902", - "endTimeUnixNano": "1769811575825699902", + "startTimeUnixNano": "1771878174381299952", + "endTimeUnixNano": "1771878174407799952", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -693,19 +723,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" + "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 2405 + "intValue": 983 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6034 + "intValue": 2961 } }, { @@ -717,7 +747,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "non-blocking" + "stringValue": "blocking" } }, { @@ -729,19 +759,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 2405 + "intValue": 983 } }, { "key": "http.response.size", "value": { - "intValue": 2705 + "intValue": 1283 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6034 + "intValue": 2961 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -750,49 +786,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814499902", + "timeUnixNano": "1771878174381299952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575819199902", + "timeUnixNano": "1771878174388799952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575819199902", + "timeUnixNano": "1771878174388799952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575819199902", + "timeUnixNano": "1771878174388799952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575819599902", + "timeUnixNano": "1771878174389299952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575819999902", + "timeUnixNano": "1771878174389399952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575824799902", + "timeUnixNano": "1771878174405599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575825699902", + "timeUnixNano": "1771878174407799952", "droppedAttributesCount": 0 } ], @@ -805,18 +841,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "f05713963ba93573", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "47f3c08b1348f2b6", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814500049", - "endTimeUnixNano": "1769811575826700049", + "startTimeUnixNano": "1771878174382100000", + "endTimeUnixNano": "1771878174433600000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -828,19 +864,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4012 + "intValue": 75770 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 253440 } }, { @@ -864,19 +900,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4012 + "intValue": 75770 } }, { "key": "http.response.size", "value": { - "intValue": 4312 + "intValue": 76070 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 + "intValue": 253440 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -885,49 +927,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814500049", + "timeUnixNano": "1771878174382100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575814500049", + "timeUnixNano": "1771878174391500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575814500049", + "timeUnixNano": "1771878174391500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575814500049", + "timeUnixNano": "1771878174391500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575814500049", + "timeUnixNano": "1771878174391700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575820400049", + "timeUnixNano": "1771878174391900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575825700049", + "timeUnixNano": "1771878174409000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575826700049", + "timeUnixNano": "1771878174433600000", "droppedAttributesCount": 0 } ], @@ -940,18 +982,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "73a6710d68c0bfca", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "f9a41cf0b8ed35b9", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814399951", - "endTimeUnixNano": "1769811575831799951", + "startTimeUnixNano": "1771878174382000049", + "endTimeUnixNano": "1771878174411600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -963,19 +1005,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95481 + "intValue": 10054 } }, { @@ -999,19 +1041,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response.size", "value": { - "intValue": 24755 + "intValue": 4309 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95481 + "intValue": 10054 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1020,49 +1068,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814399951", + "timeUnixNano": "1771878174382000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575819299951", + "timeUnixNano": "1771878174382000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575819299951", + "timeUnixNano": "1771878174382000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575819299951", + "timeUnixNano": "1771878174382000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575819599951", + "timeUnixNano": "1771878174382000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575820199951", + "timeUnixNano": "1771878174396600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575827399951", + "timeUnixNano": "1771878174409300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575831799951", + "timeUnixNano": "1771878174411600049", "droppedAttributesCount": 0 } ], @@ -1075,18 +1123,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "dcf1d0ee37aea089", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "97f3311ff87a447f", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575814300098", - "endTimeUnixNano": "1769811575837000098", + "startTimeUnixNano": "1771878174381899952", + "endTimeUnixNano": "1771878174413199952", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -1098,19 +1146,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js" + "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75775 + "intValue": 7535 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253416 + "intValue": 32852 } }, { @@ -1134,19 +1182,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 75775 + "intValue": 7535 } }, { "key": "http.response.size", "value": { - "intValue": 76075 + "intValue": 7835 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253416 + "intValue": 32852 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1155,49 +1209,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575814300098", + "timeUnixNano": "1771878174381899952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575819000098", + "timeUnixNano": "1771878174381899952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575819000098", + "timeUnixNano": "1771878174381899952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575819000098", + "timeUnixNano": "1771878174381899952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575819500098", + "timeUnixNano": "1771878174381899952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575819900098", + "timeUnixNano": "1771878174400799952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575827700098", + "timeUnixNano": "1771878174411299952", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575837000098", + "timeUnixNano": "1771878174413199952", "droppedAttributesCount": 0 } ], @@ -1210,18 +1264,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "c17aa5e3b7d6dd4a", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "39dc1a032bb916f7", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575815300000", - "endTimeUnixNano": "1769811575828100000", + "startTimeUnixNano": "1771878174381800098", + "endTimeUnixNano": "1771878174418500098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -1233,19 +1287,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" + "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7525 + "intValue": 24460 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32839 + "intValue": 95495 } }, { @@ -1269,19 +1323,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7525 + "intValue": 24460 } }, { "key": "http.response.size", "value": { - "intValue": 7825 + "intValue": 24760 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32839 + "intValue": 95495 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1290,49 +1350,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575815300000", + "timeUnixNano": "1771878174381800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575815300000", + "timeUnixNano": "1771878174391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575815300000", + "timeUnixNano": "1771878174391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575815300000", + "timeUnixNano": "1771878174391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575815300000", + "timeUnixNano": "1771878174392100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575822400000", + "timeUnixNano": "1771878174392100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575827000000", + "timeUnixNano": "1771878174406400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575828100000", + "timeUnixNano": "1771878174418500098", "droppedAttributesCount": 0 } ], @@ -1345,18 +1405,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "c601839fa191fcc0", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "10b5514524926756", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575815199902", - "endTimeUnixNano": "1769811575829399902", + "startTimeUnixNano": "1771878174381599903", + "endTimeUnixNano": "1771878174419999903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -1368,13 +1428,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" + "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1020 + "intValue": 1019 } }, { @@ -1398,19 +1458,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1020 + "intValue": 1019 } }, { "key": "http.response.size", "value": { - "intValue": 1320 + "intValue": 1319 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1020 + "intValue": 1019 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1419,49 +1485,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575815199902", + "timeUnixNano": "1771878174381599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575815199902", + "timeUnixNano": "1771878174381599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575815199902", + "timeUnixNano": "1771878174381599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575815199902", + "timeUnixNano": "1771878174381599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575815199902", + "timeUnixNano": "1771878174381599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575826699902", + "timeUnixNano": "1771878174408299903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575829199902", + "timeUnixNano": "1771878174419699903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575829399902", + "timeUnixNano": "1771878174419999903", "droppedAttributesCount": 0 } ], @@ -1474,18 +1540,18 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "445f6fcdbadfecf2", - "parentSpanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "451b4a196ef830ab", + "parentSpanId": "d0907b8527b6645b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575815100049", - "endTimeUnixNano": "1769811575834600049", + "startTimeUnixNano": "1771878174381500049", + "endTimeUnixNano": "1771878174433500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -1497,19 +1563,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 49283 + "intValue": 56807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 183550 + "intValue": 206948 } }, { @@ -1533,19 +1599,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 49283 + "intValue": 56807 } }, { "key": "http.response.size", "value": { - "intValue": 49583 + "intValue": 57107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 183550 + "intValue": 206948 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1554,49 +1626,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575815100049", + "timeUnixNano": "1771878174381500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575815100049", + "timeUnixNano": "1771878174381500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575815100049", + "timeUnixNano": "1771878174381500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575815100049", + "timeUnixNano": "1771878174381500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575815100049", + "timeUnixNano": "1771878174381500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575822500049", + "timeUnixNano": "1771878174407300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575828600049", + "timeUnixNano": "1771878174418600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575834600049", + "timeUnixNano": "1771878174433500049", "droppedAttributesCount": 0 } ], @@ -1609,17 +1681,17 @@ "flags": 257 }, { - "traceId": "3466dc320042e13012dca29ffc642798", - "spanId": "e18a8856a6dc05ae", + "traceId": "afd8167f89f1912cf2d52759a5f21a1b", + "spanId": "d0907b8527b6645b", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811575806899902", - "endTimeUnixNano": "1769811575878499902", + "startTimeUnixNano": "1771878174359100000", + "endTimeUnixNano": "1771878174465500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E1D5B6181971C95CF9B86963198F3118" + "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" } }, { @@ -1637,58 +1709,70 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878174359100000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811575822799902", + "timeUnixNano": "1771878174429900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811575822799902", + "timeUnixNano": "1771878174429900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811575822799902", + "timeUnixNano": "1771878174429900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811575878499902", + "timeUnixNano": "1771878174465500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811575878499902", + "timeUnixNano": "1771878174465500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811575878499902", + "timeUnixNano": "1771878174465500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1769811575846899902", + "timeUnixNano": "1771878174435000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811575846899902", + "timeUnixNano": "1771878174435000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json index 6db897b3e..35d322d25 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "9B06B5B559CE3F126D6EF10A7BFD7224" + "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811580235199951", - "observedTimeUnixNano": "1769811580235000000", + "timeUnixNano": "1771878180963600098", + "observedTimeUnixNano": "1771878180963000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660)\n at a.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" + "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870)\n at a.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\":\"db0d46c3ca28c53466d447f145d3d31f\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\":\"f27043cc7214fdbab0262293a0060a16\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"Error\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\":\"9040bed901f1ec37d64a729e40eb25e5\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\":\"ae15458582b5d5019a30fa307e376b50\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\"}" + "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\":\"76b5dab0e72069584d89e0b302279695\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\":\"d035e6671d0c3186ab8408ec8453b89d\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\":\"166e3b7993ce96be2e298450dca31ca8\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\":\"e2f6858a89ef8eeb481256284771da3c\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"Error\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\":\"b7fea7267af0d3b2cb9596810dd712f0\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "EB28A1F9C3B787F2B0B7B1357FF823FE" + "stringValue": "95C107270B2BDEC5004F564C9C079E9F" } }, { "key": "session.id", "value": { - "stringValue": "596160548BCBEC63D1BDB59F70025259" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3012/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json index 7ba65b63a..8e1ee86c7 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "D504EF413B5E294593A103A5E6BAB156" + "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "5744a43b384a03ecae6ed908931b4b44", - "spanId": "c7d7c7ed83417593", + "traceId": "56f68568c27ae9efbae5bd2641ab3630", + "spanId": "cd7c5c7c1c0c19eb", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374154782000000", - "endTimeUnixNano": "1771374155387500000", + "startTimeUnixNano": "1771878180467000000", + "endTimeUnixNano": "1771878181092600000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "BA00EB5E864A39B4CC2D76D058407CDF" + "stringValue": "CEF0D7BF770A5A7741FC7B2D825D8704" } }, { "key": "emb.tab_id", "value": { - "stringValue": "D504EF413B5E294593A103A5E6BAB156" + "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 7 + "intValue": 8 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374154920899902", + "timeUnixNano": "1771878180635399902", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374154784-3989754461869" + "stringValue": "v5-1771878180469-3612198858466" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 24 + "intValue": 108 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 24 + "intValue": 108 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 2.7999999970197678 + "doubleValue": 72.79999995231628 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 21.200000002980232 + "doubleValue": 35.200000047683716 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374154928000000", + "timeUnixNano": "1771878180641000000", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374155345099854", + "timeUnixNano": "1771878180962699951", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "b860fdc90829b754", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "5bf6b1c37429a785", + "parentSpanId": "c15ef06c701573f1", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374154720900049", - "endTimeUnixNano": "1771374154723800049", + "startTimeUnixNano": "1771878180317299951", + "endTimeUnixNano": "1771878180390799951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -337,7 +343,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2055 + "intValue": 2054 } }, { @@ -345,6 +351,12 @@ "value": { "intValue": 6204 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154720900049", + "timeUnixNano": "1771878180317299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154721800049", + "timeUnixNano": "1771878180348499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154721800049", + "timeUnixNano": "1771878180348499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154721800049", + "timeUnixNano": "1771878180348499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374154720800049", + "timeUnixNano": "1771878180317199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154722000049", + "timeUnixNano": "1771878180348699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154722000049", + "timeUnixNano": "1771878180348799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154723600049", + "timeUnixNano": "1771878180389999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154723800049", + "timeUnixNano": "1771878180390799951", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "175571a468e3babb", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "bf12331ae0ecb59e", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725600049", - "endTimeUnixNano": "1771374154729900049", + "startTimeUnixNano": "1771878180391900098", + "endTimeUnixNano": "1771878180401300098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -480,6 +492,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -487,49 +505,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725600049", + "timeUnixNano": "1771878180391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154725600049", + "timeUnixNano": "1771878180391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154725600049", + "timeUnixNano": "1771878180391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154725600049", + "timeUnixNano": "1771878180391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154725600049", + "timeUnixNano": "1771878180391900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154728000049", + "timeUnixNano": "1771878180395800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154729500049", + "timeUnixNano": "1771878180400600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154729900049", + "timeUnixNano": "1771878180401300098", "droppedAttributesCount": 0 } ], @@ -542,18 +560,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "7568b2a7ce8b16d5", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "2494e16c0abc7aab", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726500097", - "endTimeUnixNano": "1771374154731400097", + "startTimeUnixNano": "1771878180393000000", + "endTimeUnixNano": "1771878180402600000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -609,6 +627,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -616,49 +640,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726500097", + "timeUnixNano": "1771878180393000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154729300097", + "timeUnixNano": "1771878180396300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154729300097", + "timeUnixNano": "1771878180396300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154729300097", + "timeUnixNano": "1771878180396300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154729500097", + "timeUnixNano": "1771878180397200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154729600097", + "timeUnixNano": "1771878180397700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154730800097", + "timeUnixNano": "1771878180402000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154731400097", + "timeUnixNano": "1771878180402600000", "droppedAttributesCount": 0 } ], @@ -671,18 +695,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "44142652ca0acf27", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "1152da1c995c586a", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726399902", - "endTimeUnixNano": "1771374154732999902", + "startTimeUnixNano": "1771878180392900049", + "endTimeUnixNano": "1771878180414200049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -744,6 +768,12 @@ "value": { "intValue": 2903 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -751,49 +781,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726399902", + "timeUnixNano": "1771878180392900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154729799902", + "timeUnixNano": "1771878180398300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154729799902", + "timeUnixNano": "1771878180398300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154729799902", + "timeUnixNano": "1771878180398300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154729999902", + "timeUnixNano": "1771878180398700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154729999902", + "timeUnixNano": "1771878180398800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154732699902", + "timeUnixNano": "1771878180408100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154732999902", + "timeUnixNano": "1771878180414200049", "droppedAttributesCount": 0 } ], @@ -806,18 +836,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "833de053ac308c13", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "288293cee7ecdbc3", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726300049", - "endTimeUnixNano": "1771374154733500049", + "startTimeUnixNano": "1771878180392900049", + "endTimeUnixNano": "1771878180422400049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -829,19 +859,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 1841 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -859,19 +895,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 + "intValue": 3567 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -880,49 +922,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180392900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180399000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180399000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180399000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180399200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154731300049", + "timeUnixNano": "1771878180399200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154733300049", + "timeUnixNano": "1771878180410000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154733500049", + "timeUnixNano": "1771878180422400049", "droppedAttributesCount": 0 } ], @@ -935,18 +977,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "23fae50012031275", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "674e8783878a2751", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726300049", - "endTimeUnixNano": "1771374154734000049", + "startTimeUnixNano": "1771878180392899951", + "endTimeUnixNano": "1771878180433399951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -958,25 +1000,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 + "intValue": 54541 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 3567 + "intValue": 173257 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -994,19 +1036,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 + "intValue": 173257 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1015,49 +1063,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726300049", + "timeUnixNano": "1771878180392899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154730000049", + "timeUnixNano": "1771878180398999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154730000049", + "timeUnixNano": "1771878180398999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154730000049", + "timeUnixNano": "1771878180398999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154730200049", + "timeUnixNano": "1771878180399199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154730600049", + "timeUnixNano": "1771878180399199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154733100049", + "timeUnixNano": "1771878180422499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154734000049", + "timeUnixNano": "1771878180433399951", "droppedAttributesCount": 0 } ], @@ -1070,18 +1118,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "6157e1e456830c12", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "134477e34e47f7a9", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726199951", - "endTimeUnixNano": "1771374154739699951", + "startTimeUnixNano": "1771878180392900098", + "endTimeUnixNano": "1771878180416300098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1093,19 +1141,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 172733 + "intValue": 795 } }, { @@ -1129,19 +1171,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 + "intValue": 795 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1150,49 +1198,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726199951", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154726199951", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154726199951", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154726199951", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154726199951", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154730699951", + "timeUnixNano": "1771878180402600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154735399951", + "timeUnixNano": "1771878180416000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154739699951", + "timeUnixNano": "1771878180416300098", "droppedAttributesCount": 0 } ], @@ -1205,18 +1253,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "f512491b52a09bd6", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "bba45b17c45778bf", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154726100097", - "endTimeUnixNano": "1771374154741300097", + "startTimeUnixNano": "1771878180392900098", + "endTimeUnixNano": "1771878180419900098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1228,19 +1276,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 173257 + "intValue": 564 } }, { @@ -1264,19 +1306,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 564 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 864 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 + "intValue": 564 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1285,49 +1333,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154726100097", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154726100097", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154726100097", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154726100097", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154726100097", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154730600097", + "timeUnixNano": "1771878180402900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154735500097", + "timeUnixNano": "1771878180419200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154741300097", + "timeUnixNano": "1771878180419900098", "droppedAttributesCount": 0 } ], @@ -1340,18 +1388,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "0c8791027983e673", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "8b9480edefb09687", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725999902", - "endTimeUnixNano": "1771374154734199902", + "startTimeUnixNano": "1771878180392900098", + "endTimeUnixNano": "1771878180433500098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1363,13 +1411,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 564 + "intValue": 46245 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 172733 } }, { @@ -1393,19 +1447,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 564 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 864 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 564 + "intValue": 172733 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1414,49 +1474,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154731099902", + "timeUnixNano": "1771878180399700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154731099902", + "timeUnixNano": "1771878180399700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154731099902", + "timeUnixNano": "1771878180399700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154731199902", + "timeUnixNano": "1771878180399800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154731299902", + "timeUnixNano": "1771878180399800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154733999902", + "timeUnixNano": "1771878180423900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154734199902", + "timeUnixNano": "1771878180433500098", "droppedAttributesCount": 0 } ], @@ -1469,18 +1529,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "4b0c02680239dea6", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "d4fb7b6173a8afb5", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725999902", - "endTimeUnixNano": "1771374154735799902", + "startTimeUnixNano": "1771878180392900098", + "endTimeUnixNano": "1771878180436700098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1492,13 +1552,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-2a4174a4007a9a69.js" + "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 37762 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 121417 } }, { @@ -1522,19 +1588,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 37762 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 38062 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 + "intValue": 121417 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1543,49 +1615,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154725999902", + "timeUnixNano": "1771878180392900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154733899902", + "timeUnixNano": "1771878180414500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154735699902", + "timeUnixNano": "1771878180432500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154735799902", + "timeUnixNano": "1771878180436700098", "droppedAttributesCount": 0 } ], @@ -1598,18 +1670,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "ad06681170357e2a", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "e738a7213c3ee905", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725900049", - "endTimeUnixNano": "1771374154738000049", + "startTimeUnixNano": "1771878180392900000", + "endTimeUnixNano": "1771878180428100000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1621,19 +1693,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-efb5c652168403df.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20484 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 75206 + "intValue": 876 } }, { @@ -1657,19 +1723,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 20484 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 20784 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 75206 + "intValue": 876 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1678,49 +1750,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154733300049", + "timeUnixNano": "1771878180420200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154737000049", + "timeUnixNano": "1771878180427400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154738000049", + "timeUnixNano": "1771878180428100000", "droppedAttributesCount": 0 } ], @@ -1733,18 +1805,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "f29370d07d4b61db", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "26db675773bb368f", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725900049", - "endTimeUnixNano": "1771374154740300049", + "startTimeUnixNano": "1771878180392900000", + "endTimeUnixNano": "1771878180432300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1756,19 +1828,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 37762 + "intValue": 658 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 121417 + "intValue": 1033 } }, { @@ -1792,19 +1864,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 37762 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 38062 + "intValue": 958 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 121417 + "intValue": 1033 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1813,49 +1891,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154725900049", + "timeUnixNano": "1771878180392900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154732600049", + "timeUnixNano": "1771878180422800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154737400049", + "timeUnixNano": "1771878180431100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154740300049", + "timeUnixNano": "1771878180432300000", "droppedAttributesCount": 0 } ], @@ -1868,18 +1946,18 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "c0ec10bdd370bcda", - "parentSpanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "c860d66bb9c20fbc", + "parentSpanId": "c15ef06c701573f1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374154725999951", - "endTimeUnixNano": "1771374154737299951", + "startTimeUnixNano": "1771878180392799902", + "endTimeUnixNano": "1771878180432899902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -1891,19 +1969,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-5334fee99ab53793.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 656 + "intValue": 20675 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1033 + "intValue": 76090 } }, { @@ -1927,19 +2005,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 656 + "intValue": 20675 } }, { "key": "http.response.size", "value": { - "intValue": 956 + "intValue": 20975 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 + "intValue": 76090 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1948,49 +2032,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154725999951", + "timeUnixNano": "1771878180392799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154725999951", + "timeUnixNano": "1771878180392799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154725999951", + "timeUnixNano": "1771878180392799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154725999951", + "timeUnixNano": "1771878180392799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154725999951", + "timeUnixNano": "1771878180392799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154734599951", + "timeUnixNano": "1771878180416599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154736999951", + "timeUnixNano": "1771878180428999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154737299951", + "timeUnixNano": "1771878180432899902", "droppedAttributesCount": 0 } ], @@ -2003,17 +2087,17 @@ "flags": 257 }, { - "traceId": "75ec470c2c84d922ebef95561067bc91", - "spanId": "1e8f31852eec9f1b", + "traceId": "e4b8e2131e119c359dfdf593d4deefd2", + "spanId": "c15ef06c701573f1", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374154721100000", - "endTimeUnixNano": "1771374154788500000", + "startTimeUnixNano": "1771878180317400049", + "endTimeUnixNano": "1771878180474500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -2033,6 +2117,12 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -2040,55 +2130,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154721100000", + "timeUnixNano": "1771878180317400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374154733200000", + "timeUnixNano": "1771878180421200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374154733200000", + "timeUnixNano": "1771878180421200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374154733200000", + "timeUnixNano": "1771878180421200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374154788500000", + "timeUnixNano": "1771878180474500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374154788500000", + "timeUnixNano": "1771878180474500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374154788500000", + "timeUnixNano": "1771878180474500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771374154745000000", + "timeUnixNano": "1771878180425300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771374154745000000", + "timeUnixNano": "1771878180425300049", "droppedAttributesCount": 0 } ], @@ -2109,12 +2199,12 @@ }, "spans": [ { - "traceId": "6ff12f82682f24ed1529720b062d8b64", - "spanId": "c8fdfd8c60ac4ced", + "traceId": "0ab480d384aba22b4b403ec615e24dd8", + "spanId": "a5c487f96d31ea7d", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374154922000000", - "endTimeUnixNano": "1771374154927000000", + "startTimeUnixNano": "1771878180636000000", + "endTimeUnixNano": "1771878180641000000", "attributes": [ { "key": "component", @@ -2137,7 +2227,7 @@ { "key": "session.id", "value": { - "stringValue": "0B66A772D95E6941F0737592EAD6919D" + "stringValue": "C80A146F593ACFFE80723A509D719307" } }, { @@ -2209,6 +2299,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -2216,49 +2312,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374154923000049", + "timeUnixNano": "1771878180636600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374154924800049", + "timeUnixNano": "1771878180640200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374154924800049", + "timeUnixNano": "1771878180640200098", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json index 7eb5b88f5..163f11ff6 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "95A482054FFDC0DCB7E778F65E05FED1" + "stringValue": "CE48368C2E793249B821425D64B873C2" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811576411199951", - "observedTimeUnixNano": "1769811576411000000", + "timeUnixNano": "1771878175262000000", + "observedTimeUnixNano": "1771878175262000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660)\n at a.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" + "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870)\n at a.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\":\"db0d46c3ca28c53466d447f145d3d31f\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\":\"f27043cc7214fdbab0262293a0060a16\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\",\"Error\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\":\"9040bed901f1ec37d64a729e40eb25e5\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\":\"ae15458582b5d5019a30fa307e376b50\"}" + "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\":\"76b5dab0e72069584d89e0b302279695\",\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\":\"d035e6671d0c3186ab8408ec8453b89d\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\":\"166e3b7993ce96be2e298450dca31ca8\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\":\"e2f6858a89ef8eeb481256284771da3c\",\"Error\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "A29D34236F807AC7FFD4FD97D10545E9" + "stringValue": "A89F5109776C50E8E922CBE839B27D09" } }, { "key": "session.id", "value": { - "stringValue": "810F9F738BF6EC9BACCBACC3F848336C" + "stringValue": "B7FF5C91C5E2B7BB0868C0DF9C4F506F" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3012/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json index a12add66c..df9e2561c 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "C421C5856918B3E5961478E20F54FAF6" + "stringValue": "E2F2C95CA03F42DD27137938271A72ED" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "e8b80dce29a3bd67afcfc9ee3e5e7247", - "spanId": "55f9bb6048d71e9c", + "traceId": "af0c7012420fc0d893d9c6cebe9eeea6", + "spanId": "0c6ec25a3f7809b4", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811575946000000", - "endTimeUnixNano": "1769811576085700000", + "startTimeUnixNano": "1771878174498000000", + "endTimeUnixNano": "1771878174655200000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "AF027060B5B088EDF93CBC01F7210088" + "stringValue": "855785FA68348047CB9BD7CAFEB500C5" } }, { "key": "emb.tab_id", "value": { - "stringValue": "C421C5856918B3E5961478E20F54FAF6" + "stringValue": "E2F2C95CA03F42DD27137938271A72ED" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 9 + "intValue": 7 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "b86c3c542094317f", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "ad0a9dcf30bbb6e0", + "parentSpanId": "f1d31c1c242dac79", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811575868100000", - "endTimeUnixNano": "1769811575878200000", + "startTimeUnixNano": "1771878174405499902", + "endTimeUnixNano": "1771878174426499902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -201,7 +207,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2055 + "intValue": 2054 } }, { @@ -209,6 +215,12 @@ "value": { "intValue": 6204 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575868100000", + "timeUnixNano": "1771878174405499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575870800000", + "timeUnixNano": "1771878174409899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575870800000", + "timeUnixNano": "1771878174409899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575870800000", + "timeUnixNano": "1771878174409899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811575868000000", + "timeUnixNano": "1771878174405399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575871000000", + "timeUnixNano": "1771878174410099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575871000000", + "timeUnixNano": "1771878174410099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575876100000", + "timeUnixNano": "1771878174421799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575878200000", + "timeUnixNano": "1771878174426499902", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "017da22724d9dd30", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "ae9470fa123523bc", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575878699951", - "endTimeUnixNano": "1769811575885899951", + "startTimeUnixNano": "1771878174425999951", + "endTimeUnixNano": "1771878174436599951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -344,6 +356,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -351,49 +369,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575878699951", + "timeUnixNano": "1771878174425999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575878699951", + "timeUnixNano": "1771878174425999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575878699951", + "timeUnixNano": "1771878174425999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575878699951", + "timeUnixNano": "1771878174425999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575878699951", + "timeUnixNano": "1771878174425999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575881599951", + "timeUnixNano": "1771878174429799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575885599951", + "timeUnixNano": "1771878174436199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575885899951", + "timeUnixNano": "1771878174436599951", "droppedAttributesCount": 0 } ], @@ -406,18 +424,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "7fd13181050def90", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "900f3c99a0757ab2", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575878499903", - "endTimeUnixNano": "1769811575886799903", + "startTimeUnixNano": "1771878174426599951", + "endTimeUnixNano": "1771878174437999951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -473,6 +491,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -480,49 +504,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575878499903", + "timeUnixNano": "1771878174426599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575881799903", + "timeUnixNano": "1771878174430099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575881799903", + "timeUnixNano": "1771878174430199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575881799903", + "timeUnixNano": "1771878174430199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575882099903", + "timeUnixNano": "1771878174430399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575882399903", + "timeUnixNano": "1771878174430399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575886299903", + "timeUnixNano": "1771878174437299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575886799903", + "timeUnixNano": "1771878174437999951", "droppedAttributesCount": 0 } ], @@ -535,18 +559,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "f3c4449e3253e4a3", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "68e59257bd9fc455", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879299951", - "endTimeUnixNano": "1769811575889999951", + "startTimeUnixNano": "1771878174426299902", + "endTimeUnixNano": "1771878174442199902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -608,6 +632,12 @@ "value": { "intValue": 2903 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -615,49 +645,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879299951", + "timeUnixNano": "1771878174426299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575882499951", + "timeUnixNano": "1771878174430599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575882499951", + "timeUnixNano": "1771878174430599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575882499951", + "timeUnixNano": "1771878174430599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575882799951", + "timeUnixNano": "1771878174430699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575883099951", + "timeUnixNano": "1771878174430799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575888199951", + "timeUnixNano": "1771878174441799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575889999951", + "timeUnixNano": "1771878174442199902", "droppedAttributesCount": 0 } ], @@ -670,18 +700,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "c2f672eef612cb4b", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "295b0a7377e005d6", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879300098", - "endTimeUnixNano": "1769811575890100098", + "startTimeUnixNano": "1771878174426300049", + "endTimeUnixNano": "1771878174442600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -743,6 +773,12 @@ "value": { "intValue": 3567 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -750,49 +786,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879300098", + "timeUnixNano": "1771878174426300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575883500098", + "timeUnixNano": "1771878174431300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575883600098", + "timeUnixNano": "1771878174431300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575883600098", + "timeUnixNano": "1771878174431300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575883700098", + "timeUnixNano": "1771878174431600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575883700098", + "timeUnixNano": "1771878174431800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575889500098", + "timeUnixNano": "1771878174442000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575890100098", + "timeUnixNano": "1771878174442600049", "droppedAttributesCount": 0 } ], @@ -805,18 +841,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "b96fdd8ebcbaa6d9", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "a4c1960a8095b2b7", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879400098", - "endTimeUnixNano": "1769811575890700098", + "startTimeUnixNano": "1771878174426199951", + "endTimeUnixNano": "1771878174466599951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -828,13 +864,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 54541 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 173257 } }, { @@ -858,19 +900,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 + "intValue": 173257 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -879,49 +927,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879400098", + "timeUnixNano": "1771878174426199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575879400098", + "timeUnixNano": "1771878174431599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575879400098", + "timeUnixNano": "1771878174431599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575879400098", + "timeUnixNano": "1771878174431599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575879400098", + "timeUnixNano": "1771878174431899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575886600098", + "timeUnixNano": "1771878174432099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575890300098", + "timeUnixNano": "1771878174445599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575890700098", + "timeUnixNano": "1771878174466599951", "droppedAttributesCount": 0 } ], @@ -934,18 +982,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "a71c64fd22f3f77e", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "7091ae4364cc920f", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879300000", - "endTimeUnixNano": "1769811575903300000", + "startTimeUnixNano": "1771878174427299951", + "endTimeUnixNano": "1771878174444299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -957,19 +1005,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 172733 + "intValue": 795 } }, { @@ -993,19 +1035,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 + "intValue": 795 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1014,49 +1062,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879300000", + "timeUnixNano": "1771878174427299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575884400000", + "timeUnixNano": "1771878174427299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575884400000", + "timeUnixNano": "1771878174427299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575884400000", + "timeUnixNano": "1771878174427299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575884500000", + "timeUnixNano": "1771878174427299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575884600000", + "timeUnixNano": "1771878174438699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575893200000", + "timeUnixNano": "1771878174443899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575903300000", + "timeUnixNano": "1771878174444299951", "droppedAttributesCount": 0 } ], @@ -1069,18 +1117,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "a3ba0eeffe1c5d75", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "d8aba0c3eb89aadf", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879199903", - "endTimeUnixNano": "1769811575903799903", + "startTimeUnixNano": "1771878174427200098", + "endTimeUnixNano": "1771878174460400097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1092,19 +1140,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 + "intValue": 46245 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 173257 + "intValue": 172733 } }, { @@ -1128,19 +1176,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 + "intValue": 172733 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1149,49 +1203,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879199903", + "timeUnixNano": "1771878174427200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575884099903", + "timeUnixNano": "1771878174432700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575884099903", + "timeUnixNano": "1771878174432800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575884099903", + "timeUnixNano": "1771878174432800098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575884399903", + "timeUnixNano": "1771878174432900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575884499903", + "timeUnixNano": "1771878174433000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575892099903", + "timeUnixNano": "1771878174446000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575903799903", + "timeUnixNano": "1771878174460400097", "droppedAttributesCount": 0 } ], @@ -1204,18 +1258,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "5c18d8a97cfa4390", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "42d0f300b2e67082", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879099951", - "endTimeUnixNano": "1769811575891699951", + "startTimeUnixNano": "1771878174427200000", + "endTimeUnixNano": "1771878174444500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1271,6 +1325,12 @@ "value": { "intValue": 564 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1278,49 +1338,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575887499951", + "timeUnixNano": "1771878174438900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575891499951", + "timeUnixNano": "1771878174444200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575891699951", + "timeUnixNano": "1771878174444500000", "droppedAttributesCount": 0 } ], @@ -1333,18 +1393,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "8c433ff624ee1fc8", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "1d1df492b61100d6", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575879099951", - "endTimeUnixNano": "1769811575897699951", + "startTimeUnixNano": "1771878174427099902", + "endTimeUnixNano": "1771878174449899902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1356,7 +1416,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" } }, { @@ -1400,6 +1460,12 @@ "value": { "intValue": 876 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1407,49 +1473,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575879099951", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575890499951", + "timeUnixNano": "1771878174444599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575897399951", + "timeUnixNano": "1771878174449599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575897699951", + "timeUnixNano": "1771878174449899902", "droppedAttributesCount": 0 } ], @@ -1462,18 +1528,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "fdb5c85efc5ff7d0", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "aa2a1e7c3748500e", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575878900000", - "endTimeUnixNano": "1769811575901700000", + "startTimeUnixNano": "1771878174427099902", + "endTimeUnixNano": "1771878174454399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1485,19 +1551,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20593 + "intValue": 658 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 75431 + "intValue": 1033 } }, { @@ -1521,19 +1587,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 20593 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 20893 + "intValue": 958 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 75431 + "intValue": 1033 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1542,49 +1614,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575890100000", + "timeUnixNano": "1771878174444899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575899200000", + "timeUnixNano": "1771878174452999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575901700000", + "timeUnixNano": "1771878174454399902", "droppedAttributesCount": 0 } ], @@ -1597,18 +1669,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "ab8b90075b101278", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "ac7dbb6be1b5eb7b", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575878900000", - "endTimeUnixNano": "1769811575902900000", + "startTimeUnixNano": "1771878174427099902", + "endTimeUnixNano": "1771878174464399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1620,19 +1692,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js" + "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 30021 + "intValue": 37762 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 98221 + "intValue": 121417 } }, { @@ -1656,19 +1728,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 30021 + "intValue": 37762 } }, { "key": "http.response.size", "value": { - "intValue": 30321 + "intValue": 38062 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 98221 + "intValue": 121417 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1677,49 +1755,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575878900000", + "timeUnixNano": "1771878174427099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575890000000", + "timeUnixNano": "1771878174443499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575899200000", + "timeUnixNano": "1771878174452599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575902900000", + "timeUnixNano": "1771878174464399902", "droppedAttributesCount": 0 } ], @@ -1732,18 +1810,18 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "f85104ee24950f7e", - "parentSpanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "a50b3191a223c744", + "parentSpanId": "f1d31c1c242dac79", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811575878899903", - "endTimeUnixNano": "1769811575900199903", + "startTimeUnixNano": "1771878174426899951", + "endTimeUnixNano": "1771878174465199951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1755,19 +1833,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 + "intValue": 20675 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1033 + "intValue": 76090 } }, { @@ -1791,19 +1869,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 20675 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 20975 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 + "intValue": 76090 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1812,49 +1896,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575878899903", + "timeUnixNano": "1771878174426899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811575878899903", + "timeUnixNano": "1771878174426899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811575878899903", + "timeUnixNano": "1771878174426899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811575878899903", + "timeUnixNano": "1771878174426899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811575878899903", + "timeUnixNano": "1771878174426899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811575891999903", + "timeUnixNano": "1771878174443699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811575899299903", + "timeUnixNano": "1771878174452999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811575900199903", + "timeUnixNano": "1771878174465199951", "droppedAttributesCount": 0 } ], @@ -1867,17 +1951,17 @@ "flags": 257 }, { - "traceId": "8b4691bd216f94e5c65313d80b3387b9", - "spanId": "c5645eb4ddb05270", + "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", + "spanId": "f1d31c1c242dac79", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811575868299951", - "endTimeUnixNano": "1769811575952699951", + "startTimeUnixNano": "1771878174405600000", + "endTimeUnixNano": "1771878174503400000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" + "stringValue": "65E27416A9E067EA332C7A03128809E1" } }, { @@ -1895,7 +1979,13 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1904,55 +1994,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811575868299951", + "timeUnixNano": "1771878174405600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811575896399951", + "timeUnixNano": "1771878174448300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811575896399951", + "timeUnixNano": "1771878174448400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811575896399951", + "timeUnixNano": "1771878174448400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811575952699951", + "timeUnixNano": "1771878174503300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811575952699951", + "timeUnixNano": "1771878174503400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811575952699951", + "timeUnixNano": "1771878174503400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1769811575900199951", + "timeUnixNano": "1771878174453500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811575900199951", + "timeUnixNano": "1771878174453500000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json index f79e2a90a..bb40da644 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "8806B3143321D16E57702A2D0A4238C7" + "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811580949800049", - "observedTimeUnixNano": "1769811580950000000", + "timeUnixNano": "1771878187235199951", + "observedTimeUnixNano": "1771878187235000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103)\n at n.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948)\n at Proxy. (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465)\n at a (http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529)\n at sY (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161801)\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822)" + "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918)\n at i.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942)\n at Proxy. (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459)\n at a (http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528)\n at sY (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161801)\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\":\"064fbb708a69758b5a0ab80f376cb08a\",\"Error\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\":\"1d128b39b01355ec232666eb51ed9fdb\",\"Error\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"Error\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\":\"5abe9f02e7f14cba35bf7920024817dc\",\"Error\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" + "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\":\"9949ad0f7ff24b0affc3f595090658d9\",\"Error\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"Error\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\":\"15b8645cace346d9e6ceba56f882762f\",\"Error\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\":\"4fb973c036e18b810ee3da31e51cd097\",\"Error\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\":\"8965f2228d245fa9a1ea8196a2783196\",\"Error\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "CEC7BF3A56526D15C9F14AB7420DC924" + "stringValue": "FAD0A3E1CF002D09FBEBC938C00737CF" } }, { "key": "session.id", "value": { - "stringValue": "4C7BF6EE0E22D49F7ACFEA4EB5E23581" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3014/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json index b2f4dec32..d270c91fb 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "DC308F0BE07F2E7FB559426E94A3979F" + "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "4202bc48fd6426519532540d6e6292cc", - "spanId": "170f5789be357226", + "traceId": "161e93a24c3846e1d6daff721fb1c3da", + "spanId": "89d8fac5962e0f2c", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374155497000000", - "endTimeUnixNano": "1771374156096400000", + "startTimeUnixNano": "1771878186670000000", + "endTimeUnixNano": "1771878187275400000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "AF780F733AFF9E6CDED7A3E85F0B51C9" + "stringValue": "F297E5029542C84CB4F9FDB0AAE371AC" } }, { "key": "emb.tab_id", "value": { - "stringValue": "DC308F0BE07F2E7FB559426E94A3979F" + "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 7 + "intValue": 5 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374155630500000", + "timeUnixNano": "1771878186810399902", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374155499-2943488453668" + "stringValue": "v5-1771878186671-8594648100298" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 28 + "intValue": 56 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 28 + "intValue": 56 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 3.3999999910593033 + "doubleValue": 8.100000023841858 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 24.600000008940697 + "doubleValue": 47.89999997615814 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374155636599854", + "timeUnixNano": "1771878186815800049", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374156055000000", + "timeUnixNano": "1771878187234599854", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "7f4a89728ae3b7a0", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "5428e18c7ea87998", + "parentSpanId": "1dc3b09b80b0f858", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374155420599902", - "endTimeUnixNano": "1771374155424099902", + "startTimeUnixNano": "1771878186574100097", + "endTimeUnixNano": "1771878186582600097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -337,7 +343,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1970 + "intValue": 1963 } }, { @@ -345,6 +351,12 @@ "value": { "intValue": 6239 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155420599902", + "timeUnixNano": "1771878186574100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155421499902", + "timeUnixNano": "1771878186576900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155421499902", + "timeUnixNano": "1771878186576900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155421499902", + "timeUnixNano": "1771878186576900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374155420399902", + "timeUnixNano": "1771878186574100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155421799902", + "timeUnixNano": "1771878186577000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155421799902", + "timeUnixNano": "1771878186577000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155423799902", + "timeUnixNano": "1771878186582200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155424099902", + "timeUnixNano": "1771878186582600097", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "cd07ca7243bb44fe", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "c82f016927cc626f", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426200000", - "endTimeUnixNano": "1771374155432500000", + "startTimeUnixNano": "1771878186584000097", + "endTimeUnixNano": "1771878186593700098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -480,6 +492,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -487,49 +505,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426200000", + "timeUnixNano": "1771878186584000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155426200000", + "timeUnixNano": "1771878186584000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155426200000", + "timeUnixNano": "1771878186584000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155426200000", + "timeUnixNano": "1771878186584000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155426200000", + "timeUnixNano": "1771878186584000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155429600000", + "timeUnixNano": "1771878186587600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155432100000", + "timeUnixNano": "1771878186593300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155432500000", + "timeUnixNano": "1771878186593700098", "droppedAttributesCount": 0 } ], @@ -542,18 +560,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "077c7f6a59d0d716", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "136b5d060e6415cf", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426200049", - "endTimeUnixNano": "1771374155432600049", + "startTimeUnixNano": "1771878186583999902", + "endTimeUnixNano": "1771878186595399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -565,13 +583,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 984 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 2961 } }, { @@ -583,7 +607,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "non-blocking" + "stringValue": "blocking" } }, { @@ -595,19 +619,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 + "intValue": 2961 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -616,49 +646,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426200049", + "timeUnixNano": "1771878186583999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155429100049", + "timeUnixNano": "1771878186587499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155429100049", + "timeUnixNano": "1771878186587499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155429100049", + "timeUnixNano": "1771878186587499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155429600049", + "timeUnixNano": "1771878186587699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155429900049", + "timeUnixNano": "1771878186587699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155432100049", + "timeUnixNano": "1771878186594399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155432600049", + "timeUnixNano": "1771878186595399902", "droppedAttributesCount": 0 } ], @@ -671,18 +701,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "e9c91d51193442e5", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "a24421c57ba60729", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426199951", - "endTimeUnixNano": "1771374155433599951", + "startTimeUnixNano": "1771878186583900049", + "endTimeUnixNano": "1771878186594100049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -694,19 +724,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" + "stringValue": "http://localhost:3014/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 2961 + "intValue": 28388 } }, { @@ -718,7 +742,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "blocking" + "stringValue": "non-blocking" } }, { @@ -730,19 +754,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 + "intValue": 28388 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -751,49 +781,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426199951", + "timeUnixNano": "1771878186583900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155430099951", + "timeUnixNano": "1771878186587600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155430099951", + "timeUnixNano": "1771878186587600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155430099951", + "timeUnixNano": "1771878186587600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155430099951", + "timeUnixNano": "1771878186587600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155430299951", + "timeUnixNano": "1771878186587700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155433299951", + "timeUnixNano": "1771878186593600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155433599951", + "timeUnixNano": "1771878186594100049", "droppedAttributesCount": 0 } ], @@ -806,18 +836,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "7d6c0068051e22bf", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "3a559732522f0884", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426100097", - "endTimeUnixNano": "1771374155435200097", + "startTimeUnixNano": "1771878186584000049", + "endTimeUnixNano": "1771878186595600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -829,19 +859,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" + "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13546 + "intValue": 13566 } }, { @@ -865,19 +895,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response.size", "value": { - "intValue": 5332 + "intValue": 5348 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13546 + "intValue": 13566 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -886,49 +922,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426100097", + "timeUnixNano": "1771878186584000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155430300097", + "timeUnixNano": "1771878186588000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155430300097", + "timeUnixNano": "1771878186588000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155430300097", + "timeUnixNano": "1771878186588000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155430500097", + "timeUnixNano": "1771878186588400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155430500097", + "timeUnixNano": "1771878186588600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155434200097", + "timeUnixNano": "1771878186594800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155435200097", + "timeUnixNano": "1771878186595600049", "droppedAttributesCount": 0 } ], @@ -941,18 +977,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "d85a9e98c7023131", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "1fbd726c1f95d258", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426000000", - "endTimeUnixNano": "1771374155441700000", + "startTimeUnixNano": "1771878186584899951", + "endTimeUnixNano": "1771878186624499951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -964,19 +1000,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" + "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41469 + "intValue": 70322 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162152 + "intValue": 224870 } }, { @@ -1000,19 +1036,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 41469 + "intValue": 70322 } }, { "key": "http.response.size", "value": { - "intValue": 41769 + "intValue": 70622 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162152 + "intValue": 224870 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1021,49 +1063,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426000000", + "timeUnixNano": "1771878186584899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155430800000", + "timeUnixNano": "1771878186589199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155430800000", + "timeUnixNano": "1771878186589199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155430800000", + "timeUnixNano": "1771878186589199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155430900000", + "timeUnixNano": "1771878186589499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155431000000", + "timeUnixNano": "1771878186589599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155437400000", + "timeUnixNano": "1771878186599299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155441700000", + "timeUnixNano": "1771878186624499951", "droppedAttributesCount": 0 } ], @@ -1076,18 +1118,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "7552a885f58997cc", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "7043d35d52139281", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155425899902", - "endTimeUnixNano": "1771374155446599902", + "startTimeUnixNano": "1771878186584999951", + "endTimeUnixNano": "1771878186609499951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1099,19 +1141,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70316 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224864 + "intValue": 10426 } }, { @@ -1135,19 +1177,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 70316 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 70616 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224864 + "intValue": 10426 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1156,49 +1204,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155425899902", + "timeUnixNano": "1771878186584999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155430399902", + "timeUnixNano": "1771878186584999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155430399902", + "timeUnixNano": "1771878186584999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155430399902", + "timeUnixNano": "1771878186584999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155430499902", + "timeUnixNano": "1771878186584999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155430499902", + "timeUnixNano": "1771878186594899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155436699902", + "timeUnixNano": "1771878186602399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155446599902", + "timeUnixNano": "1771878186609499951", "droppedAttributesCount": 0 } ], @@ -1211,18 +1259,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "f6dbb1bbc4abb147", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "91f5f4979288626c", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155425900049", - "endTimeUnixNano": "1771374155436300049", + "startTimeUnixNano": "1771878186584900097", + "endTimeUnixNano": "1771878186614500097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1234,19 +1282,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 41491 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 162134 } }, { @@ -1270,19 +1318,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 41491 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 41791 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 + "intValue": 162134 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1291,49 +1345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186589300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186589300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186589300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186589400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155432600049", + "timeUnixNano": "1771878186589600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155435900049", + "timeUnixNano": "1771878186599100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155436300049", + "timeUnixNano": "1771878186614500097", "droppedAttributesCount": 0 } ], @@ -1346,18 +1400,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "b9651aa277613c36", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "b99d9bb2efd43533", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155425900049", - "endTimeUnixNano": "1771374155437800049", + "startTimeUnixNano": "1771878186584900097", + "endTimeUnixNano": "1771878186622600097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1369,19 +1423,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7625 + "intValue": 54690 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31076 + "intValue": 192543 } }, { @@ -1405,19 +1459,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7625 + "intValue": 54690 } }, { "key": "http.response.size", "value": { - "intValue": 7925 + "intValue": 54990 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31076 + "intValue": 192543 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1426,49 +1486,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155425900049", + "timeUnixNano": "1771878186584900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155433600049", + "timeUnixNano": "1771878186595500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155437000049", + "timeUnixNano": "1771878186610300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155437800049", + "timeUnixNano": "1771878186622600097", "droppedAttributesCount": 0 } ], @@ -1481,18 +1541,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "5acc9dfd671d1595", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "935ce6beeab0c6ba", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155425799951", - "endTimeUnixNano": "1771374155438199951", + "startTimeUnixNano": "1771878186584900000", + "endTimeUnixNano": "1771878186612600000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1504,19 +1564,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" + "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 810 + "intValue": 807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1342 + "intValue": 1341 } }, { @@ -1540,19 +1600,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 810 + "intValue": 807 } }, { "key": "http.response.size", "value": { - "intValue": 1110 + "intValue": 1107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1342 + "intValue": 1341 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1561,49 +1627,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155425799951", + "timeUnixNano": "1771878186584900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155425799951", + "timeUnixNano": "1771878186584900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155425799951", + "timeUnixNano": "1771878186584900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155425799951", + "timeUnixNano": "1771878186584900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155425799951", + "timeUnixNano": "1771878186584900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155435099951", + "timeUnixNano": "1771878186596500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155437399951", + "timeUnixNano": "1771878186610600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155438199951", + "timeUnixNano": "1771878186612600000", "droppedAttributesCount": 0 } ], @@ -1616,18 +1682,18 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "1d55cede88f5a10e", - "parentSpanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "1cc763ee4660982c", + "parentSpanId": "1dc3b09b80b0f858", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374155426700097", - "endTimeUnixNano": "1771374155446500097", + "startTimeUnixNano": "1771878186584799902", + "endTimeUnixNano": "1771878186612799902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1639,19 +1705,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49c2078e705461b0.js" + "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54464 + "intValue": 7636 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 191607 + "intValue": 31075 } }, { @@ -1675,19 +1741,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54464 + "intValue": 7636 } }, { "key": "http.response.size", "value": { - "intValue": 54764 + "intValue": 7936 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 191607 + "intValue": 31075 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1696,49 +1768,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155426700097", + "timeUnixNano": "1771878186584799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155426700097", + "timeUnixNano": "1771878186584799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155426700097", + "timeUnixNano": "1771878186584799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155426700097", + "timeUnixNano": "1771878186584799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155426700097", + "timeUnixNano": "1771878186584799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155433700097", + "timeUnixNano": "1771878186596199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155438700097", + "timeUnixNano": "1771878186610499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155446500097", + "timeUnixNano": "1771878186612799902", "droppedAttributesCount": 0 } ], @@ -1751,17 +1823,17 @@ "flags": 257 }, { - "traceId": "8d92b90008ffd4ceed721427ba2587f8", - "spanId": "ebbd73f9e6e48596", + "traceId": "d4a67b0960305fd70cb08525c021b84a", + "spanId": "1dc3b09b80b0f858", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374155420700000", - "endTimeUnixNano": "1771374155500100000", + "startTimeUnixNano": "1771878186573300049", + "endTimeUnixNano": "1771878186671100049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1781,62 +1853,62 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771374155420700000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374155434600000", + "timeUnixNano": "1771878186596200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374155434600000", + "timeUnixNano": "1771878186596200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374155434600000", + "timeUnixNano": "1771878186596200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374155500100000", + "timeUnixNano": "1771878186671100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374155500100000", + "timeUnixNano": "1771878186671100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374155500100000", + "timeUnixNano": "1771878186671100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771374155448500000", + "timeUnixNano": "1771878186629300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771374155448500000", + "timeUnixNano": "1771878186629300049", "droppedAttributesCount": 0 } ], @@ -1857,12 +1929,12 @@ }, "spans": [ { - "traceId": "a5dff68196777736df61be5a84632e09", - "spanId": "beb8247844aa8c80", + "traceId": "83ddeb98682ad80e5f156e21fe56ca82", + "spanId": "ceb6f79f21dd9306", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374155632000000", - "endTimeUnixNano": "1771374155638000000", + "startTimeUnixNano": "1771878186813000000", + "endTimeUnixNano": "1771878186818000000", "attributes": [ { "key": "component", @@ -1885,7 +1957,7 @@ { "key": "session.id", "value": { - "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" + "stringValue": "29396E30D15D4E3241BA2D685484B23F" } }, { @@ -1957,6 +2029,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1964,49 +2042,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374155633099951", + "timeUnixNano": "1771878186814100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374155637099951", + "timeUnixNano": "1771878186817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374155637099951", + "timeUnixNano": "1771878186817400000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json index 2c90340cd..a4bcf18c5 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "5ABB5A1352DA007F72BC26ADD5A89DCA" + "stringValue": "E1E3D36AC196CFD025506F11C6BD6D67" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811577243199951", - "observedTimeUnixNano": "1769811577243000000", + "timeUnixNano": "1771878182063199951", + "observedTimeUnixNano": "1771878182063000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103)\n at n.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948)\n at Proxy. (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465)\n at a (http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529)\n at sY (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161801)\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822)" + "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918)\n at i.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942)\n at Proxy. (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459)\n at a (http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528)\n at sY (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161801)\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\":\"064fbb708a69758b5a0ab80f376cb08a\",\"Error\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\":\"1d128b39b01355ec232666eb51ed9fdb\",\"Error\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"Error\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\":\"5abe9f02e7f14cba35bf7920024817dc\",\"Error\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" + "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\":\"15b8645cace346d9e6ceba56f882762f\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\":\"9949ad0f7ff24b0affc3f595090658d9\",\"Error\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"Error\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\":\"8965f2228d245fa9a1ea8196a2783196\",\"Error\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\":\"4fb973c036e18b810ee3da31e51cd097\",\"Error\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "E758EC767D7BD7194F362916D9AD8D06" + "stringValue": "E527703A62195BA99DB29CED4006E5EC" } }, { "key": "session.id", "value": { - "stringValue": "23F8D12033BC5EAD7244341043885A19" + "stringValue": "310C46634C58127D3A5328C8BD936589" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3014/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-session.json b/tests/integration/tests/__golden__/chromium-next-16-app-session.json index eade9a489..7118f2415 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "17A808BC00209C24A3DA3D8F52D8976D" + "stringValue": "742B09D6DB6AB08DC37034DB435CD02D" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "e95de3fd0eb65152a1ad6e6adfa6fcc7", - "spanId": "4ab69021a748d5f5", + "traceId": "5f8e0d9d08f0313a6055c6e3d23e92e3", + "spanId": "40893954a398475e", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811576769000000", - "endTimeUnixNano": "1769811576903900000", + "startTimeUnixNano": "1771878181403000000", + "endTimeUnixNano": "1771878181572400000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "847E53956A171496DEA2949291B7AD87" + "stringValue": "04797BFBDBF153E4CD97CF706A51CAF5" } }, { "key": "emb.tab_id", "value": { - "stringValue": "17A808BC00209C24A3DA3D8F52D8976D" + "stringValue": "742B09D6DB6AB08DC37034DB435CD02D" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 12 + "intValue": 6 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "818756aa061ed098", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "5386e0fa192c9a3d", + "parentSpanId": "179e6180d773bd48", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811576678600000", - "endTimeUnixNano": "1769811576686100000", + "startTimeUnixNano": "1771878181252100000", + "endTimeUnixNano": "1771878181258400000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -201,7 +207,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1969 + "intValue": 1963 } }, { @@ -209,6 +215,12 @@ "value": { "intValue": 6239 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576678600000", + "timeUnixNano": "1771878181252100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576681100000", + "timeUnixNano": "1771878181253500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576681100000", + "timeUnixNano": "1771878181253600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576681100000", + "timeUnixNano": "1771878181253600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811576678500000", + "timeUnixNano": "1771878181252000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576681300000", + "timeUnixNano": "1771878181253700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576681400000", + "timeUnixNano": "1771878181253700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576685500000", + "timeUnixNano": "1771878181257900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576686100000", + "timeUnixNano": "1771878181258400000", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "345a2db8f666d436", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "a79aadbdd51bd3e0", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576687299951", - "endTimeUnixNano": "1769811576696299951", + "startTimeUnixNano": "1771878181260300049", + "endTimeUnixNano": "1771878181272400049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -344,6 +356,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -351,49 +369,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576687299951", + "timeUnixNano": "1771878181260300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576687299951", + "timeUnixNano": "1771878181260300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576687299951", + "timeUnixNano": "1771878181260300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576687299951", + "timeUnixNano": "1771878181260300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576687299951", + "timeUnixNano": "1771878181260300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576691199951", + "timeUnixNano": "1771878181268300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576696099951", + "timeUnixNano": "1771878181271700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576696299951", + "timeUnixNano": "1771878181272400049", "droppedAttributesCount": 0 } ], @@ -406,18 +424,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "52cfc759d93ec29c", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "33500ddd92db672d", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688199902", - "endTimeUnixNano": "1769811576698199902", + "startTimeUnixNano": "1771878181260199951", + "endTimeUnixNano": "1771878181280099951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -473,6 +491,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -480,49 +504,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688199902", + "timeUnixNano": "1771878181260199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576691799902", + "timeUnixNano": "1771878181260199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576691799902", + "timeUnixNano": "1771878181260199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576691799902", + "timeUnixNano": "1771878181260199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576691999902", + "timeUnixNano": "1771878181260199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576692099902", + "timeUnixNano": "1771878181272699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576697899902", + "timeUnixNano": "1771878181279499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576698199902", + "timeUnixNano": "1771878181280099951", "droppedAttributesCount": 0 } ], @@ -535,18 +559,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "fe39e615cb626549", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "6330dc9a38df88d7", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688100049", - "endTimeUnixNano": "1769811576700100049", + "startTimeUnixNano": "1771878181260200098", + "endTimeUnixNano": "1771878181286000098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -558,7 +582,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" + "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" } }, { @@ -608,6 +632,12 @@ "value": { "intValue": 2961 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -615,49 +645,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688100049", + "timeUnixNano": "1771878181260200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576692200049", + "timeUnixNano": "1771878181260200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576692200049", + "timeUnixNano": "1771878181260200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576692200049", + "timeUnixNano": "1771878181260200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576692400049", + "timeUnixNano": "1771878181260200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576692400049", + "timeUnixNano": "1771878181281500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576698800049", + "timeUnixNano": "1771878181284900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576700100049", + "timeUnixNano": "1771878181286000098", "droppedAttributesCount": 0 } ], @@ -670,18 +700,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "f37d6a6ce9bd1a8a", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "a123a7c211846971", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688099951", - "endTimeUnixNano": "1769811576701299951", + "startTimeUnixNano": "1771878181260100000", + "endTimeUnixNano": "1771878181313900000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -693,19 +723,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" + "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13546 + "intValue": 13566 } }, { @@ -729,19 +759,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response.size", "value": { - "intValue": 5332 + "intValue": 5348 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13546 + "intValue": 13566 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -750,49 +786,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688099951", + "timeUnixNano": "1771878181260100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576692899951", + "timeUnixNano": "1771878181260100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576692899951", + "timeUnixNano": "1771878181260100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576692899951", + "timeUnixNano": "1771878181260100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576693199951", + "timeUnixNano": "1771878181260100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576693299951", + "timeUnixNano": "1771878181286500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576700399951", + "timeUnixNano": "1771878181293500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576701299951", + "timeUnixNano": "1771878181313900000", "droppedAttributesCount": 0 } ], @@ -805,18 +841,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "3b9eec2891f8aa23", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "5f688cb6bf2e9e79", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688000097", - "endTimeUnixNano": "1769811576715100097", + "startTimeUnixNano": "1771878181260300000", + "endTimeUnixNano": "1771878181361800000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -828,19 +864,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70316 + "intValue": 41491 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224864 + "intValue": 162134 } }, { @@ -864,19 +900,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 70316 + "intValue": 41491 } }, { "key": "http.response.size", "value": { - "intValue": 70616 + "intValue": 41791 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224864 + "intValue": 162134 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -885,49 +927,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688000097", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576693000097", + "timeUnixNano": "1771878181287500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576693000097", + "timeUnixNano": "1771878181287500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576693000097", + "timeUnixNano": "1771878181287500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576693100097", + "timeUnixNano": "1771878181287700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576693200097", + "timeUnixNano": "1771878181287800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576703300097", + "timeUnixNano": "1771878181342500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576715100097", + "timeUnixNano": "1771878181361800000", "droppedAttributesCount": 0 } ], @@ -940,18 +982,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "0005264a1e0e1255", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "7418137d815982a1", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688000000", - "endTimeUnixNano": "1769811576713700000", + "startTimeUnixNano": "1771878181260300000", + "endTimeUnixNano": "1771878181363300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -963,19 +1005,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" + "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41469 + "intValue": 70322 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162152 + "intValue": 224870 } }, { @@ -999,19 +1041,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 41469 + "intValue": 70322 } }, { "key": "http.response.size", "value": { - "intValue": 41769 + "intValue": 70622 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162152 + "intValue": 224870 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1020,49 +1068,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688000000", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576693900000", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576693900000", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576693900000", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576694100000", + "timeUnixNano": "1771878181260300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576694200000", + "timeUnixNano": "1771878181286800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576703500000", + "timeUnixNano": "1771878181315900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576713700000", + "timeUnixNano": "1771878181363300000", "droppedAttributesCount": 0 } ], @@ -1075,18 +1123,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "f5f367c0bcaf8c27", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "7f5789e0ea459c68", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688100000", - "endTimeUnixNano": "1769811576702700000", + "startTimeUnixNano": "1771878181260299902", + "endTimeUnixNano": "1771878181346399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -1098,7 +1146,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" } }, { @@ -1148,6 +1196,12 @@ "value": { "intValue": 10426 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1155,49 +1209,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688100000", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576688100000", + "timeUnixNano": "1771878181288499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576688100000", + "timeUnixNano": "1771878181288499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576688100000", + "timeUnixNano": "1771878181288499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576688100000", + "timeUnixNano": "1771878181288799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576696900000", + "timeUnixNano": "1771878181288899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576701900000", + "timeUnixNano": "1771878181341799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576702700000", + "timeUnixNano": "1771878181346399902", "droppedAttributesCount": 0 } ], @@ -1210,18 +1264,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "2c827692520cf973", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "f4f1deaae23f20d9", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576687999902", - "endTimeUnixNano": "1769811576706699902", + "startTimeUnixNano": "1771878181260299902", + "endTimeUnixNano": "1771878181349399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -1233,19 +1287,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" + "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 810 + "intValue": 807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1342 + "intValue": 1341 } }, { @@ -1269,19 +1323,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 810 + "intValue": 807 } }, { "key": "http.response.size", "value": { - "intValue": 1110 + "intValue": 1107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1342 + "intValue": 1341 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1290,49 +1350,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576687999902", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576687999902", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576687999902", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576687999902", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576687999902", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576701199902", + "timeUnixNano": "1771878181318199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576705599902", + "timeUnixNano": "1771878181346399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576706699902", + "timeUnixNano": "1771878181349399902", "droppedAttributesCount": 0 } ], @@ -1345,18 +1405,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "587725b082eff821", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "f6591825504111a6", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576687900049", - "endTimeUnixNano": "1769811576706500049", + "startTimeUnixNano": "1771878181260299902", + "endTimeUnixNano": "1771878181358099902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -1368,19 +1428,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" + "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7625 + "intValue": 7636 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31076 + "intValue": 31075 } }, { @@ -1404,19 +1464,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7625 + "intValue": 7636 } }, { "key": "http.response.size", "value": { - "intValue": 7925 + "intValue": 7936 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31076 + "intValue": 31075 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1425,49 +1491,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576687900049", + "timeUnixNano": "1771878181260299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576687900049", + "timeUnixNano": "1771878181290399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576687900049", + "timeUnixNano": "1771878181290399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576687900049", + "timeUnixNano": "1771878181290399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576687900049", + "timeUnixNano": "1771878181290599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576699900049", + "timeUnixNano": "1771878181290599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576705200049", + "timeUnixNano": "1771878181352399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576706500049", + "timeUnixNano": "1771878181358099902", "droppedAttributesCount": 0 } ], @@ -1480,18 +1546,18 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "834881c1607ec18f", - "parentSpanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "a19865ac54780d08", + "parentSpanId": "179e6180d773bd48", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811576688799951", - "endTimeUnixNano": "1769811576714599951", + "startTimeUnixNano": "1771878181260099951", + "endTimeUnixNano": "1771878181367799951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -1503,19 +1569,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 47298 + "intValue": 54690 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 169109 + "intValue": 192543 } }, { @@ -1539,19 +1605,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 47298 + "intValue": 54690 } }, { "key": "http.response.size", "value": { - "intValue": 47598 + "intValue": 54990 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 169109 + "intValue": 192543 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1560,49 +1632,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576688799951", + "timeUnixNano": "1771878181260099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811576688799951", + "timeUnixNano": "1771878181288699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811576688799951", + "timeUnixNano": "1771878181288699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811576688799951", + "timeUnixNano": "1771878181288699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811576688799951", + "timeUnixNano": "1771878181288799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811576698699951", + "timeUnixNano": "1771878181288899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811576706299951", + "timeUnixNano": "1771878181349899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811576714599951", + "timeUnixNano": "1771878181367799951", "droppedAttributesCount": 0 } ], @@ -1615,17 +1687,17 @@ "flags": 257 }, { - "traceId": "4186f69a32422b897f2839ff9f4ea07f", - "spanId": "2a15f213551368fa", + "traceId": "6e64887afe71709a682a14a2646928ef", + "spanId": "179e6180d773bd48", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811576677900049", - "endTimeUnixNano": "1769811576771100049", + "startTimeUnixNano": "1771878181252299951", + "endTimeUnixNano": "1771878181404599951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "E169A09A019B2DCBA1D18418D22717E1" + "stringValue": "52328A31E20819E3F058C37D28C3C397" } }, { @@ -1643,7 +1715,13 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1652,55 +1730,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811576677900049", + "timeUnixNano": "1771878181252299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811576704700049", + "timeUnixNano": "1771878181287099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811576704700049", + "timeUnixNano": "1771878181287199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811576704700049", + "timeUnixNano": "1771878181287199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811576771100049", + "timeUnixNano": "1771878181404599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811576771100049", + "timeUnixNano": "1771878181404599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811576771100049", + "timeUnixNano": "1771878181404599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1769811576709800049", + "timeUnixNano": "1771878181304199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811576709800049", + "timeUnixNano": "1771878181304199951", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json index 6cb2775e2..0e6ffc601 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "557C9606D1698516720196C670503578" + "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811585168300049", - "observedTimeUnixNano": "1769811585168000000", + "timeUnixNano": "1771878187389000000", + "observedTimeUnixNano": "1771878187389000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:85134)\n at iE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:38096)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:37637)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214339\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214311)\n at Xg (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:48:127557)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:85335)\n at nE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:38095)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:37636)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215490\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215462)\n at Ig (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:48:127548)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:126\":\"0ce073a27cc6852c16c9ed475cf8153b\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:126\":\"7dfbc7c019f4eb0ae853207d8f9abb0d\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "5BA724380BB1F74187A980AD53767B63" + "stringValue": "0E1E24E2EC7845F3B7254F66F5C92114" } }, { "key": "session.id", "value": { - "stringValue": "37547851A57F04E03D622AB9DA780A40" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-6/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json index 20829ba2b..4c28d959e 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "5A687F035A7FA055A64277AFFCD3BA73" + "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "be864707ea69c0ca0cb2387d2ed11389", - "spanId": "b2f5989790ad2b33", + "traceId": "5b7f1e2a190f6e14ff1a80f54ccf6f04", + "spanId": "6f0aa06cdb02bb63", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374159535000000", - "endTimeUnixNano": "1771374160119400000", + "startTimeUnixNano": "1771878186816000000", + "endTimeUnixNano": "1771878187461300000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "980640B78B3E42AE60E5A7E15F882278" + "stringValue": "7DB0E17B477BD685D580C56849A4A301" } }, { "key": "emb.tab_id", "value": { - "stringValue": "5A687F035A7FA055A64277AFFCD3BA73" + "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 8 + "intValue": 5 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374159672399902", + "timeUnixNano": "1771878186961000000", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374159537-4288970405552" + "stringValue": "v5-1771878186817-5044874936733" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 76 + "intValue": 60 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 76 + "intValue": 60 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 1.7999999970197678 + "doubleValue": 3.100000023841858 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 74.20000000298023 + "doubleValue": 56.89999997615814 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374159678799805", + "timeUnixNano": "1771878186966099854", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374160095599854", + "timeUnixNano": "1771878187387899902", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "67f413a6b1bcc0614c7e693f249669c3", - "spanId": "fa8c06b16f50e441", - "parentSpanId": "58614c58b643dc94", + "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", + "spanId": "b85d81df39879fa6", + "parentSpanId": "aae9305eaf7dbd82", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374159478699951", - "endTimeUnixNano": "1771374159480699951", + "startTimeUnixNano": "1771878186771999902", + "endTimeUnixNano": "1771878186775199902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -339,6 +345,12 @@ "value": { "intValue": 252 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -346,55 +358,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159478699951", + "timeUnixNano": "1771878186771999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159479799951", + "timeUnixNano": "1771878186773899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159479799951", + "timeUnixNano": "1771878186773899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159479799951", + "timeUnixNano": "1771878186773899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374159478699951", + "timeUnixNano": "1771878186771899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159479899951", + "timeUnixNano": "1771878186774199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159479999951", + "timeUnixNano": "1771878186774299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159480499951", + "timeUnixNano": "1771878186774999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159480699951", + "timeUnixNano": "1771878186775199902", "droppedAttributesCount": 0 } ], @@ -407,18 +419,18 @@ "flags": 257 }, { - "traceId": "67f413a6b1bcc0614c7e693f249669c3", - "spanId": "bdf3e75c7569a823", - "parentSpanId": "58614c58b643dc94", + "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", + "spanId": "d601ce333ded8057", + "parentSpanId": "aae9305eaf7dbd82", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374159482600097", - "endTimeUnixNano": "1771374159486800097", + "startTimeUnixNano": "1771878186776700098", + "endTimeUnixNano": "1771878186781400097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -430,13 +442,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-BkKiFNIv.js" + "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 373886 + "intValue": 374863 } }, { @@ -460,19 +472,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 373886 + "intValue": 374863 } }, { "key": "http.response.size", "value": { - "intValue": 374186 + "intValue": 375163 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 373886 + "intValue": 374863 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159482600097", + "timeUnixNano": "1771878186776700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159482600097", + "timeUnixNano": "1771878186776700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159482600097", + "timeUnixNano": "1771878186776700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159482600097", + "timeUnixNano": "1771878186776700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159482600097", + "timeUnixNano": "1771878186776700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159484700097", + "timeUnixNano": "1771878186779200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159485500097", + "timeUnixNano": "1771878186780100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159486800097", + "timeUnixNano": "1771878186781400097", "droppedAttributesCount": 0 } ], @@ -536,17 +554,17 @@ "flags": 257 }, { - "traceId": "67f413a6b1bcc0614c7e693f249669c3", - "spanId": "58614c58b643dc94", + "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", + "spanId": "aae9305eaf7dbd82", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374159479000000", - "endTimeUnixNano": "1771374159539400000", + "startTimeUnixNano": "1771878186772200098", + "endTimeUnixNano": "1771878186819000097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -566,44 +584,56 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878186772200098", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374159485100000", + "timeUnixNano": "1771878186778100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374159539400000", + "timeUnixNano": "1771878186818900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374159539400000", + "timeUnixNano": "1771878186818900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374159539400000", + "timeUnixNano": "1771878186818900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374159539400000", + "timeUnixNano": "1771878186818900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374159539400000", + "timeUnixNano": "1771878186819000097", "droppedAttributesCount": 0 } ], @@ -624,12 +654,12 @@ }, "spans": [ { - "traceId": "cccd3cf037d2826a1769d1c49c96ecef", - "spanId": "92c0990f2f9b2329", + "traceId": "2b124e582b430a2d91a0622b7f4f4ecd", + "spanId": "83bf77cfb2586570", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374159674000000", - "endTimeUnixNano": "1771374159680000000", + "startTimeUnixNano": "1771878186962000000", + "endTimeUnixNano": "1771878186968000000", "attributes": [ { "key": "component", @@ -652,7 +682,7 @@ { "key": "session.id", "value": { - "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" + "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" } }, { @@ -724,6 +754,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -731,49 +767,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159674900097", + "timeUnixNano": "1771878186962500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159678900097", + "timeUnixNano": "1771878186967200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159678900097", + "timeUnixNano": "1771878186967200098", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json index 1480e84b0..6afa45dbf 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "39395A9EB4C4C812F0638B41E437952B" + "stringValue": "1BE21E2B35E954B22AD661537CE3C891" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811581735300049", - "observedTimeUnixNano": "1769811581735000000", + "timeUnixNano": "1771878183222899902", + "observedTimeUnixNano": "1771878183223000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:85134)\n at iE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:38096)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:37637)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214339\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214311)\n at Xg (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:48:127557)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:85335)\n at nE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:38095)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:37636)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215490\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215462)\n at Ig (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:48:127548)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:126\":\"0ce073a27cc6852c16c9ed475cf8153b\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:126\":\"7dfbc7c019f4eb0ae853207d8f9abb0d\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "AFC661D77585C48FC76881303E647599" + "stringValue": "ACF264F9BF78517CA702A62F9264E528" } }, { "key": "session.id", "value": { - "stringValue": "F21AD7A8493995C21951D428F86E0469" + "stringValue": "71ACF814403359A54B5F905981EACD5F" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-6/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json index 9b8b18a14..2667bb056 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "F6CF63A81B482FD4E94697375D575051" + "stringValue": "EF72E7B893A2D3CC508F37015F2388A3" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "680c331e2a2cf8a88efd15ee0522346b", - "spanId": "9cd6dfb29cee7f71", + "traceId": "6bcd43a9185b57ae628f4b3e57cf3a40", + "spanId": "b5b87cfb6ff2c4c2", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811581314000000", - "endTimeUnixNano": "1769811581450600000", + "startTimeUnixNano": "1771878182519000000", + "endTimeUnixNano": "1771878182685100000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "A8139845E0E188E0401753527A4966F5" + "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "56A0EC4E2208CB9ECE11F1C866DCF521" + "stringValue": "434B2B24CFAD0BBDFB3996CF5A00EDC4" } }, { "key": "emb.tab_id", "value": { - "stringValue": "F6CF63A81B482FD4E94697375D575051" + "stringValue": "EF72E7B893A2D3CC508F37015F2388A3" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 9 + "intValue": 11 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "7d48cd35d334225c2cbd9d386d0cf954", - "spanId": "bf875f866f398dea", - "parentSpanId": "c4534363c2f1a860", + "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", + "spanId": "32d64d34df613b60", + "parentSpanId": "6abb1be2771da158", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811581257399902", - "endTimeUnixNano": "1769811581259599902", + "startTimeUnixNano": "1771878182444400049", + "endTimeUnixNano": "1771878182463500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "A8139845E0E188E0401753527A4966F5" + "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" } }, { @@ -203,6 +209,12 @@ "value": { "intValue": 252 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -210,55 +222,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811581257399902", + "timeUnixNano": "1771878182444400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811581258399902", + "timeUnixNano": "1771878182445900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811581258399902", + "timeUnixNano": "1771878182445900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811581258399902", + "timeUnixNano": "1771878182445900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811581257399902", + "timeUnixNano": "1771878182444300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811581258599902", + "timeUnixNano": "1771878182446000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811581258699902", + "timeUnixNano": "1771878182446100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811581259199902", + "timeUnixNano": "1771878182463100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811581259599902", + "timeUnixNano": "1771878182463500049", "droppedAttributesCount": 0 } ], @@ -271,18 +283,18 @@ "flags": 257 }, { - "traceId": "7d48cd35d334225c2cbd9d386d0cf954", - "spanId": "bf438db90374b4d0", - "parentSpanId": "c4534363c2f1a860", + "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", + "spanId": "b40cc07281cf2e83", + "parentSpanId": "6abb1be2771da158", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811581261500000", - "endTimeUnixNano": "1769811581265300000", + "startTimeUnixNano": "1771878182465899951", + "endTimeUnixNano": "1771878182470999951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "A8139845E0E188E0401753527A4966F5" + "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" } }, { @@ -294,13 +306,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js" + "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 373696 + "intValue": 374863 } }, { @@ -324,19 +336,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 373696 + "intValue": 374863 } }, { "key": "http.response.size", "value": { - "intValue": 373996 + "intValue": 375163 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 373696 + "intValue": 374863 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811581261500000", + "timeUnixNano": "1771878182465899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811581261500000", + "timeUnixNano": "1771878182465899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811581261500000", + "timeUnixNano": "1771878182465899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811581261500000", + "timeUnixNano": "1771878182465899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811581261500000", + "timeUnixNano": "1771878182465899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811581263500000", + "timeUnixNano": "1771878182468599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811581264300000", + "timeUnixNano": "1771878182469899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811581265300000", + "timeUnixNano": "1771878182470999951", "droppedAttributesCount": 0 } ], @@ -400,17 +418,17 @@ "flags": 257 }, { - "traceId": "7d48cd35d334225c2cbd9d386d0cf954", - "spanId": "c4534363c2f1a860", + "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", + "spanId": "6abb1be2771da158", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811581257600097", - "endTimeUnixNano": "1769811581317500097", + "startTimeUnixNano": "1771878182444499903", + "endTimeUnixNano": "1771878182523899903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "A8139845E0E188E0401753527A4966F5" + "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" } }, { @@ -428,46 +446,58 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878182444499903", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811581263700097", + "timeUnixNano": "1771878182467999903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811581317400097", + "timeUnixNano": "1771878182523899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811581317400097", + "timeUnixNano": "1771878182523899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811581317400097", + "timeUnixNano": "1771878182523899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811581317400097", + "timeUnixNano": "1771878182523899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811581317500097", + "timeUnixNano": "1771878182523899903", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json index f7a79cd3e..9bee34378 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "7FEDC5359673D8AFF418E681B9E76857" + "stringValue": "DE7447A93AB780319F300E440E8D7FEA" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811585350800049", - "observedTimeUnixNano": "1769811585351000000", + "timeUnixNano": "1771876481495199951", + "observedTimeUnixNano": "1771876481495000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:85040)\n at iE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:38002)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:37543)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214245\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214217)\n at Xg (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:8:127514)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:85241)\n at nE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:38001)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:37542)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215396\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215368)\n at Ig (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:8:127505)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:126\":\"52370fadc5cafd29622631a1b3f2d29b\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:126\":\"54cb7b0b364d8407750b38e27517d2ac\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "6F016BD944E9732260793D420ADBF875" + "stringValue": "6ABB6D000F04300A7ECAE4756E2867AF" } }, { "key": "session.id", "value": { - "stringValue": "0903E4B321653D36CF30A397585A3C54" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-7/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json index 4d6fe0672..473fded3f 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "55738CE5C30EFDE41B663D5E201499C3" + "stringValue": "DE7447A93AB780319F300E440E8D7FEA" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "8a9c5625f52969b689a0a2a5833fb6a6", - "spanId": "f9bd598ed877f2ee", + "traceId": "2f47dd22513d1f53972200915e631afa", + "spanId": "d8ee9b3c2e2c304a", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374159731000000", - "endTimeUnixNano": "1771374160313500000", + "startTimeUnixNano": "1771876480479000000", + "endTimeUnixNano": "1771876482262700000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "8B8178E1C91A7A98F716EE98D6412755" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "F435264318471D4E5C14C2929873C747" + "stringValue": "074431E3C9A870DF4A6CAF47709311D0" } }, { "key": "emb.tab_id", "value": { - "stringValue": "55738CE5C30EFDE41B663D5E201499C3" + "stringValue": "DE7447A93AB780319F300E440E8D7FEA" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 8 + "intValue": 11 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374159863899902", + "timeUnixNano": "1771876480925300049", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374159732-5166951363007" + "stringValue": "v5-1771876480482-7219904515152" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 76 + "intValue": 212 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 76 + "intValue": 212 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 2 + "doubleValue": 13.200000047683716 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 74 + "doubleValue": 198.79999995231628 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374159869800049", + "timeUnixNano": "1771876480931600098", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374160288000000", + "timeUnixNano": "1771876481493000000", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "f5c1cba3763ce3d60790e6b630629d10", - "spanId": "6f01346ac0f29cfe", - "parentSpanId": "4aa124b328d683e8", + "traceId": "8a43fe123851633b0273786ba11165d3", + "spanId": "1d0b4f1a5ff2e830", + "parentSpanId": "ac9384f219d12e56", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374159674200098", - "endTimeUnixNano": "1771374159676500098", + "startTimeUnixNano": "1771876480323900049", + "endTimeUnixNano": "1771876480337500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8B8178E1C91A7A98F716EE98D6412755" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -339,6 +345,12 @@ "value": { "intValue": 252 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -346,55 +358,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159674200098", + "timeUnixNano": "1771876480323900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159675300098", + "timeUnixNano": "1771876480329200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159675300098", + "timeUnixNano": "1771876480329200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159675300098", + "timeUnixNano": "1771876480329200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374159674100098", + "timeUnixNano": "1771876480323800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159675500098", + "timeUnixNano": "1771876480329400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159675500098", + "timeUnixNano": "1771876480329500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159676100098", + "timeUnixNano": "1771876480337000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159676500098", + "timeUnixNano": "1771876480337500049", "droppedAttributesCount": 0 } ], @@ -407,18 +419,18 @@ "flags": 257 }, { - "traceId": "f5c1cba3763ce3d60790e6b630629d10", - "spanId": "5b48edb9fc545e12", - "parentSpanId": "4aa124b328d683e8", + "traceId": "8a43fe123851633b0273786ba11165d3", + "spanId": "2f81b04dfa983740", + "parentSpanId": "ac9384f219d12e56", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374159678700049", - "endTimeUnixNano": "1771374159682400049", + "startTimeUnixNano": "1771876480340000049", + "endTimeUnixNano": "1771876480422600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8B8178E1C91A7A98F716EE98D6412755" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -430,13 +442,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-W5XqIEkN.js" + "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 372548 + "intValue": 373525 } }, { @@ -460,19 +472,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 372548 + "intValue": 373525 } }, { "key": "http.response.size", "value": { - "intValue": 372848 + "intValue": 373825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 372548 + "intValue": 373525 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159678700049", + "timeUnixNano": "1771876480340000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159678700049", + "timeUnixNano": "1771876480340000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159678700049", + "timeUnixNano": "1771876480340000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159678700049", + "timeUnixNano": "1771876480340000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159678700049", + "timeUnixNano": "1771876480340000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159680900049", + "timeUnixNano": "1771876480400100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159681500049", + "timeUnixNano": "1771876480421500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159682400049", + "timeUnixNano": "1771876480422600049", "droppedAttributesCount": 0 } ], @@ -536,17 +554,17 @@ "flags": 257 }, { - "traceId": "f5c1cba3763ce3d60790e6b630629d10", - "spanId": "4aa124b328d683e8", + "traceId": "8a43fe123851633b0273786ba11165d3", + "spanId": "ac9384f219d12e56", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374159674400049", - "endTimeUnixNano": "1771374159734400049", + "startTimeUnixNano": "1771876480323100000", + "endTimeUnixNano": "1771876480485200000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8B8178E1C91A7A98F716EE98D6412755" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -566,6 +584,12 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -573,43 +597,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159674400049", + "timeUnixNano": "1771876480323100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374159680900049", + "timeUnixNano": "1771876480342100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374159734400049", + "timeUnixNano": "1771876480485000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374159734400049", + "timeUnixNano": "1771876480485000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374159734400049", + "timeUnixNano": "1771876480485000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374159734400049", + "timeUnixNano": "1771876480485000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374159734400049", + "timeUnixNano": "1771876480485200000", "droppedAttributesCount": 0 } ], @@ -630,12 +654,12 @@ }, "spans": [ { - "traceId": "f452a154c66e5630c6803a033077abea", - "spanId": "178df3af091558ac", + "traceId": "9eedcbf692c028f11a555fd2ba5a2d0a", + "spanId": "463a88c392691e87", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374159866000000", - "endTimeUnixNano": "1771374159871000000", + "startTimeUnixNano": "1771876480928000000", + "endTimeUnixNano": "1771876480949000000", "attributes": [ { "key": "component", @@ -658,7 +682,7 @@ { "key": "session.id", "value": { - "stringValue": "8B8178E1C91A7A98F716EE98D6412755" + "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" } }, { @@ -730,6 +754,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -737,49 +767,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374159866900049", + "timeUnixNano": "1771876480929000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374159870600049", + "timeUnixNano": "1771876480948300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374159870600049", + "timeUnixNano": "1771876480948300049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json index 4834648db..4cb3a7146 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "B8FE4A3DF58B1B7D520775B76A2BFE6A" + "stringValue": "BF2B0BB73BD86D5A3F118B169493A555" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811581837000000", - "observedTimeUnixNano": "1769811581837000000", + "timeUnixNano": "1771876476344800049", + "observedTimeUnixNano": "1771876476345000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:85040)\n at iE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:38002)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:37543)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214245\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214217)\n at Xg (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:8:127514)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:85241)\n at nE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:38001)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:37542)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215396\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215368)\n at Ig (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:8:127505)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:126\":\"52370fadc5cafd29622631a1b3f2d29b\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:126\":\"54cb7b0b364d8407750b38e27517d2ac\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "E04B9D76C48D2AE90D40F13C7138B028" + "stringValue": "1ED37B4491B5EAF33DFD66396DC7CD77" } }, { "key": "session.id", "value": { - "stringValue": "AE136A1CF2B6B8E522D5700F8FC1B7BB" + "stringValue": "F28DA394BD162363F7D8DF604B910406" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-7/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json index 926249896..59107babc 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "F4BDBE9412736241B6BC54DDE9318C2D" + "stringValue": "58C7C180D36815E5DC47D126B5FEA312" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "80df9df52a950acfc0b5612090c7c978", - "spanId": "b8f04906af42c7bf", + "traceId": "24d6df1f1e8b824a4348d8455d9d99ac", + "spanId": "c3f0333c1e4b5de1", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811581399000000", - "endTimeUnixNano": "1769811581536900000", + "startTimeUnixNano": "1771876475875000000", + "endTimeUnixNano": "1771876476025700000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" + "stringValue": "AE33519E1D9402E06B6CEC403C57F930" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "DFA33C4F2E7CBD158EB866377F24A680" + "stringValue": "F8D7EC249E96885084F9FD38FFF898C3" } }, { "key": "emb.tab_id", "value": { - "stringValue": "F4BDBE9412736241B6BC54DDE9318C2D" + "stringValue": "58C7C180D36815E5DC47D126B5FEA312" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 9 + "intValue": 5 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", - "spanId": "6f2758f4a97fcdc8", - "parentSpanId": "9e148889a5e8b9cf", + "traceId": "6cfa9c11ce204b111623695c5edf31f2", + "spanId": "674f493b43c5375a", + "parentSpanId": "48b85bef67c59060", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811581346199951", - "endTimeUnixNano": "1769811581347999951", + "startTimeUnixNano": "1771876475822299951", + "endTimeUnixNano": "1771876475830099951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" + "stringValue": "AE33519E1D9402E06B6CEC403C57F930" } }, { @@ -203,6 +209,12 @@ "value": { "intValue": 252 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" + } } ], "droppedAttributesCount": 0, @@ -210,55 +222,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811581346199951", + "timeUnixNano": "1771876475822299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811581347099951", + "timeUnixNano": "1771876475825999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811581347099951", + "timeUnixNano": "1771876475825999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811581347099951", + "timeUnixNano": "1771876475825999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811581346199951", + "timeUnixNano": "1771876475822199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811581347299951", + "timeUnixNano": "1771876475826199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811581347399951", + "timeUnixNano": "1771876475826199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811581347899951", + "timeUnixNano": "1771876475828399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811581347999951", + "timeUnixNano": "1771876475830099951", "droppedAttributesCount": 0 } ], @@ -271,18 +283,18 @@ "flags": 257 }, { - "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", - "spanId": "522423b054a63301", - "parentSpanId": "9e148889a5e8b9cf", + "traceId": "6cfa9c11ce204b111623695c5edf31f2", + "spanId": "36a15bdc39975a29", + "parentSpanId": "48b85bef67c59060", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811581348800049", - "endTimeUnixNano": "1769811581351500049", + "startTimeUnixNano": "1771876475832000097", + "endTimeUnixNano": "1771876475839600097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" + "stringValue": "AE33519E1D9402E06B6CEC403C57F930" } }, { @@ -294,13 +306,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js" + "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 372358 + "intValue": 373525 } }, { @@ -324,19 +336,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 372358 + "intValue": 373525 } }, { "key": "http.response.size", "value": { - "intValue": 372658 + "intValue": 373825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 372358 + "intValue": 373525 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811581348800049", + "timeUnixNano": "1771876475832000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811581348800049", + "timeUnixNano": "1771876475832000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811581348800049", + "timeUnixNano": "1771876475832000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811581348800049", + "timeUnixNano": "1771876475832000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811581348800049", + "timeUnixNano": "1771876475832000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811581350400049", + "timeUnixNano": "1771876475835200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811581350900049", + "timeUnixNano": "1771876475837200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811581351500049", + "timeUnixNano": "1771876475839600097", "droppedAttributesCount": 0 } ], @@ -400,17 +418,17 @@ "flags": 257 }, { - "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", - "spanId": "9e148889a5e8b9cf", + "traceId": "6cfa9c11ce204b111623695c5edf31f2", + "spanId": "48b85bef67c59060", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811581345399903", - "endTimeUnixNano": "1769811581402499903", + "startTimeUnixNano": "1771876475821499902", + "endTimeUnixNano": "1771876475876799902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" + "stringValue": "AE33519E1D9402E06B6CEC403C57F930" } }, { @@ -428,46 +446,58 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Vite" } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771876475821499902", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811581350799903", + "timeUnixNano": "1771876475834399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811581402399903", + "timeUnixNano": "1771876475876799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811581402499903", + "timeUnixNano": "1771876475876799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811581402499903", + "timeUnixNano": "1771876475876799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811581402499903", + "timeUnixNano": "1771876475876799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811581402499903", + "timeUnixNano": "1771876475876799902", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json index 66ccdea90..ad274fbfa 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "E98B1B648EF9E8D13FEC1A6025258B59" + "stringValue": "A08130D513E338EF9BF50489E6569B14" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811586075599854", - "observedTimeUnixNano": "1769811586075000000", + "timeUnixNano": "1771878189418000000", + "observedTimeUnixNano": "1771878189418000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243210)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483819\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482156)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482999)\n at th (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483181)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483384)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483445\n at new Promise ()" + "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243516)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:485288\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483625)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484468)\n at Jp (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484650)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484853)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484914\n at new Promise ()" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"ee12e68962c1a54c83901757855f436c\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"8ef6dd7312afb8e65ddb16e5124b12f5\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "51F1C2442881F4F8B7C3208637C1820F" + "stringValue": "92101A18C3928CC85E59E783147234C1" } }, { "key": "session.id", "value": { - "stringValue": "8F98D2D65B3A494973985871BE47BD0A" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/webpack-5/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json index 39b3262fc..2a26c8f13 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "6E560F2DA3A0F26198228B367051E015" + "stringValue": "A08130D513E338EF9BF50489E6569B14" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "42c7ad29e5bed3cb02e445342b83a48e", - "spanId": "1c9a5b28f2f843fc", + "traceId": "bd2f499f4b9762176bf5581274ca23b4", + "spanId": "210821f4895e5217", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374160315000000", - "endTimeUnixNano": "1771374160895700000", + "startTimeUnixNano": "1771878188861000000", + "endTimeUnixNano": "1771878189460700000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "1BB60BFB4938F510E560F31A92752B65" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "BF58E3032FEB286659D0EA6364AAAFDE" + "stringValue": "B57210708866C80C4B9F706825A00ED2" } }, { "key": "emb.tab_id", "value": { - "stringValue": "6E560F2DA3A0F26198228B367051E015" + "stringValue": "A08130D513E338EF9BF50489E6569B14" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 10 + "intValue": 7 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374160446100098", + "timeUnixNano": "1771878188992000000", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374160317-2569286207587" + "stringValue": "v5-1771878188863-9808358504476" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 80 + "intValue": 72 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 80 + "intValue": 72 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 3 + "doubleValue": 3.8000000715255737 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 77 + "doubleValue": 68.19999992847443 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374160454199951", + "timeUnixNano": "1771878188999699951", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374160870300049", + "timeUnixNano": "1771878189417199951", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "68c0434d70dd7cc5de14c8c041c94e31", - "spanId": "f89677b556cbf59f", - "parentSpanId": "9ee9aded38ecab1c", + "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", + "spanId": "53f3786800d09e5f", + "parentSpanId": "3f67a11469742c57", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374160257900049", - "endTimeUnixNano": "1771374160261100049", + "startTimeUnixNano": "1771878188808100000", + "endTimeUnixNano": "1771878188812100000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1BB60BFB4938F510E560F31A92752B65" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -339,6 +345,12 @@ "value": { "intValue": 199 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 0, @@ -346,55 +358,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374160257900049", + "timeUnixNano": "1771878188808100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374160259400049", + "timeUnixNano": "1771878188809300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374160259400049", + "timeUnixNano": "1771878188809300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374160259400049", + "timeUnixNano": "1771878188809300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374160257800049", + "timeUnixNano": "1771878188808000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374160259600049", + "timeUnixNano": "1771878188809400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374160259800049", + "timeUnixNano": "1771878188809500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374160260800049", + "timeUnixNano": "1771878188811800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374160261100049", + "timeUnixNano": "1771878188812100000", "droppedAttributesCount": 0 } ], @@ -407,18 +419,18 @@ "flags": 257 }, { - "traceId": "68c0434d70dd7cc5de14c8c041c94e31", - "spanId": "78963fe94cfb9be6", - "parentSpanId": "9ee9aded38ecab1c", + "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", + "spanId": "cb6d57fe46ffeadc", + "parentSpanId": "3f67a11469742c57", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374160263299951", - "endTimeUnixNano": "1771374160269099951", + "startTimeUnixNano": "1771878188813699902", + "endTimeUnixNano": "1771878188822899902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1BB60BFB4938F510E560F31A92752B65" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -436,7 +448,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 485180 + "intValue": 486366 } }, { @@ -460,19 +472,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 485180 + "intValue": 486366 } }, { "key": "http.response.size", "value": { - "intValue": 485480 + "intValue": 486666 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 485180 + "intValue": 486366 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" } } ], @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374160263299951", + "timeUnixNano": "1771878188813699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374160263299951", + "timeUnixNano": "1771878188813699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374160263299951", + "timeUnixNano": "1771878188813699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374160263299951", + "timeUnixNano": "1771878188813699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374160263299951", + "timeUnixNano": "1771878188813699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374160265899951", + "timeUnixNano": "1771878188816399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374160267799951", + "timeUnixNano": "1771878188821799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374160269099951", + "timeUnixNano": "1771878188822899902", "droppedAttributesCount": 0 } ], @@ -536,17 +554,17 @@ "flags": 257 }, { - "traceId": "68c0434d70dd7cc5de14c8c041c94e31", - "spanId": "9ee9aded38ecab1c", + "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", + "spanId": "3f67a11469742c57", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374160257100000", - "endTimeUnixNano": "1771374160319300000", + "startTimeUnixNano": "1771878188808200098", + "endTimeUnixNano": "1771878188865000097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1BB60BFB4938F510E560F31A92752B65" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -566,6 +584,12 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 0, @@ -573,43 +597,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374160257100000", + "timeUnixNano": "1771878188808200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374160264800000", + "timeUnixNano": "1771878188815900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374160319200000", + "timeUnixNano": "1771878188864900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374160319200000", + "timeUnixNano": "1771878188865000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374160319200000", + "timeUnixNano": "1771878188865000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374160319200000", + "timeUnixNano": "1771878188865000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374160319300000", + "timeUnixNano": "1771878188865000097", "droppedAttributesCount": 0 } ], @@ -630,12 +654,12 @@ }, "spans": [ { - "traceId": "6ecb03e51ab2c136a60fe134c9eca28f", - "spanId": "4c64f604b35b4a9d", + "traceId": "27ea7bab8306ec4f3555a14eb912c1c0", + "spanId": "d37a9dd2f7c895fa", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374160448000000", - "endTimeUnixNano": "1771374160453000000", + "startTimeUnixNano": "1771878188993000000", + "endTimeUnixNano": "1771878188999000000", "attributes": [ { "key": "component", @@ -658,7 +682,7 @@ { "key": "session.id", "value": { - "stringValue": "1BB60BFB4938F510E560F31A92752B65" + "stringValue": "42087D8B45A66EDCEE5368DF2B807962" } }, { @@ -730,6 +754,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 0, @@ -737,49 +767,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374160449100000", + "timeUnixNano": "1771878188993600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374160451400000", + "timeUnixNano": "1771878188996000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374160451400000", + "timeUnixNano": "1771878188996000049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json index 6765bc07e..b0a30e51b 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "519A1C857B37D9FA570D2F1EE73E0244" + "stringValue": "6E597AA522167B7C7E1494B8DAA7F678" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811582627200195", - "observedTimeUnixNano": "1769811582627000000", + "timeUnixNano": "1771878185839899902", + "observedTimeUnixNano": "1771878185839000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243210)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483819\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482156)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482999)\n at th (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483181)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483384)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483445\n at new Promise ()" + "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243516)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:485288\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483625)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484468)\n at Jp (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484650)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484853)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484914\n at new Promise ()" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"ee12e68962c1a54c83901757855f436c\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"8ef6dd7312afb8e65ddb16e5124b12f5\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "58DC95F7E5DDF6257F5C7904AFA09F73" + "stringValue": "0AC90DDB288780AF14293FFF44577012" } }, { "key": "session.id", "value": { - "stringValue": "A29D788E6406ADA037B1EC8B76EBB4F4" + "stringValue": "B1E3965D7D931F63F898880279B45DB1" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3001/platforms/webpack-5/es2015/index.html" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json index ab38a9705..7c925e3a2 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "F0E09D51A9370BE15760C00A18ED357B" + "stringValue": "2BB3ACA24E448FEB26388AB65794DA56" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "41536bb409cc4b2275b49630158f3b40", - "spanId": "e39e141d4c8ed134", + "traceId": "d9324dad6e585b3e21ac01bbf8935c57", + "spanId": "ecb074400addba00", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811582161000000", - "endTimeUnixNano": "1769811582304900000", + "startTimeUnixNano": "1771878185254000000", + "endTimeUnixNano": "1771878185445900000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" + "stringValue": "AADD1AEB25928431F69E30BBE973A24C" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "496F2D6EBCB874005D11408E2E443999" + "stringValue": "D7851831C1E51678398B44164E00B655" } }, { "key": "emb.tab_id", "value": { - "stringValue": "F0E09D51A9370BE15760C00A18ED357B" + "stringValue": "2BB3ACA24E448FEB26388AB65794DA56" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 11 + "intValue": 7 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "620b9a07aa31b48d6a9d08613c77fce7", - "spanId": "34e19ef8cde23cee", - "parentSpanId": "3595c87c70a493bb", + "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", + "spanId": "fcc3a0242eafd580", + "parentSpanId": "4ac18c441da73cf1", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811582109600000", - "endTimeUnixNano": "1769811582111400000", + "startTimeUnixNano": "1771878185208400049", + "endTimeUnixNano": "1771878185212600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" + "stringValue": "AADD1AEB25928431F69E30BBE973A24C" } }, { @@ -203,6 +209,12 @@ "value": { "intValue": 199 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" + } } ], "droppedAttributesCount": 0, @@ -210,55 +222,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811582109600000", + "timeUnixNano": "1771878185208400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811582110500000", + "timeUnixNano": "1771878185211000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811582110600000", + "timeUnixNano": "1771878185211000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811582110600000", + "timeUnixNano": "1771878185211000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811582109500000", + "timeUnixNano": "1771878185208300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811582110700000", + "timeUnixNano": "1771878185211200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811582110700000", + "timeUnixNano": "1771878185211300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811582111200000", + "timeUnixNano": "1771878185212400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811582111400000", + "timeUnixNano": "1771878185212600049", "droppedAttributesCount": 0 } ], @@ -271,18 +283,18 @@ "flags": 257 }, { - "traceId": "620b9a07aa31b48d6a9d08613c77fce7", - "spanId": "f36a3551f76ec6ff", - "parentSpanId": "3595c87c70a493bb", + "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", + "spanId": "6e083c331bf19470", + "parentSpanId": "4ac18c441da73cf1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811582113200097", - "endTimeUnixNano": "1769811582117400097", + "startTimeUnixNano": "1771878185214000098", + "endTimeUnixNano": "1771878185219500098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" + "stringValue": "AADD1AEB25928431F69E30BBE973A24C" } }, { @@ -300,7 +312,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 484897 + "intValue": 486366 } }, { @@ -324,19 +336,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 484897 + "intValue": 486366 } }, { "key": "http.response.size", "value": { - "intValue": 485197 + "intValue": 486666 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 484897 + "intValue": 486366 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" } } ], @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811582113200097", + "timeUnixNano": "1771878185214000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811582113200097", + "timeUnixNano": "1771878185214000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811582113200097", + "timeUnixNano": "1771878185214000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811582113200097", + "timeUnixNano": "1771878185214000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811582113200097", + "timeUnixNano": "1771878185214000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811582115100097", + "timeUnixNano": "1771878185217300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811582116400097", + "timeUnixNano": "1771878185218200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811582117400097", + "timeUnixNano": "1771878185219500098", "droppedAttributesCount": 0 } ], @@ -400,17 +418,17 @@ "flags": 257 }, { - "traceId": "620b9a07aa31b48d6a9d08613c77fce7", - "spanId": "3595c87c70a493bb", + "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", + "spanId": "4ac18c441da73cf1", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811582108900049", - "endTimeUnixNano": "1769811582165400049", + "startTimeUnixNano": "1771878185207499902", + "endTimeUnixNano": "1771878185257599902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" + "stringValue": "AADD1AEB25928431F69E30BBE973A24C" } }, { @@ -428,7 +446,13 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "React + TS + Webpack" } } ], @@ -437,43 +461,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811582108900049", + "timeUnixNano": "1771878185207499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811582114200049", + "timeUnixNano": "1771878185216599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811582165200049", + "timeUnixNano": "1771878185257499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811582165200049", + "timeUnixNano": "1771878185257499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811582165300049", + "timeUnixNano": "1771878185257499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811582165300049", + "timeUnixNano": "1771878185257499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811582165400049", + "timeUnixNano": "1771878185257599902", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json index bc5201557..8fade446a 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "6E1BD19A33519F4E37A4099262499170" + "stringValue": "B100657DD17F656628D3B13297792059" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811595178000000", - "observedTimeUnixNano": "1769811595179000000", + "timeUnixNano": "1771878222229000000", + "observedTimeUnixNano": "1771878222229000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341\nmessage@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585\nt/get/<@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026\no@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335\ni2@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144381\ni9/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150468\ntk@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376\ni9@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145615\ncu@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172615\nca@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145178\ni4@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144577\ni8/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144743\ni8@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144688\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:181970\nL/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252487\nr.startTransition@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:1:7357\nL@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252456\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252963\nn@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1293\nl@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1632\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252930\nx@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3768\n" + "stringValue": "message@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215\nmessage@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579\ne/get/<@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020\no@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334\ni2@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144383\ni9/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150470\ntk@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378\ni9@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145617\ncu@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172617\nca@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145180\ni4@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144579\ni6/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144745\ni6@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144690\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:181972\nL/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252509\nr.startTransition@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:1:7357\nL@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252478\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252987\nn@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1293\nl@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1632\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252954\nx@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3768\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\\n\":\"62daae22085216409a457a21cb79a1b4\",\"@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\\n\":\"15fd21ff52e283c3bb62052de324ad34\",\"@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\\n\":\"734e6ec704f57fd3eb85256dd8f38044\",\"@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\\n\":\"ea3ef035957877fbf63a62637cdfcc92\",\"@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\\n\":\"7f0a703a46bf13f33017d981466478d2\",\"@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\\n\":\"f06fd0cd216422bc438c490a646ec9f9\",\"@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\\n\":\"9854c0c6494879a068188282e03f6e99\"}" + "stringValue": "{\"@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\\n\":\"e1d8154aba2335b6f75749ea66ea412d\",\"@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\\n\":\"450f76c7d056bbedd174d43e02bb77aa\",\"@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\\n\":\"e37956446879e6a5a36c27f196ea6595\",\"@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\\n\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\\n\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\\n\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\\n\":\"da420bfb1f92af1ad511eeef61a12620\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "3F56428A3BB3AC87540D15915DEEBB1D" + "stringValue": "006A304474C8DF69732BBE509A9EC6F2" } }, { "key": "session.id", "value": { - "stringValue": "5259046BAACF6F61BBF04C180837DE7E" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3010/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json index 03e7b7997..a1cefe36e 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "E4D96E5B59D1495A568BCF5824A04B65" + "stringValue": "B100657DD17F656628D3B13297792059" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "14e00b072c13baaa96e0fadd53a96dd8", - "spanId": "9721fe1ed3da68de", + "traceId": "b5aa790114f8637ff9e997bbaf369be8", + "spanId": "99992fc8261b367e", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771869078744000000", - "endTimeUnixNano": "1771869079469000000", + "startTimeUnixNano": "1771878221250000000", + "endTimeUnixNano": "1771878222570000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "D81892A11A1A81E5D32A8227B7601229" + "stringValue": "965D6FD30D09732339C5A94F823EB4CF" } }, { "key": "emb.tab_id", "value": { - "stringValue": "E4D96E5B59D1495A568BCF5824A04B65" + "stringValue": "B100657DD17F656628D3B13297792059" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 11 + "intValue": 47 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221469000000", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771869078745-8991742550402" + "stringValue": "v5-1771878221252-1743819035988" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 191 + "intValue": 158 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 191 + "intValue": 158 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 96 + "intValue": 9 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 95 + "intValue": 149 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771869078909000000", + "timeUnixNano": "1771878221477000000", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771869079376000000", + "timeUnixNano": "1771878222184000000", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "aaf24a83685140cb", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "dfbfc0317f8cb24c", + "parentSpanId": "b9b07d62a08cb2dc", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771869078514000000", - "endTimeUnixNano": "1771869078617000000", + "startTimeUnixNano": "1771878220958000000", + "endTimeUnixNano": "1771878220986000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -337,13 +343,19 @@ { "key": "http.response_content_length", "value": { - "intValue": 2043 + "intValue": 2045 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7139 + "intValue": 7142 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078514000000", + "timeUnixNano": "1771878220958000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078608000000", + "timeUnixNano": "1771878220968000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078608000000", + "timeUnixNano": "1771878220968000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078609000000", + "timeUnixNano": "1771878220968000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771869078521000000", + "timeUnixNano": "1771878220977000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078609000000", + "timeUnixNano": "1771878220970000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078609000000", + "timeUnixNano": "1771878220970000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078617000000", + "timeUnixNano": "1771878220986000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078617000000", + "timeUnixNano": "1771878220986000000", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "3b62c67b2e0f9119", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "cce6d089cd2904f4", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078656000000", + "startTimeUnixNano": "1771878221019000000", + "endTimeUnixNano": "1771878221088000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -474,6 +486,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078654000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221088000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221088000000", "droppedAttributesCount": 0 } ], @@ -536,18 +554,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "84aba96c5792e231", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "13e6bb3a43a0c1e4", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078632000000", - "endTimeUnixNano": "1771869078657000000", + "startTimeUnixNano": "1771878221019000000", + "endTimeUnixNano": "1771878221089000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -597,6 +615,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -604,49 +628,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078657000000", + "timeUnixNano": "1771878221089000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078657000000", + "timeUnixNano": "1771878221089000000", "droppedAttributesCount": 0 } ], @@ -659,18 +683,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "d886be3573f61e7b", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "7c5661f05224fbc2", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078632000000", - "endTimeUnixNano": "1771869078659000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221091000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -682,25 +706,27 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" + "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 + "intValue": 983 } }, { "key": "http.response_content_length_uncompressed", "value": { "intValue": 2961 + "intValue": 2961 } }, { "key": "http.request.initiator_type", "value": { "stringValue": "link" + "stringValue": "link" } }, { @@ -712,13 +738,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 983 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 1283 } }, { @@ -726,6 +752,12 @@ "value": { "intValue": 2961 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -733,49 +765,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078656000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078659000000", + "timeUnixNano": "1771878221090000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078659000000", + "timeUnixNano": "1771878221091000000", "droppedAttributesCount": 0 } ], @@ -788,18 +820,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "dde8bf7fc2d652ef", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "44bb2aedeedb32dc", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078659000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221092000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -811,19 +843,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" + "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 2405 + "intValue": 2409 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6034 + "intValue": 6046 } }, { @@ -841,19 +873,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 2405 + "intValue": 2409 } }, { "key": "http.response.size", "value": { - "intValue": 2705 + "intValue": 2709 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6034 + "intValue": 6046 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -862,49 +900,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078658000000", + "timeUnixNano": "1771878221091000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078659000000", + "timeUnixNano": "1771878221092000000", "droppedAttributesCount": 0 } ], @@ -917,18 +955,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "a364a20025b63d17", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "470fdc7c3c60570e", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078664000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221097000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -940,25 +978,26 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-279119dcb7a4dfd6.js" + "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4013 + "intValue": 24460 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 95495 } }, { "key": "http.request.initiator_type", "value": { "stringValue": "script" + "stringValue": "script" } }, { @@ -970,19 +1009,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4013 + "intValue": 24460 } }, { "key": "http.response.size", "value": { - "intValue": 4313 + "intValue": 24760 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 + "intValue": 95495 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -991,49 +1036,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078660000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078662000000", + "timeUnixNano": "1771878221092000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078664000000", + "timeUnixNano": "1771878221097000000", "droppedAttributesCount": 0 } ], @@ -1046,18 +1091,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "0af5328b75b5f7a4", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "27c116cfaa894d5b", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078664000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221095000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1069,19 +1114,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95481 + "intValue": 10054 } }, { @@ -1099,19 +1144,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 24455 + "intValue": 4009 } }, { "key": "http.response.size", "value": { - "intValue": 24755 + "intValue": 4309 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95481 + "intValue": 10054 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1120,49 +1171,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078658000000", + "timeUnixNano": "1771878221088000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078660000000", + "timeUnixNano": "1771878221095000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078664000000", + "timeUnixNano": "1771878221095000000", "droppedAttributesCount": 0 } ], @@ -1175,18 +1226,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "884799d764e51bcd", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "e498beb7d8c9394c", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078671000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221097000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1198,19 +1249,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/1becba464fa63580.js" + "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75774 + "intValue": 7535 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253416 + "intValue": 32852 } }, { @@ -1228,19 +1279,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 75774 + "intValue": 7535 } }, { "key": "http.response.size", "value": { - "intValue": 76074 + "intValue": 7835 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253416 + "intValue": 32852 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1249,49 +1306,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078655000000", + "timeUnixNano": "1771878221089000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078660000000", + "timeUnixNano": "1771878221097000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078671000000", + "timeUnixNano": "1771878221097000000", "droppedAttributesCount": 0 } ], @@ -1304,18 +1361,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "386427fc2bfd7c67", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "5d222a74216c9e17", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078632000000", - "endTimeUnixNano": "1771869078665000000", + "startTimeUnixNano": "1771878221020000000", + "endTimeUnixNano": "1771878221100000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1327,13 +1384,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/c1bf42bfadc5f517.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1019 + "intValue": 75770 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 253440 } }, { @@ -1351,19 +1414,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1019 + "intValue": 75770 } }, { "key": "http.response.size", "value": { - "intValue": 1319 + "intValue": 76070 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1019 + "intValue": 253440 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1372,49 +1441,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221020000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078661000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078661000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078661000000", + "timeUnixNano": "1771878221080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078661000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078661000000", + "timeUnixNano": "1771878221081000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078665000000", + "timeUnixNano": "1771878221092000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078665000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 } ], @@ -1427,18 +1496,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "5294242eba1f1ce5", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "d5b118f27fa388e8", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078632000000", - "endTimeUnixNano": "1771869078665000000", + "startTimeUnixNano": "1771878221019000000", + "endTimeUnixNano": "1771878221096000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1450,19 +1519,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" + "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7525 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 32839 + "intValue": 1019 } }, { @@ -1480,19 +1543,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7525 + "intValue": 1019 } }, { "key": "http.response.size", "value": { - "intValue": 7825 + "intValue": 1319 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32839 + "intValue": 1019 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1501,49 +1570,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078632000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078660000000", + "timeUnixNano": "1771878221091000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078665000000", + "timeUnixNano": "1771878221096000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078665000000", + "timeUnixNano": "1771878221096000000", "droppedAttributesCount": 0 } ], @@ -1556,18 +1625,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "8515ff0a279d262a", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "b5d4570f99df22fc", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078631000000", - "endTimeUnixNano": "1771869078671000000", + "startTimeUnixNano": "1771878221019000000", + "endTimeUnixNano": "1771878221100000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1579,19 +1648,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/9c57523c5e026826.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56589 + "intValue": 56807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 205923 + "intValue": 206948 } }, { @@ -1609,19 +1678,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 56589 + "intValue": 56807 } }, { "key": "http.response.size", "value": { - "intValue": 56889 + "intValue": 57107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 205923 + "intValue": 206948 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1630,49 +1705,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078631000000", + "timeUnixNano": "1771878221019000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078659000000", + "timeUnixNano": "1771878221090000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078664000000", + "timeUnixNano": "1771878221096000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078671000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 } ], @@ -1685,18 +1760,18 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "fb133a43c91e1261", - "parentSpanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "b7345ade130ac5cd", + "parentSpanId": "b9b07d62a08cb2dc", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771869078633000000", - "endTimeUnixNano": "1771869078633000000", + "startTimeUnixNano": "1771878221100000000", + "endTimeUnixNano": "1771878221100000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1746,6 +1821,12 @@ "value": { "boolValue": true } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1753,49 +1834,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078633000000", + "timeUnixNano": "1771878221100000000", "droppedAttributesCount": 0 } ], @@ -1808,17 +1889,17 @@ "flags": 257 }, { - "traceId": "e8e13aab56a57dfbc3a977b4999b4302", - "spanId": "b312fb62ca387d72", + "traceId": "be2f31529bfa975d54e910ef8de53dd8", + "spanId": "b9b07d62a08cb2dc", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771869078514000000", - "endTimeUnixNano": "1771869078732000000", + "startTimeUnixNano": "1771878220958000000", + "endTimeUnixNano": "1771878221200000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -1838,6 +1919,12 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1845,49 +1932,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078514000000", + "timeUnixNano": "1771878220958000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771869078674000000", + "timeUnixNano": "1771878221128000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771869078674000000", + "timeUnixNano": "1771878221152000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771869078675000000", + "timeUnixNano": "1771878221153000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771869078732000000", + "timeUnixNano": "1771878221200000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771869078732000000", + "timeUnixNano": "1771878221200000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771869078732000000", + "timeUnixNano": "1771878221200000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771869078712000000", + "timeUnixNano": "1771878221135000000", "droppedAttributesCount": 0 } ], @@ -1908,12 +1995,12 @@ }, "spans": [ { - "traceId": "41bdf51b8f3b58d57aac74ecfc73b468", - "spanId": "daa6b960ef538502", + "traceId": "e555fa939c3404e1d5b70f57dec46613", + "spanId": "d90d286ee2a10878", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771869078906000000", - "endTimeUnixNano": "1771869078920000000", + "startTimeUnixNano": "1771878221473000000", + "endTimeUnixNano": "1771878221485000000", "attributes": [ { "key": "component", @@ -1936,7 +2023,7 @@ { "key": "session.id", "value": { - "stringValue": "7F307BC814ABC79ED248E9070A273CAA" + "stringValue": "1C1772C1C935C676425121601C4C10E4" } }, { @@ -2008,6 +2095,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -2015,49 +2108,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771869078906000000", + "timeUnixNano": "1771878221473000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json index 07979b339..632f60d50 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "33C2BBB8A2BB193492625AF49EFC2E6C" + "stringValue": "AC3831ED46B0F8838D096FED721E3937" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811589975000000", - "observedTimeUnixNano": "1769811589975000000", + "timeUnixNano": "1771878201404000000", + "observedTimeUnixNano": "1771878201405000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341\nmessage@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585\nt/get/<@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026\no@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335\ni2@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144381\ni9/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150468\ntk@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376\ni9@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145615\ncu@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172615\nca@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145178\ni4@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144577\ni8/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144743\ni8@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144688\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:181970\nL/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252487\nr.startTransition@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:1:7357\nL@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252456\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252963\nn@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1293\nl@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1632\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252930\nx@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3768\n" + "stringValue": "message@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215\nmessage@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579\ne/get/<@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020\no@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334\ni2@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144383\ni9/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150470\ntk@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378\ni9@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145617\ncu@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172617\nca@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145180\ni4@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144579\ni6/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144745\ni6@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144690\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:181972\nL/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252509\nr.startTransition@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:1:7357\nL@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252478\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252987\nn@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1293\nl@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1632\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252954\nx@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3768\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\\n\":\"15fd21ff52e283c3bb62052de324ad34\",\"@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\\n\":\"62daae22085216409a457a21cb79a1b4\",\"@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\\n\":\"734e6ec704f57fd3eb85256dd8f38044\",\"@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\\n\":\"ea3ef035957877fbf63a62637cdfcc92\",\"@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\\n\":\"7f0a703a46bf13f33017d981466478d2\",\"@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\\n\":\"f06fd0cd216422bc438c490a646ec9f9\",\"@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\\n\":\"9854c0c6494879a068188282e03f6e99\"}" + "stringValue": "{\"@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\\n\":\"450f76c7d056bbedd174d43e02bb77aa\",\"@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\\n\":\"e37956446879e6a5a36c27f196ea6595\",\"@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\\n\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\\n\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\\n\":\"e1d8154aba2335b6f75749ea66ea412d\",\"@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\\n\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\\n\":\"da420bfb1f92af1ad511eeef61a12620\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "DD638D16B92CB4ED217AFC918397D7A6" + "stringValue": "4F3151184BABE94836912A170966AC3E" } }, { "key": "session.id", "value": { - "stringValue": "FBC8B563DC4E42A66D581474466233DF" + "stringValue": "DD508DBD70128CDFA64B06626A60B361" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3010/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json index 91bd94486..c1a4d7c9f 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "8B020178628EDA353D95BA4F4011C458" + "stringValue": "026F58F24683AE9465814E452DCF5E2E" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "54b374cddbea1ac1f7d1c158fcd92a69", - "spanId": "efddced8408d0366", + "traceId": "097dbe20716837e2b160e131c6a3df97", + "spanId": "18533b7da8961780", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811589263000000", - "endTimeUnixNano": "1769811589420000000", + "startTimeUnixNano": "1771878199292000000", + "endTimeUnixNano": "1771878199577000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "7E0BEA941AD5FC70BA367C9FD69EA1C8" + "stringValue": "187112E6670FDFBF00CEBFC3E0A1772F" } }, { "key": "emb.tab_id", "value": { - "stringValue": "8B020178628EDA353D95BA4F4011C458" + "stringValue": "026F58F24683AE9465814E452DCF5E2E" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 12 + "intValue": 13 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "bed07fb3243010d3", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "ab8f7cfe917bd954", + "parentSpanId": "808a9250005fc4ad", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811589151000000", - "endTimeUnixNano": "1769811589161000000", + "startTimeUnixNano": "1771878198993000000", + "endTimeUnixNano": "1771878199076000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -201,13 +207,19 @@ { "key": "http.response_content_length", "value": { - "intValue": 2042 + "intValue": 2045 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7139 + "intValue": 7142 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589151000000", + "timeUnixNano": "1771878198993000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589158000000", + "timeUnixNano": "1771878199047000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589158000000", + "timeUnixNano": "1771878199047000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589158000000", + "timeUnixNano": "1771878199047000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811589152000000", + "timeUnixNano": "1771878198998000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589158000000", + "timeUnixNano": "1771878199050000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589158000000", + "timeUnixNano": "1771878199050000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589161000000", + "timeUnixNano": "1771878199075000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589161000000", + "timeUnixNano": "1771878199076000000", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "0227fd54e53368f8", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "b642fa3e0f9aec8b", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589166000000", - "endTimeUnixNano": "1769811589185000000", + "startTimeUnixNano": "1771878199126000000", + "endTimeUnixNano": "1771878199190000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -338,6 +350,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199126000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199126000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199126000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199126000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199126000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589182000000", + "timeUnixNano": "1771878199186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 } ], @@ -400,18 +418,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "020f6bb5f1b5255a", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "e996adfe97f114f8", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589166000000", - "endTimeUnixNano": "1769811589186000000", + "startTimeUnixNano": "1771878199127000000", + "endTimeUnixNano": "1771878199195000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -461,6 +479,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -468,49 +492,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199127000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 } ], @@ -523,18 +547,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "1a8cbfe4a6d8d0f8", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "a31c74633951b786", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589166000000", - "endTimeUnixNano": "1769811589187000000", + "startTimeUnixNano": "1771878199128000000", + "endTimeUnixNano": "1771878199196000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -546,19 +570,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" + "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 2405 + "intValue": 983 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6034 + "intValue": 2961 } }, { @@ -576,19 +600,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 2405 + "intValue": 983 } }, { "key": "http.response.size", "value": { - "intValue": 2705 + "intValue": 1283 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6034 + "intValue": 2961 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -597,49 +627,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199128000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199196000000", "droppedAttributesCount": 0 } ], @@ -652,18 +682,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "2a819dbc124ce84c", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "ffa91d529872440a", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589166000000", - "endTimeUnixNano": "1769811589186000000", + "startTimeUnixNano": "1771878199127000000", + "endTimeUnixNano": "1771878199195000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -675,19 +705,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" + "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 + "intValue": 2409 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 2961 + "intValue": 6046 } }, { @@ -705,19 +735,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 2409 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 2709 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 + "intValue": 6046 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -726,49 +762,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199127000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199188000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199188000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589185000000", + "timeUnixNano": "1771878199189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 } ], @@ -781,18 +817,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "14ac0cf980e30447", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "9dc97ad3aa1799f9", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589166000000", - "endTimeUnixNano": "1769811589199000000", + "startTimeUnixNano": "1771878199129000000", + "endTimeUnixNano": "1771878199211000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -804,19 +840,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75775 + "intValue": 75770 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253416 + "intValue": 253440 } }, { @@ -834,19 +870,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 75775 + "intValue": 75770 } }, { "key": "http.response.size", "value": { - "intValue": 76075 + "intValue": 76070 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253416 + "intValue": 253440 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -855,49 +897,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199191000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589166000000", + "timeUnixNano": "1771878199191000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589186000000", + "timeUnixNano": "1771878199191000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589189000000", + "timeUnixNano": "1771878199200000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589199000000", + "timeUnixNano": "1771878199211000000", "droppedAttributesCount": 0 } ], @@ -910,18 +952,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "1a16f9980b8cde8d", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "8bc74053e5563a73", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589168000000", - "endTimeUnixNano": "1769811589190000000", + "startTimeUnixNano": "1771878199129000000", + "endTimeUnixNano": "1771878199199000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -933,13 +975,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4012 + "intValue": 4009 } }, { @@ -963,13 +1005,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 4012 + "intValue": 4009 } }, { "key": "http.response.size", "value": { - "intValue": 4312 + "intValue": 4309 } }, { @@ -977,6 +1019,12 @@ "value": { "intValue": 10054 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -984,49 +1032,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199191000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589190000000", + "timeUnixNano": "1771878199199000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589190000000", + "timeUnixNano": "1771878199199000000", "droppedAttributesCount": 0 } ], @@ -1039,18 +1087,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "6f405f0c0f5b24d9", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "8aad020736c06dc3", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589167000000", - "endTimeUnixNano": "1769811589194000000", + "startTimeUnixNano": "1771878199129000000", + "endTimeUnixNano": "1771878199202000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1062,13 +1110,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" + "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1020 + "intValue": 1019 } }, { @@ -1086,19 +1134,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1020 + "intValue": 1019 } }, { "key": "http.response.size", "value": { - "intValue": 1320 + "intValue": 1319 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1020 + "intValue": 1019 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1107,49 +1161,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589189000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589189000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589189000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589189000000", + "timeUnixNano": "1771878199129000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589190000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589194000000", + "timeUnixNano": "1771878199202000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589194000000", + "timeUnixNano": "1771878199202000000", "droppedAttributesCount": 0 } ], @@ -1162,18 +1216,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "1530815ff58a7cff", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "3b27408f142a4381", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589168000000", - "endTimeUnixNano": "1769811589193000000", + "startTimeUnixNano": "1771878199131000000", + "endTimeUnixNano": "1771878199204000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1185,19 +1239,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" + "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7525 + "intValue": 24460 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32839 + "intValue": 95495 } }, { @@ -1215,19 +1269,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7525 + "intValue": 24460 } }, { "key": "http.response.size", "value": { - "intValue": 7825 + "intValue": 24760 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32839 + "intValue": 95495 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1236,49 +1296,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199131000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589188000000", + "timeUnixNano": "1771878199192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589192000000", + "timeUnixNano": "1771878199201000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589193000000", + "timeUnixNano": "1771878199204000000", "droppedAttributesCount": 0 } ], @@ -1291,18 +1351,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "d949664dccefb674", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "bc0daa2d49ab51f9", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589168000000", - "endTimeUnixNano": "1769811589193000000", + "startTimeUnixNano": "1771878199130000000", + "endTimeUnixNano": "1771878199205000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1314,19 +1374,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" + "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24455 + "intValue": 7535 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95481 + "intValue": 32852 } }, { @@ -1344,19 +1404,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 24455 + "intValue": 7535 } }, { "key": "http.response.size", "value": { - "intValue": 24755 + "intValue": 7835 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95481 + "intValue": 32852 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1365,49 +1431,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589168000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589187000000", + "timeUnixNano": "1771878199195000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589190000000", + "timeUnixNano": "1771878199203000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589193000000", + "timeUnixNano": "1771878199205000000", "droppedAttributesCount": 0 } ], @@ -1420,18 +1486,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "1dab95e995493b02", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "a0078adaca7ae64f", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589167000000", - "endTimeUnixNano": "1769811589199000000", + "startTimeUnixNano": "1771878199130000000", + "endTimeUnixNano": "1771878199214000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1443,19 +1509,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 49283 + "intValue": 56807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 183550 + "intValue": 206948 } }, { @@ -1473,19 +1539,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 49283 + "intValue": 56807 } }, { "key": "http.response.size", "value": { - "intValue": 49583 + "intValue": 57107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 183550 + "intValue": 206948 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1494,49 +1566,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589167000000", + "timeUnixNano": "1771878199130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589188000000", + "timeUnixNano": "1771878199196000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589192000000", + "timeUnixNano": "1771878199205000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589199000000", + "timeUnixNano": "1771878199214000000", "droppedAttributesCount": 0 } ], @@ -1549,18 +1621,18 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "fab84e1a656e4701", - "parentSpanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "2ff917ad50d32a08", + "parentSpanId": "808a9250005fc4ad", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811589170000000", - "endTimeUnixNano": "1769811589170000000", + "startTimeUnixNano": "1771878199137000000", + "endTimeUnixNano": "1771878199137000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1610,6 +1682,12 @@ "value": { "boolValue": true } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1617,49 +1695,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811589170000000", + "timeUnixNano": "1771878199137000000", "droppedAttributesCount": 0 } ], @@ -1672,17 +1750,17 @@ "flags": 257 }, { - "traceId": "01c3841e86cd76b185b3a5b3efa86874", - "spanId": "8cd0c55cbce40a39", + "traceId": "12f5141f0675e79bbe3fefb188da4f2a", + "spanId": "808a9250005fc4ad", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811589151000000", - "endTimeUnixNano": "1769811589249000000", + "startTimeUnixNano": "1771878198992000000", + "endTimeUnixNano": "1771878199278000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" + "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" } }, { @@ -1700,7 +1778,13 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1709,49 +1793,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811589151000000", + "timeUnixNano": "1771878198992000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811589199000000", + "timeUnixNano": "1771878199210000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811589210000000", + "timeUnixNano": "1771878199210000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811589211000000", + "timeUnixNano": "1771878199211000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811589249000000", + "timeUnixNano": "1771878199278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811589249000000", + "timeUnixNano": "1771878199278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811589249000000", + "timeUnixNano": "1771878199278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811589213000000", + "timeUnixNano": "1771878199227000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json index d6f55254e..228d54951 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "05F145236AEE11595B87C5969BF02654" + "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811596595000000", - "observedTimeUnixNano": "1769811596596000000", + "timeUnixNano": "1771878225664000000", + "observedTimeUnixNano": "1771878225665000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660\nmessage@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:51\n" + "stringValue": "message@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870\nmessage@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:51\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\\n\":\"f27043cc7214fdbab0262293a0060a16\",\"@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\\n\":\"db0d46c3ca28c53466d447f145d3d31f\",\"@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\\n\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\\n\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\\n\":\"ae15458582b5d5019a30fa307e376b50\",\"@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\\n\":\"9040bed901f1ec37d64a729e40eb25e5\"}" + "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\\n\":\"76b5dab0e72069584d89e0b302279695\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\\n\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\\n\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\\n\":\"d035e6671d0c3186ab8408ec8453b89d\",\"@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\\n\":\"166e3b7993ce96be2e298450dca31ca8\",\"@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\\n\":\"e2f6858a89ef8eeb481256284771da3c\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "4B4CBC598D321BD270B5ACCF4AD8288C" + "stringValue": "847F4C283C2D5FA8221AFB7FF3DF40CE" } }, { "key": "session.id", "value": { - "stringValue": "25285CE2CB42907C0553870FA234A416" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3012/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json index 56b915cd3..c78d8ad06 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "65F652AF3A833A59777F4B208A3C5891" + "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "0fc8dc60f9352e75489c3e71645b1b25", - "spanId": "c45e863bd97de062", + "traceId": "63db902f441a710a59a543009074c15a", + "spanId": "274f3e2ca248a0ff", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374171069000000", - "endTimeUnixNano": "1771374171724000000", + "startTimeUnixNano": "1771878224442000000", + "endTimeUnixNano": "1771878225861000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "CB3693CE97187B7A40F4DE1DF113E672" + "stringValue": "E2BE347B0C0F92EF6898E9287EAC60DF" } }, { "key": "emb.tab_id", "value": { - "stringValue": "65F652AF3A833A59777F4B208A3C5891" + "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 6 + "intValue": 86 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224962000000", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374171070-8539097792451" + "stringValue": "v5-1771878224444-9278207187306" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 55 + "intValue": 655 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 55 + "intValue": 655 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 8 + "intValue": 55 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 47 + "intValue": 600 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374171232000000", + "timeUnixNano": "1771878224968000000", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374171665000000", + "timeUnixNano": "1771878225663000000", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "bbf98dcb95bfd2ce", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "95da3f87c2900732", + "parentSpanId": "cdecb2d64a4e50a8", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374170995000000", - "endTimeUnixNano": "1771374171004000000", + "startTimeUnixNano": "1771878223490000000", + "endTimeUnixNano": "1771878223568000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -337,7 +343,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2055 + "intValue": 2054 } }, { @@ -345,6 +351,12 @@ "value": { "intValue": 6204 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374170995000000", + "timeUnixNano": "1771878223490000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171001000000", + "timeUnixNano": "1771878223505000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171001000000", + "timeUnixNano": "1771878223505000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171001000000", + "timeUnixNano": "1771878223505000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374170995000000", + "timeUnixNano": "1771878223505000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171001000000", + "timeUnixNano": "1771878223506000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171001000000", + "timeUnixNano": "1771878223506000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171003000000", + "timeUnixNano": "1771878223560000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171004000000", + "timeUnixNano": "1771878223568000000", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "1a2e88099fdbc044", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "2066903e30352383", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171008000000", - "endTimeUnixNano": "1771374171028000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224003000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -474,6 +486,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223993000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878224003000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878224003000000", "droppedAttributesCount": 0 } ], @@ -536,18 +554,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "7e76aff6d847e2b1", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "810c674c6e0db905", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171008000000", - "endTimeUnixNano": "1771374171029000000", + "startTimeUnixNano": "1771878223607000000", + "endTimeUnixNano": "1771878224004000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -597,6 +615,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -604,49 +628,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171027000000", + "timeUnixNano": "1771878223995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171029000000", + "timeUnixNano": "1771878224004000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171029000000", + "timeUnixNano": "1771878224004000000", "droppedAttributesCount": 0 } ], @@ -659,18 +683,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "18e6ffe4f9967669", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "b56a6e2dea330cd9", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171008000000", - "endTimeUnixNano": "1771374171029000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224060000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -726,6 +750,12 @@ "value": { "intValue": 2903 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -733,49 +763,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171028000000", + "timeUnixNano": "1771878224059000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171029000000", + "timeUnixNano": "1771878224060000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171029000000", + "timeUnixNano": "1771878224060000000", "droppedAttributesCount": 0 } ], @@ -788,18 +818,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "bb20c0b785ed0751", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "d8ceea116d92173e", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171009000000", - "endTimeUnixNano": "1771374171032000000", + "startTimeUnixNano": "1771878223607000000", + "endTimeUnixNano": "1771878224059000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -811,19 +841,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 1841 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -835,19 +871,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 + "intValue": 3567 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -856,49 +898,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171031000000", + "timeUnixNano": "1771878224058000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224059000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224059000000", "droppedAttributesCount": 0 } ], @@ -911,18 +953,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "48be2b905285890d", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "9d187da252e9d9a3", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171009000000", - "endTimeUnixNano": "1771374171031000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224075000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -934,25 +976,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 + "intValue": 54541 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 3567 + "intValue": 173257 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -964,19 +1006,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 + "intValue": 173257 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -985,49 +1033,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878224060000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171031000000", + "timeUnixNano": "1771878224062000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171031000000", + "timeUnixNano": "1771878224075000000", "droppedAttributesCount": 0 } ], @@ -1040,18 +1088,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "1e4fe8b0c8383f10", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "71a56997d82899ac", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171009000000", - "endTimeUnixNano": "1771374171036000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224075000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1107,6 +1155,12 @@ "value": { "intValue": 172733 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1114,49 +1168,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171009000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171030000000", + "timeUnixNano": "1771878224061000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224068000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171036000000", + "timeUnixNano": "1771878224075000000", "droppedAttributesCount": 0 } ], @@ -1169,18 +1223,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "dd336ef3cfd7c058", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "e46e346a1a654cad", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171008000000", - "endTimeUnixNano": "1771374171036000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224074000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1192,19 +1246,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 173257 + "intValue": 795 } }, { @@ -1222,19 +1270,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 + "intValue": 795 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1243,49 +1297,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878224061000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878224061000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878224061000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171008000000", + "timeUnixNano": "1771878224062000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171029000000", + "timeUnixNano": "1771878224062000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224074000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171036000000", + "timeUnixNano": "1771878224074000000", "droppedAttributesCount": 0 } ], @@ -1298,18 +1352,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "f77ab144533400a2", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "209cc2f16e0ebecf", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171010000000", - "endTimeUnixNano": "1771374171032000000", + "startTimeUnixNano": "1771878223609000000", + "endTimeUnixNano": "1771878224082000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1359,6 +1413,12 @@ "value": { "intValue": 564 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1366,49 +1426,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171031000000", + "timeUnixNano": "1771878224080000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224082000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224082000000", "droppedAttributesCount": 0 } ], @@ -1421,18 +1481,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "ae76fd5b0080c4d0", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "7a1a6db24c281945", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171010000000", - "endTimeUnixNano": "1771374171036000000", + "startTimeUnixNano": "1771878223609000000", + "endTimeUnixNano": "1771878224097000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1488,6 +1548,12 @@ "value": { "intValue": 121417 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1495,49 +1561,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224085000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878224090000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171036000000", + "timeUnixNano": "1771878224097000000", "droppedAttributesCount": 0 } ], @@ -1550,18 +1616,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "248ee1c00d09d32d", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "68921880756fb08e", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171010000000", - "endTimeUnixNano": "1771374171035000000", + "startTimeUnixNano": "1771878223609000000", + "endTimeUnixNano": "1771878224128000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1573,19 +1639,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-efb5c652168403df.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20484 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 75206 + "intValue": 876 } }, { @@ -1603,19 +1663,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 20484 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 20784 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 75206 + "intValue": 876 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1624,49 +1690,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171032000000", + "timeUnixNano": "1771878224125000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878224128000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171035000000", + "timeUnixNano": "1771878224128000000", "droppedAttributesCount": 0 } ], @@ -1679,18 +1745,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "47d2ab746a3cb264", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "04bab0e5220ae7cf", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171010000000", - "endTimeUnixNano": "1771374171035000000", + "startTimeUnixNano": "1771878223608000000", + "endTimeUnixNano": "1771878224108000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1702,13 +1768,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-2a4174a4007a9a69.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 20675 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 76090 } }, { @@ -1726,19 +1798,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 20675 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 20975 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 + "intValue": 76090 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1747,49 +1825,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171033000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171033000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171033000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171033000000", + "timeUnixNano": "1771878223608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171033000000", + "timeUnixNano": "1771878224101000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171035000000", + "timeUnixNano": "1771878224105000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171035000000", + "timeUnixNano": "1771878224108000000", "droppedAttributesCount": 0 } ], @@ -1802,18 +1880,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "3a69219a28db760a", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "b7bd1a4506675216", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171010000000", - "endTimeUnixNano": "1771374171035000000", + "startTimeUnixNano": "1771878223609000000", + "endTimeUnixNano": "1771878224130000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1825,13 +1903,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-5334fee99ab53793.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 656 + "intValue": 658 } }, { @@ -1855,13 +1933,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 656 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 956 + "intValue": 958 } }, { @@ -1869,6 +1947,12 @@ "value": { "intValue": 1033 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1876,49 +1960,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171010000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878223609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171034000000", + "timeUnixNano": "1771878224127000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171035000000", + "timeUnixNano": "1771878224130000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171035000000", + "timeUnixNano": "1771878224130000000", "droppedAttributesCount": 0 } ], @@ -1931,18 +2015,18 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "b3751d53a873abdb", - "parentSpanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "2c91b4133e1d41e8", + "parentSpanId": "cdecb2d64a4e50a8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374171013000000", - "endTimeUnixNano": "1771374171013000000", + "startTimeUnixNano": "1771878223634000000", + "endTimeUnixNano": "1771878223634000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -1992,6 +2076,12 @@ "value": { "boolValue": true } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1999,49 +2089,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171013000000", + "timeUnixNano": "1771878223634000000", "droppedAttributesCount": 0 } ], @@ -2054,17 +2144,17 @@ "flags": 257 }, { - "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", - "spanId": "ccfca9d6eb3991b2", + "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", + "spanId": "cdecb2d64a4e50a8", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374170994000000", - "endTimeUnixNano": "1771374171071000000", + "startTimeUnixNano": "1771878223490000000", + "endTimeUnixNano": "1771878224497000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -2084,50 +2174,62 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878223490000000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374171037000000", + "timeUnixNano": "1771878224156000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374171037000000", + "timeUnixNano": "1771878224159000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374171037000000", + "timeUnixNano": "1771878224160000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374171071000000", + "timeUnixNano": "1771878224496000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374171071000000", + "timeUnixNano": "1771878224496000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374171071000000", + "timeUnixNano": "1771878224497000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771374171049000000", + "timeUnixNano": "1771878224160000000", "droppedAttributesCount": 0 } ], @@ -2148,12 +2250,12 @@ }, "spans": [ { - "traceId": "305b45952d925822ffc908d0544e22a0", - "spanId": "25b326bd71171d00", + "traceId": "5c8b0c4ec87270d4634d85ef67f28a41", + "spanId": "06561bb9296c8172", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374171229000000", - "endTimeUnixNano": "1771374171233000000", + "startTimeUnixNano": "1771878224966000000", + "endTimeUnixNano": "1771878225041000000", "attributes": [ { "key": "component", @@ -2176,7 +2278,7 @@ { "key": "session.id", "value": { - "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" + "stringValue": "2879B1F22D88217EEC1220A948C5A358" } }, { @@ -2248,6 +2350,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -2255,49 +2363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374171229000000", + "timeUnixNano": "1771878224967000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json index 060982b63..ceb0bead1 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "C18AD6D7C2535F1503B61EF76AA393E0" + "stringValue": "542F1189D851C2A3DAF886C4CD85654C" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811591199000000", - "observedTimeUnixNano": "1769811591200000000", + "timeUnixNano": "1771878203343000000", + "observedTimeUnixNano": "1771878203344000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660\nmessage@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:51\n" + "stringValue": "message@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870\nmessage@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:51\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\\n\":\"db0d46c3ca28c53466d447f145d3d31f\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\\n\":\"f27043cc7214fdbab0262293a0060a16\",\"@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\\n\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\\n\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\\n\":\"ae15458582b5d5019a30fa307e376b50\",\"@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\\n\":\"9040bed901f1ec37d64a729e40eb25e5\"}" + "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\\n\":\"76b5dab0e72069584d89e0b302279695\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\\n\":\"d035e6671d0c3186ab8408ec8453b89d\",\"@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\\n\":\"166e3b7993ce96be2e298450dca31ca8\",\"@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\\n\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\\n\":\"e2f6858a89ef8eeb481256284771da3c\",\"@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\\n\":\"9ab215c57ab24f3f73f40b0053e5b8b9\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "C13C5148894A5D1E13D52997CAA2ABBB" + "stringValue": "EF61605F0587A76A9000CEC46AE69377" } }, { "key": "session.id", "value": { - "stringValue": "92C1FD3792326A691B1E721FAEC5E963" + "stringValue": "71CAE1ACBA3653111C049DD1A311D5B3" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3012/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json index 876eb18e7..078c0aac2 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "1B6612F1A6291978F213933B6F2CD679" + "stringValue": "1AF2EB88958E51AD8F301775A1440944" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "da00aeccf0680a60cedb276c2a72f78e", - "spanId": "9ea3a3c9ec56ee34", + "traceId": "e61410e03b877a92c53c50267aac9226", + "spanId": "0d0e9985fe4164cb", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811590516000000", - "endTimeUnixNano": "1769811590684000000", + "startTimeUnixNano": "1771878200470000000", + "endTimeUnixNano": "1771878200855000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "A85202F12BB6F474CF26F5B883630673" + "stringValue": "60681E2D62DDFA7611EBD8039E9575E3" } }, { "key": "emb.tab_id", "value": { - "stringValue": "1B6612F1A6291978F213933B6F2CD679" + "stringValue": "1AF2EB88958E51AD8F301775A1440944" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 14 + "intValue": 10 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "c368e6e0428cac17", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "49adbf455957cfc3", + "parentSpanId": "aeecfc834a2c56c1", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811590401000000", - "endTimeUnixNano": "1769811590410000000", + "startTimeUnixNano": "1771878200040000000", + "endTimeUnixNano": "1771878200077000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -201,7 +207,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2055 + "intValue": 2054 } }, { @@ -209,6 +215,12 @@ "value": { "intValue": 6204 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590401000000", + "timeUnixNano": "1771878200040000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590407000000", + "timeUnixNano": "1771878200052000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590407000000", + "timeUnixNano": "1771878200052000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590407000000", + "timeUnixNano": "1771878200052000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811590401000000", + "timeUnixNano": "1771878200047000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590407000000", + "timeUnixNano": "1771878200052000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590407000000", + "timeUnixNano": "1771878200052000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590410000000", + "timeUnixNano": "1771878200076000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590410000000", + "timeUnixNano": "1771878200077000000", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "7e8359c4bfb12fe5", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "e5693d8382fdad1b", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590441000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200284000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -338,6 +350,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590438000000", + "timeUnixNano": "1771878200277000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 } ], @@ -400,18 +418,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "a1416c598640baab", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "1452232cece92cf7", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590444000000", + "startTimeUnixNano": "1771878200148000000", + "endTimeUnixNano": "1771878200284000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -461,6 +479,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -468,49 +492,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590444000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590444000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 } ], @@ -523,18 +547,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "116d0445a93fcaad", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "d50c690830e33442", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590446000000", + "startTimeUnixNano": "1771878200148000000", + "endTimeUnixNano": "1771878200284000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -590,6 +614,12 @@ "value": { "intValue": 2903 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -597,49 +627,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590440000000", + "timeUnixNano": "1771878200278000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590445000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590446000000", + "timeUnixNano": "1771878200284000000", "droppedAttributesCount": 0 } ], @@ -652,18 +682,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "9ecf9ac30e0125dc", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "092430459e2bb41a", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590446000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200288000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -675,19 +705,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 564 + "intValue": 1841 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -699,19 +735,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 564 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 864 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 564 + "intValue": 3567 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -720,49 +762,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590442000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590442000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200286000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590446000000", + "timeUnixNano": "1771878200288000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590446000000", + "timeUnixNano": "1771878200288000000", "droppedAttributesCount": 0 } ], @@ -775,18 +817,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "189edbe6f87ecdcc", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "c5d751fa144db9ed", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590447000000", + "startTimeUnixNano": "1771878200148000000", + "endTimeUnixNano": "1771878200302000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -798,13 +840,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 46245 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 172733 } }, { @@ -822,19 +870,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 + "intValue": 172733 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -843,49 +897,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590444000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590444000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590444000000", + "timeUnixNano": "1771878200293000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590447000000", + "timeUnixNano": "1771878200298000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590447000000", + "timeUnixNano": "1771878200302000000", "droppedAttributesCount": 0 } ], @@ -898,18 +952,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "4c92d892851630a0", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "a4ba5b21ae1fb794", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590449000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200302000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -921,13 +975,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 795 } }, { @@ -945,19 +999,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 + "intValue": 795 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -966,49 +1026,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590446000000", + "timeUnixNano": "1771878200301000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590449000000", + "timeUnixNano": "1771878200302000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590449000000", + "timeUnixNano": "1771878200302000000", "droppedAttributesCount": 0 } ], @@ -1021,18 +1081,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "6f7df2a9cfe1870e", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "c847560916554121", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590417000000", - "endTimeUnixNano": "1769811590452000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200311000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1044,19 +1104,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 1033 + "intValue": 564 } }, { @@ -1074,19 +1128,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 564 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 864 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 + "intValue": 564 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1095,49 +1155,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590417000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590446000000", + "timeUnixNano": "1771878200309000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590451000000", + "timeUnixNano": "1771878200311000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590452000000", + "timeUnixNano": "1771878200311000000", "droppedAttributesCount": 0 } ], @@ -1150,18 +1210,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "2ed5ab88ecd4db2f", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "1ce2c80de0c18a22", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590453000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200329000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1173,19 +1233,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 30021 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 98221 + "intValue": 876 } }, { @@ -1203,19 +1257,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 30021 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 30321 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 98221 + "intValue": 876 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1224,49 +1284,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590445000000", + "timeUnixNano": "1771878200318000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590449000000", + "timeUnixNano": "1771878200329000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590453000000", + "timeUnixNano": "1771878200329000000", "droppedAttributesCount": 0 } ], @@ -1279,18 +1339,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "a720926ff4ee6842", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "1da9c39aa119b430", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590455000000", + "startTimeUnixNano": "1771878200148000000", + "endTimeUnixNano": "1771878200303000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1302,19 +1362,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20593 + "intValue": 54541 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 75431 + "intValue": 173257 } }, { @@ -1332,19 +1392,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 20593 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 20893 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 75431 + "intValue": 173257 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1353,49 +1419,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590447000000", + "timeUnixNano": "1771878200292000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590452000000", + "timeUnixNano": "1771878200299000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590455000000", + "timeUnixNano": "1771878200303000000", "droppedAttributesCount": 0 } ], @@ -1408,18 +1474,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "90b6f1f00fccc876", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "3d6ae8a96a2b846a", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590455000000", + "startTimeUnixNano": "1771878200147000000", + "endTimeUnixNano": "1771878200336000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1431,19 +1497,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 + "intValue": 20675 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 172733 + "intValue": 76090 } }, { @@ -1461,19 +1527,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 20675 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 20975 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 + "intValue": 76090 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1482,49 +1554,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590443000000", + "timeUnixNano": "1771878200318000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590448000000", + "timeUnixNano": "1771878200334000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590455000000", + "timeUnixNano": "1771878200336000000", "droppedAttributesCount": 0 } ], @@ -1537,18 +1609,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "82e0c44fd8f3969a", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "1364b227ce3774be", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590456000000", + "startTimeUnixNano": "1771878200148000000", + "endTimeUnixNano": "1771878200338000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1560,19 +1632,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 + "intValue": 37762 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 173257 + "intValue": 121417 } }, { @@ -1590,19 +1662,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 37762 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 38062 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 + "intValue": 121417 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1611,49 +1689,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590441000000", + "timeUnixNano": "1771878200318000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590447000000", + "timeUnixNano": "1771878200334000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590456000000", + "timeUnixNano": "1771878200338000000", "droppedAttributesCount": 0 } ], @@ -1666,18 +1744,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "72259fc08625f021", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "e73a8d3dc36dcb77", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590418000000", - "endTimeUnixNano": "1769811590455000000", + "startTimeUnixNano": "1771878200149000000", + "endTimeUnixNano": "1771878200337000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1689,25 +1767,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 + "intValue": 658 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 3567 + "intValue": 1033 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -1719,19 +1797,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 958 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 + "intValue": 1033 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1740,49 +1824,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200319000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200319000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200319000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590418000000", + "timeUnixNano": "1771878200320000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590450000000", + "timeUnixNano": "1771878200320000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590455000000", + "timeUnixNano": "1771878200337000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590455000000", + "timeUnixNano": "1771878200337000000", "droppedAttributesCount": 0 } ], @@ -1795,18 +1879,18 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "f320721c9ad0fb0b", - "parentSpanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "9c98ef570eb26cac", + "parentSpanId": "aeecfc834a2c56c1", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811590421000000", - "endTimeUnixNano": "1769811590421000000", + "startTimeUnixNano": "1771878200154000000", + "endTimeUnixNano": "1771878200154000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1856,6 +1940,12 @@ "value": { "boolValue": true } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1863,49 +1953,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811590421000000", + "timeUnixNano": "1771878200154000000", "droppedAttributesCount": 0 } ], @@ -1918,17 +2008,17 @@ "flags": 257 }, { - "traceId": "cc5b4075c8cc400a828201d37534c144", - "spanId": "8136bf80c85ad924", + "traceId": "85fb8789283e7c1f150dec33fe98fd18", + "spanId": "aeecfc834a2c56c1", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811590401000000", - "endTimeUnixNano": "1769811590522000000", + "startTimeUnixNano": "1771878200039000000", + "endTimeUnixNano": "1771878200507000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "614CB947F1661B2FD285EE85D7418395" + "stringValue": "2A5F27E71784114C218C723BD55D2F7C" } }, { @@ -1946,52 +2036,64 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878200039000000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811590455000000", + "timeUnixNano": "1771878200357000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811590456000000", + "timeUnixNano": "1771878200389000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811590456000000", + "timeUnixNano": "1771878200393000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811590521000000", + "timeUnixNano": "1771878200483000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811590521000000", + "timeUnixNano": "1771878200483000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811590522000000", + "timeUnixNano": "1771878200507000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811590454000000", + "timeUnixNano": "1771878200393000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json index 97adb8488..af38a5ae1 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "3D3889001BC00198D5B774F3B4BA0AF7" + "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811599135000000", - "observedTimeUnixNano": "1769811599135000000", + "timeUnixNano": "1771878239983000000", + "observedTimeUnixNano": "1771878239984000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103\nmessage@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948\nt/get/<@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465\na@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529\nsY@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223932\nM@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:1:9786\nA@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223901\nasync*@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224409\nn@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2295\na@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2618\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224377\nq@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3696\n" + "stringValue": "message@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918\nmessage@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942\nt/get/<@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459\na@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528\nsY@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223938\nM@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:1:9806\nA@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223907\nasync*@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224415\nn@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2295\na@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2618\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224383\nq@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3696\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\\n\":\"1d128b39b01355ec232666eb51ed9fdb\",\"@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\\n\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\\n\":\"064fbb708a69758b5a0ab80f376cb08a\",\"@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\\n\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\\n\":\"5abe9f02e7f14cba35bf7920024817dc\",\"@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\\n\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\\n\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" + "stringValue": "{\"@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\\n\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\\n\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\\n\":\"15b8645cace346d9e6ceba56f882762f\",\"@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\\n\":\"9949ad0f7ff24b0affc3f595090658d9\",\"@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\\n\":\"4fb973c036e18b810ee3da31e51cd097\",\"@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\\n\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\",\"@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\\n\":\"8965f2228d245fa9a1ea8196a2783196\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "4DA785C557E697A0EF81126A26150526" + "stringValue": "D7A49BD72FC502D3FF108AFF2A3C3EFC" } }, { "key": "session.id", "value": { - "stringValue": "C15B600A327810F939F7BCD9B9A2982D" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3014/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json index 481c2084d..5fd0cdf0f 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "7BF8F624FD5FEBA4E35C90E7E2DCFB4D" + "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "e348c39367f9e20c9649508af22f05ab", - "spanId": "eef6bdc63fbfaefc", + "traceId": "b842c623ddf1eda82a4a1238301b960e", + "spanId": "5f6d64551abc14b2", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771374173648000000", - "endTimeUnixNano": "1771374174271000000", + "startTimeUnixNano": "1771878238792000000", + "endTimeUnixNano": "1771878240176000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "A21CFCDD1BBE5C875B8FCF2D0C51694C" + "stringValue": "245B46B2940CAC84E82A415B1942FBBF" } }, { "key": "emb.tab_id", "value": { - "stringValue": "7BF8F624FD5FEBA4E35C90E7E2DCFB4D" + "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 5 + "intValue": 76 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -183,7 +189,7 @@ } ], "name": "click", - "timeUnixNano": "1771374173801000000", + "timeUnixNano": "1771878239378000000", "droppedAttributesCount": 0 }, { @@ -221,19 +227,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771374173649-7976689934426" + "stringValue": "v5-1771878238795-2784258440707" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 46 + "intValue": 322 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 46 + "intValue": 322 } }, { @@ -245,7 +251,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 4 + "intValue": 46 } }, { @@ -263,12 +269,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 42 + "intValue": 276 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771374173805000000", + "timeUnixNano": "1771878239388000000", "droppedAttributesCount": 0 }, { @@ -293,7 +299,7 @@ } ], "name": "click", - "timeUnixNano": "1771374174232000000", + "timeUnixNano": "1771878239981000000", "droppedAttributesCount": 0 } ], @@ -314,18 +320,18 @@ }, "spans": [ { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "00aa9f9d4e929124", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "4babdfb143f0d959", + "parentSpanId": "1796396d59c346e7", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771374173580000000", - "endTimeUnixNano": "1771374173584000000", + "startTimeUnixNano": "1771878238405000000", + "endTimeUnixNano": "1771878238453000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -337,7 +343,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1970 + "intValue": 1963 } }, { @@ -345,6 +351,12 @@ "value": { "intValue": 6239 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -352,55 +364,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173580000000", + "timeUnixNano": "1771878238405000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173582000000", + "timeUnixNano": "1771878238421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173582000000", + "timeUnixNano": "1771878238421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173582000000", + "timeUnixNano": "1771878238421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771374173580000000", + "timeUnixNano": "1771878238407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173582000000", + "timeUnixNano": "1771878238421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173582000000", + "timeUnixNano": "1771878238421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173584000000", + "timeUnixNano": "1771878238453000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173584000000", + "timeUnixNano": "1771878238453000000", "droppedAttributesCount": 0 } ], @@ -413,18 +425,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "b6851ed6ce010590", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "d49aec762b8240b4", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173604000000", + "startTimeUnixNano": "1771878238469000000", + "endTimeUnixNano": "1771878238595000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -474,6 +486,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -481,49 +499,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173602000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173603000000", + "timeUnixNano": "1771878238595000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238595000000", "droppedAttributesCount": 0 } ], @@ -536,18 +554,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "90bba8a0a24b0fa0", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "12920c2ce4f0553c", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173604000000", + "startTimeUnixNano": "1771878238469000000", + "endTimeUnixNano": "1771878238602000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -597,6 +615,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -604,49 +628,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173602000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173602000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173602000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173602000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173603000000", + "timeUnixNano": "1771878238592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238602000000", "droppedAttributesCount": 0 } ], @@ -659,18 +683,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "fb8e22770354ba41", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "127db2c40f753d1c", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173605000000", + "startTimeUnixNano": "1771878238469000000", + "endTimeUnixNano": "1771878238620000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -682,7 +706,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" + "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" } }, { @@ -726,6 +750,12 @@ "value": { "intValue": 2961 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -733,49 +763,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238469000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238591000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238591000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238591000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238591000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238591000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238619000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238620000000", "droppedAttributesCount": 0 } ], @@ -788,18 +818,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "8052c30ebb96880d", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "063d3994f6eb644e", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173605000000", + "startTimeUnixNano": "1771878238471000000", + "endTimeUnixNano": "1771878238626000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -811,19 +841,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" + "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13546 + "intValue": 13566 } }, { @@ -841,19 +871,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 5032 + "intValue": 5048 } }, { "key": "http.response.size", "value": { - "intValue": 5332 + "intValue": 5348 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13546 + "intValue": 13566 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -862,49 +898,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238594000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238594000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238622000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238626000000", "droppedAttributesCount": 0 } ], @@ -917,18 +953,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "dba2bfa0115824fd", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "d555fe54b1c901dd", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173606000000", + "startTimeUnixNano": "1771878238471000000", + "endTimeUnixNano": "1771878238637000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -940,19 +976,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 7636 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 31075 } }, { @@ -970,19 +1006,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 7636 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 7936 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 + "intValue": 31075 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -991,49 +1033,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238621000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238635000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238637000000", "droppedAttributesCount": 0 } ], @@ -1046,18 +1088,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "9ba42eaec8b448b3", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "643ecf1fc29f236c", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173607000000", + "startTimeUnixNano": "1771878238471000000", + "endTimeUnixNano": "1771878238640000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1069,19 +1111,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" + "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7625 + "intValue": 807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31076 + "intValue": 1341 } }, { @@ -1099,19 +1141,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7625 + "intValue": 807 } }, { "key": "http.response.size", "value": { - "intValue": 7925 + "intValue": 1107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31076 + "intValue": 1341 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1120,49 +1168,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238625000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173607000000", + "timeUnixNano": "1771878238637000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173607000000", + "timeUnixNano": "1771878238640000000", "droppedAttributesCount": 0 } ], @@ -1175,18 +1223,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "19bab2f35947310b", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "293449d1de621df9", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173610000000", + "startTimeUnixNano": "1771878238471000000", + "endTimeUnixNano": "1771878238640000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1198,19 +1246,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" + "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41469 + "intValue": 41491 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162152 + "intValue": 162134 } }, { @@ -1228,19 +1276,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 41469 + "intValue": 41491 } }, { "key": "http.response.size", "value": { - "intValue": 41769 + "intValue": 41791 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162152 + "intValue": 162134 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1249,49 +1303,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238611000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173607000000", + "timeUnixNano": "1771878238630000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173610000000", + "timeUnixNano": "1771878238640000000", "droppedAttributesCount": 0 } ], @@ -1304,18 +1358,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "f7fd3bb1b4012a21", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "f14aaa9281783179", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173611000000", + "startTimeUnixNano": "1771878238470000000", + "endTimeUnixNano": "1771878238631000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1327,19 +1381,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49c2078e705461b0.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54464 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 191607 + "intValue": 10426 } }, { @@ -1357,19 +1411,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 54464 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 54764 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 191607 + "intValue": 10426 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1378,49 +1438,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238612000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173607000000", + "timeUnixNano": "1771878238630000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173611000000", + "timeUnixNano": "1771878238631000000", "droppedAttributesCount": 0 } ], @@ -1433,18 +1493,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "2d3eb5441cc4b93f", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "38fc4ff27a0568ee", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173613000000", + "startTimeUnixNano": "1771878238471000000", + "endTimeUnixNano": "1771878238643000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1456,19 +1516,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70316 + "intValue": 70322 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224864 + "intValue": 224870 } }, { @@ -1486,19 +1546,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 70316 + "intValue": 70322 } }, { "key": "http.response.size", "value": { - "intValue": 70616 + "intValue": 70622 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224864 + "intValue": 224870 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1507,49 +1573,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238471000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173604000000", + "timeUnixNano": "1771878238593000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238594000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238594000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173607000000", + "timeUnixNano": "1771878238625000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173613000000", + "timeUnixNano": "1771878238643000000", "droppedAttributesCount": 0 } ], @@ -1562,18 +1628,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "f3b4748c9202383f", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "5b6102f7621e9010", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173589000000", - "endTimeUnixNano": "1771374173606000000", + "startTimeUnixNano": "1771878238470000000", + "endTimeUnixNano": "1771878238647000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1585,19 +1651,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 810 + "intValue": 54690 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1342 + "intValue": 192543 } }, { @@ -1615,19 +1681,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 810 + "intValue": 54690 } }, { "key": "http.response.size", "value": { - "intValue": 1110 + "intValue": 54990 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1342 + "intValue": 192543 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1636,49 +1708,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173589000000", + "timeUnixNano": "1771878238470000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238612000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238612000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238612000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238613000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173605000000", + "timeUnixNano": "1771878238613000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238641000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173606000000", + "timeUnixNano": "1771878238647000000", "droppedAttributesCount": 0 } ], @@ -1691,18 +1763,18 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "8faf36db43b52286", - "parentSpanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "e9c1113898ddf2c3", + "parentSpanId": "1796396d59c346e7", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771374173592000000", - "endTimeUnixNano": "1771374173592000000", + "startTimeUnixNano": "1771878238492000000", + "endTimeUnixNano": "1771878238492000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1752,6 +1824,12 @@ "value": { "boolValue": true } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -1759,49 +1837,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173592000000", + "timeUnixNano": "1771878238492000000", "droppedAttributesCount": 0 } ], @@ -1814,17 +1892,17 @@ "flags": 257 }, { - "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", - "spanId": "a0a2c3c6cfc076b3", + "traceId": "130b4925eb447acf950493b3761b7b77", + "spanId": "1796396d59c346e7", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771374173580000000", - "endTimeUnixNano": "1771374173650000000", + "startTimeUnixNano": "1771878238405000000", + "endTimeUnixNano": "1771878238836000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -1844,50 +1922,62 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771878238405000000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771374173610000000", + "timeUnixNano": "1771878238699000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771374173617000000", + "timeUnixNano": "1771878238752000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771374173618000000", + "timeUnixNano": "1771878238752000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771374173650000000", + "timeUnixNano": "1771878238835000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771374173650000000", + "timeUnixNano": "1771878238835000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771374173650000000", + "timeUnixNano": "1771878238836000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771374173626000000", + "timeUnixNano": "1771878238729000000", "droppedAttributesCount": 0 } ], @@ -1908,12 +1998,12 @@ }, "spans": [ { - "traceId": "ad6bb35a4e25e95c999c14b41a5b754a", - "spanId": "dc3f26ac0e14269c", + "traceId": "95babc3aa1dc7b0efc52e629393ef17d", + "spanId": "0c43505006b213af", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771374173802000000", - "endTimeUnixNano": "1771374173807000000", + "startTimeUnixNano": "1771878239381000000", + "endTimeUnixNano": "1771878239406000000", "attributes": [ { "key": "component", @@ -1936,7 +2026,7 @@ { "key": "session.id", "value": { - "stringValue": "4B7574461E1B70E682E6A576873F2DA7" + "stringValue": "09B8F949B63E84D57433E383A6990A48" } }, { @@ -2008,6 +2098,12 @@ { "key": "http.request.body.size", "value": {} + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -2015,49 +2111,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771374173802000000", + "timeUnixNano": "1771878239381000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json index 24c3148ec..49d61392d 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "4F5918D5F317516E35677C3B30570C75" + "stringValue": "98A1AD74B15B43E83D9EE02C98DC4E55" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811594453000000", - "observedTimeUnixNano": "1769811594454000000", + "timeUnixNano": "1771878223131000000", + "observedTimeUnixNano": "1771878223132000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103\nmessage@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948\nt/get/<@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465\na@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529\nsY@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223932\nM@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:1:9786\nA@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223901\nasync*@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224409\nn@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2295\na@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2618\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224377\nq@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3696\n" + "stringValue": "message@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918\nmessage@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942\nt/get/<@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459\na@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528\nsY@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223938\nM@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:1:9806\nA@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223907\nasync*@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224415\nn@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2295\na@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2618\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224383\nq@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3696\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\\n\":\"1d128b39b01355ec232666eb51ed9fdb\",\"@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\\n\":\"064fbb708a69758b5a0ab80f376cb08a\",\"@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\\n\":\"5abe9f02e7f14cba35bf7920024817dc\",\"@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\\n\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\\n\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\\n\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\\n\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" + "stringValue": "{\"@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\\n\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\\n\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\\n\":\"15b8645cace346d9e6ceba56f882762f\",\"@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\\n\":\"9949ad0f7ff24b0affc3f595090658d9\",\"@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\\n\":\"4fb973c036e18b810ee3da31e51cd097\",\"@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\\n\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\",\"@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\\n\":\"8965f2228d245fa9a1ea8196a2783196\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "44B08159B006816646216379EC295DEB" + "stringValue": "5EB5B3EE7740E96E4529D24B9B540F25" } }, { "key": "session.id", "value": { - "stringValue": "4D1C864E351EE5B1317B63BD6F8CF0F9" + "stringValue": "D4E48D82A0227645CC5149D8F93E0955" } }, { @@ -138,6 +138,12 @@ "value": { "stringValue": "http://localhost:3014/" } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-session.json b/tests/integration/tests/__golden__/firefox-next-16-app-session.json index 12c79ba70..0db6c1d2f 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "1906F082A96CC0173969475D3F99342B" + "stringValue": "6EB5DFBB836153B5FCC48C9F8DDD04DF" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "b4d1553754c73282b8b0c5108d471e56", - "spanId": "69975f8295fbdc06", + "traceId": "138165f6ac754c2fae9f721579626016", + "spanId": "2ed52230c6fb20f6", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1769811593634000000", - "endTimeUnixNano": "1769811593825000000", + "startTimeUnixNano": "1771878219336000000", + "endTimeUnixNano": "1771878220374000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "C00CCABCE17940B34D706D759AF7856A" + "stringValue": "21BB0431CFACDEF80F0EC187C0015439" } }, { "key": "emb.tab_id", "value": { - "stringValue": "1906F082A96CC0173969475D3F99342B" + "stringValue": "6EB5DFBB836153B5FCC48C9F8DDD04DF" } }, { @@ -155,7 +155,13 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 12 + "intValue": 30 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -178,18 +184,18 @@ }, "spans": [ { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "66694c383f01c967", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "b9de8d8fbc82a815", + "parentSpanId": "c97476a1ee3e5913", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1769811593537000000", - "endTimeUnixNano": "1769811593549000000", + "startTimeUnixNano": "1771878218630000000", + "endTimeUnixNano": "1771878218855000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -201,7 +207,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1969 + "intValue": 1963 } }, { @@ -209,6 +215,12 @@ "value": { "intValue": 6239 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -216,55 +228,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593537000000", + "timeUnixNano": "1771878218630000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593545000000", + "timeUnixNano": "1771878218825000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593545000000", + "timeUnixNano": "1771878218825000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593545000000", + "timeUnixNano": "1771878218825000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1769811593537000000", + "timeUnixNano": "1771878218631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593546000000", + "timeUnixNano": "1771878218827000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593546000000", + "timeUnixNano": "1771878218827000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593549000000", + "timeUnixNano": "1771878218854000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593549000000", + "timeUnixNano": "1771878218855000000", "droppedAttributesCount": 0 } ], @@ -277,18 +289,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "ebc731807f52e344", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "fc4570b89e1f3ced", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593556000000", - "endTimeUnixNano": "1769811593571000000", + "startTimeUnixNano": "1771878218912000000", + "endTimeUnixNano": "1771878219148000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -338,6 +350,12 @@ "value": { "intValue": 31288 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -345,49 +363,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593570000000", + "timeUnixNano": "1771878219141000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 } ], @@ -400,18 +418,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "038d86748742bb25", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "852fd71a14756cd8", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593556000000", - "endTimeUnixNano": "1769811593572000000", + "startTimeUnixNano": "1771878218913000000", + "endTimeUnixNano": "1771878219155000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -461,6 +479,12 @@ "value": { "intValue": 28388 } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" + } } ], "droppedAttributesCount": 0, @@ -468,49 +492,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219153000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219155000000", "droppedAttributesCount": 0 } ], @@ -523,18 +547,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "a9d883cf421b94be", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "d57d76b0871a781a", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593571000000", + "startTimeUnixNano": "1771878218912000000", + "endTimeUnixNano": "1771878219158000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -546,19 +570,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" + "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 + "intValue": 5048 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 2961 + "intValue": 13566 } }, { @@ -576,19 +600,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 5048 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 5348 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 + "intValue": 13566 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -597,49 +627,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218912000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219142000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219145000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219146000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593570000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219155000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219158000000", "droppedAttributesCount": 0 } ], @@ -652,18 +682,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "a88666b41e8ad9d2", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "9986690cc78c8a5d", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593556000000", - "endTimeUnixNano": "1769811593574000000", + "startTimeUnixNano": "1771878218913000000", + "endTimeUnixNano": "1771878219159000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -675,19 +705,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" + "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 5032 + "intValue": 984 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13546 + "intValue": 2961 } }, { @@ -705,19 +735,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 5032 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 5332 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13546 + "intValue": 2961 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -726,49 +762,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219141000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219146000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593574000000", + "timeUnixNano": "1771878219156000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593574000000", + "timeUnixNano": "1771878219159000000", "droppedAttributesCount": 0 } ], @@ -781,18 +817,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "135708521405c35d", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "5ebf317086416ed7", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593573000000", + "startTimeUnixNano": "1771878218913000000", + "endTimeUnixNano": "1771878219187000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -804,19 +840,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 70322 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 224870 } }, { @@ -834,19 +870,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 70322 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 70622 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 + "intValue": 224870 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -855,49 +897,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219143000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219146000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219147000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878219149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219156000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219187000000", "droppedAttributesCount": 0 } ], @@ -910,18 +952,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "8a4d688fd5ea4910", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "39d9766feb8512d7", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593580000000", + "startTimeUnixNano": "1771878218913000000", + "endTimeUnixNano": "1771878219164000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -933,19 +975,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" + "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7625 + "intValue": 41491 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31076 + "intValue": 162134 } }, { @@ -963,19 +1005,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 7625 + "intValue": 41491 } }, { "key": "http.response.size", "value": { - "intValue": 7925 + "intValue": 41791 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31076 + "intValue": 162134 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -984,49 +1032,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219143000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219145000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219146000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219148000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593579000000", + "timeUnixNano": "1771878219155000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593580000000", + "timeUnixNano": "1771878219164000000", "droppedAttributesCount": 0 } ], @@ -1039,18 +1087,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "97568704e764f274", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "07b7afeb0bdc28da", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593582000000", + "startTimeUnixNano": "1771878218914000000", + "endTimeUnixNano": "1771878219159000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -1062,19 +1110,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 47298 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 169109 + "intValue": 10426 } }, { @@ -1092,19 +1140,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 47298 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 47598 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 169109 + "intValue": 10426 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1113,49 +1167,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593573000000", + "timeUnixNano": "1771878219149000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593577000000", + "timeUnixNano": "1771878219156000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593582000000", + "timeUnixNano": "1771878219159000000", "droppedAttributesCount": 0 } ], @@ -1168,18 +1222,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "53708f805de9aceb", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "e8d1900650109202", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593556000000", - "endTimeUnixNano": "1769811593580000000", + "startTimeUnixNano": "1771878218914000000", + "endTimeUnixNano": "1771878219168000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -1191,19 +1245,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" + "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 810 + "intValue": 7636 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1342 + "intValue": 31075 } }, { @@ -1221,19 +1275,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 810 + "intValue": 7636 } }, { "key": "http.response.size", "value": { - "intValue": 1110 + "intValue": 7936 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1342 + "intValue": 31075 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1242,49 +1302,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593556000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593576000000", + "timeUnixNano": "1771878219159000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593580000000", + "timeUnixNano": "1771878219168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593580000000", + "timeUnixNano": "1771878219168000000", "droppedAttributesCount": 0 } ], @@ -1297,18 +1357,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "3783419819a20ba9", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "615bdefde731e0cf", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593581000000", + "startTimeUnixNano": "1771878218913000000", + "endTimeUnixNano": "1771878219167000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -1320,19 +1380,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" + "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41469 + "intValue": 807 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162152 + "intValue": 1341 } }, { @@ -1350,19 +1410,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 41469 + "intValue": 807 } }, { "key": "http.response.size", "value": { - "intValue": 41769 + "intValue": 1107 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162152 + "intValue": 1341 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1371,49 +1437,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218913000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593572000000", + "timeUnixNano": "1771878219160000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593575000000", + "timeUnixNano": "1771878219167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593581000000", + "timeUnixNano": "1771878219167000000", "droppedAttributesCount": 0 } ], @@ -1426,18 +1492,18 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "c375fd936d53c8a9", - "parentSpanId": "52bc180ec96d5030", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "ed89aded4e914916", + "parentSpanId": "c97476a1ee3e5913", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1769811593555000000", - "endTimeUnixNano": "1769811593583000000", + "startTimeUnixNano": "1771878218914000000", + "endTimeUnixNano": "1771878219205000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { @@ -1449,19 +1515,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70316 + "intValue": 54690 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224864 + "intValue": 192543 } }, { @@ -1479,19 +1545,25 @@ { "key": "http.response.body.size", "value": { - "intValue": 70316 + "intValue": 54690 } }, { "key": "http.response.size", "value": { - "intValue": 70616 + "intValue": 54990 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224864 + "intValue": 192543 + } + }, + { + "key": "app.surface.label", + "value": { + "stringValue": "Create Next App" } } ], @@ -1500,49 +1572,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593555000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878218914000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1769811593571000000", + "timeUnixNano": "1771878219155000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1769811593575000000", + "timeUnixNano": "1771878219168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1769811593583000000", + "timeUnixNano": "1771878219205000000", "droppedAttributesCount": 0 } ], @@ -1555,66 +1627,41 @@ "flags": 257 }, { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "0ab0257625ad03c3", - "parentSpanId": "52bc180ec96d5030", - "name": "resourceFetch", + "traceId": "c9b37ce54e4a6d161e075e218aa618c1", + "spanId": "c97476a1ee3e5913", + "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1769811593559000000", - "endTimeUnixNano": "1769811593559000000", + "startTimeUnixNano": "1771878218630000000", + "endTimeUnixNano": "1771878219344000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" + "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" } }, { "key": "emb.type", "value": { - "stringValue": "ux.resource_fetch" + "stringValue": "ux.document_load" } }, { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/favicon.ico" - } - }, - { - "key": "http.response_content_length", - "value": { - "intValue": 0 - } - }, - { - "key": "http.request.initiator_type", - "value": { - "stringValue": "other" - } - }, - { - "key": "http.response.body.size", - "value": { - "intValue": 0 - } - }, - { - "key": "http.response.size", - "value": { - "intValue": 0 + "stringValue": "http://localhost:3014/" } }, { - "key": "http.response.decoded_body_size", + "key": "user_agent.original", "value": { - "intValue": 0 + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { - "key": "http.response.cors_opaque", + "key": "app.surface.label", "value": { - "boolValue": true + "stringValue": "Create Next App" } } ], @@ -1623,135 +1670,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "domainLookupStart", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "domainLookupEnd", - "timeUnixNano": "1769811593559000000", + "timeUnixNano": "1771878218630000000", "droppedAttributesCount": 0 }, - { - "attributes": [], - "name": "connectStart", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "connectEnd", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "requestStart", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "responseStart", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - }, - { - "attributes": [], - "name": "responseEnd", - "timeUnixNano": "1769811593559000000", - "droppedAttributesCount": 0 - } - ], - "droppedEventsCount": 0, - "status": { - "code": 0 - }, - "links": [], - "droppedLinksCount": 0, - "flags": 257 - }, - { - "traceId": "e1ffc283f6a313279f380ba36c5671f8", - "spanId": "52bc180ec96d5030", - "name": "documentLoad", - "kind": 1, - "startTimeUnixNano": "1769811593537000000", - "endTimeUnixNano": "1769811593637000000", - "attributes": [ - { - "key": "session.id", - "value": { - "stringValue": "2491C77D03A19600914E00E39034EBBB" - } - }, - { - "key": "emb.type", - "value": { - "stringValue": "ux.document_load" - } - }, - { - "key": "url.full", - "value": { - "stringValue": "http://localhost:3014/" - } - }, - { - "key": "user_agent.original", - "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" - } - } - ], - "droppedAttributesCount": 0, - "events": [ { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1769811593594000000", + "timeUnixNano": "1771878219222000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1769811593596000000", + "timeUnixNano": "1771878219235000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1769811593596000000", + "timeUnixNano": "1771878219236000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1769811593636000000", + "timeUnixNano": "1771878219343000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1769811593636000000", + "timeUnixNano": "1771878219343000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1769811593637000000", + "timeUnixNano": "1771878219344000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1769811593589000000", + "timeUnixNano": "1771878219241000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json index a4843aa06..0d758f0b4 100644 --- a/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "075583299F15724CD4D4E8D68F54A530" + "stringValue": "23640AF6ADE34473173F31762FBC79A9" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1769811602185000000", - "observedTimeUnixNano": "1769811602186000000", + "timeUnixNano": "1771878247963000000", + "observedTimeUnixNano": "1771878247964000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:85134\nmessage@http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:38096\nCO { expect(hasInitSDK).toBe(true); }); - test('it should expose 8 functions', async ({ page }) => { + test('it should expose 8 functions and an attributes object', async ({ + page, + }) => { await page.goto(CDN_TEST_URL); const sdk = await page.evaluate(() => window.EmbraceWebSdk); - expect(Object.entries(sdk).length).toBe(8); + expect(Object.entries(sdk).length).toBe(9); }); test('it should not reinitialize when loaded twice', async ({ page }) => { From 7632869542e2e5485834a3f9eef221a48e21f0ed Mon Sep 17 00:00:00 2001 From: joaquin-diaz Date: Tue, 24 Feb 2026 15:07:55 -0300 Subject: [PATCH 3/6] chore: rename surface label to page label, adress pr feedback --- .../src/api-page/api/PageAPI/PageAPI.test.ts | 8 ++--- .../NoOpPageManager/NoOpPageManager.ts | 4 +-- .../ProxyPageManager/ProxyPageManager.test.ts | 4 +-- .../ProxyPageManager/ProxyPageManager.ts | 8 ++--- .../web-sdk/src/api-page/manager/types.ts | 6 ++-- .../EmbracePageManager.test.ts | 30 ++++++++++++------- .../EmbracePageManager/EmbracePageManager.ts | 24 ++++++++------- .../src/managers/EmbracePageManager/types.ts | 2 +- .../PageLogRecordProcessor.test.ts | 19 +++++++++++- .../PageLogRecordProcessor.ts | 4 +-- .../PageSpanProcessor.test.ts | 21 ++++++++++++- .../PageSpanProcessor/PageSpanProcessor.ts | 4 +-- packages/web-sdk/src/sdk/initSDK.ts | 8 ++--- packages/web-sdk/src/sdk/types.ts | 8 ++--- 14 files changed, 101 insertions(+), 49 deletions(-) diff --git a/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts b/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts index 8f64ed699..f42d8ca96 100644 --- a/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts +++ b/packages/web-sdk/src/api-page/api/PageAPI/PageAPI.test.ts @@ -40,8 +40,8 @@ describe('PageAPI', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), - setAppSurfaceLabel: sinon.stub(), - getAppSurfaceLabel: sinon.stub(), + setPageLabel: sinon.stub(), + getPageLabel: sinon.stub(), }; pageAPI.setGlobalPageManager(mockPageManager); const pageManager = pageAPI.getPageManager(); @@ -57,8 +57,8 @@ describe('PageAPI', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), - setAppSurfaceLabel: sinon.stub(), - getAppSurfaceLabel: sinon.stub(), + setPageLabel: sinon.stub(), + getPageLabel: sinon.stub(), }; pageAPI.setGlobalPageManager(mockPageManager); diff --git a/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts b/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts index 7a50b85cc..77b19f5f5 100644 --- a/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts +++ b/packages/web-sdk/src/api-page/manager/NoOpPageManager/NoOpPageManager.ts @@ -11,9 +11,9 @@ export class NoOpPageManager implements PageManager { return ''; } - public setAppSurfaceLabel(_label: string): void {} + public setPageLabel(_label: string): void {} - public getAppSurfaceLabel(): string | null { + public getPageLabel(): string | null { return null; } diff --git a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts index 55d8cfbf3..d7d90a498 100644 --- a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts +++ b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.test.ts @@ -21,8 +21,8 @@ describe('ProxyPageManager', () => { getCurrentRoute: sinon.stub().returns(mockRoute), getCurrentPageId: sinon.stub().returns('test-page-id'), clearCurrentRoute: sinon.stub(), - setAppSurfaceLabel: sinon.stub(), - getAppSurfaceLabel: sinon.stub(), + setPageLabel: sinon.stub(), + getPageLabel: sinon.stub(), }; }); diff --git a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts index 80069f7e8..3abf4a6bb 100644 --- a/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts +++ b/packages/web-sdk/src/api-page/manager/ProxyPageManager/ProxyPageManager.ts @@ -26,12 +26,12 @@ export class ProxyPageManager implements PageManager { return this.getDelegate().getCurrentPageId(); } - public setAppSurfaceLabel(label: string): void { - this.getDelegate().setAppSurfaceLabel(label); + public setPageLabel(label: string): void { + this.getDelegate().setPageLabel(label); } - public getAppSurfaceLabel(): string | null { - return this.getDelegate().getAppSurfaceLabel(); + public getPageLabel(): string | null { + return this.getDelegate().getPageLabel(); } public clearCurrentRoute(): void { diff --git a/packages/web-sdk/src/api-page/manager/types.ts b/packages/web-sdk/src/api-page/manager/types.ts index 5667bac0c..c502636a4 100644 --- a/packages/web-sdk/src/api-page/manager/types.ts +++ b/packages/web-sdk/src/api-page/manager/types.ts @@ -3,6 +3,8 @@ export interface Route { path: string; // This is the URL of the route after replacing the URL params. i.e. /products/123 url: string; + // Optional label for the route, used as app.surface.label + label?: string; } export interface PageManager { @@ -12,9 +14,9 @@ export interface PageManager { getCurrentPageId: () => string | null; - setAppSurfaceLabel: (label: string) => void; + setPageLabel: (label: string) => void; - getAppSurfaceLabel: () => string | null; + getPageLabel: () => string | null; clearCurrentRoute: () => void; } diff --git a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts index 14709b6aa..2088c42e7 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.test.ts @@ -76,35 +76,45 @@ describe('EmbracePageManager', () => { expect(initialPageId).to.equal(secondPageId); }); - it('should set and get custom app surface label', () => { - pageManager.setAppSurfaceLabel('my-custom-label'); - expect(pageManager.getAppSurfaceLabel()).to.equal('my-custom-label'); + it('should set and get custom route label', () => { + pageManager.setPageLabel('my-custom-label'); + expect(pageManager.getPageLabel()).to.equal('my-custom-label'); }); it('should fallback to document.title when custom label is not set', () => { mockDocument.title = 'My Page Title'; - expect(pageManager.getAppSurfaceLabel()).to.equal('My Page Title'); + expect(pageManager.getPageLabel()).to.equal('My Page Title'); }); it('should not fallback to document.title when fallback is disabled', () => { const customPageManager = new EmbracePageManager({ - disableDocumentTitleFallback: true, + useDocumentTitleAsPageLabel: false, titleDocument: mockDocument, }); mockDocument.title = 'My Page Title'; - void expect(customPageManager.getAppSurfaceLabel()).to.be.null; + void expect(customPageManager.getPageLabel()).to.be.null; }); it('should prefer custom label over document.title fallback', () => { mockDocument.title = 'My Page Title'; - pageManager.setAppSurfaceLabel('custom-label'); - expect(pageManager.getAppSurfaceLabel()).to.equal('custom-label'); + pageManager.setPageLabel('custom-label'); + expect(pageManager.getPageLabel()).to.equal('custom-label'); + }); + + it('should set route label from route.label when setting route', () => { + const routeWithLabel: Route = { + path: '/products/:id', + url: '/products/123', + label: 'Products Page', + }; + pageManager.setCurrentRoute(routeWithLabel); + expect(pageManager.getPageLabel()).to.equal('Products Page'); }); it('should clear custom label on routing', () => { mockDocument.title = 'My Page Title'; - pageManager.setAppSurfaceLabel('custom-label'); + pageManager.setPageLabel('custom-label'); pageManager.clearCurrentRoute(); - expect(pageManager.getAppSurfaceLabel()).to.equal('My Page Title'); + expect(pageManager.getPageLabel()).to.equal('My Page Title'); }); }); diff --git a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts index be5dce7a2..086303d4d 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts @@ -6,15 +6,15 @@ import type { EmbracePageManagerArgs } from './types.ts'; export class EmbracePageManager implements PageManager { private _currentRoute: Route | null = null; private _currentPageId: string | null = null; - private _customAppSurfaceLabel: string | null = null; + private _pageLabel: string | null = null; private readonly _titleDocument: TitleDocument | undefined; - private readonly _disableDocumentTitleFallback: boolean; + private readonly _useDocumentTitleAsPageLabel: boolean; public constructor({ - disableDocumentTitleFallback, + useDocumentTitleAsPageLabel = true, titleDocument = window.document, }: EmbracePageManagerArgs = {}) { - this._disableDocumentTitleFallback = disableDocumentTitleFallback ?? false; + this._useDocumentTitleAsPageLabel = useDocumentTitleAsPageLabel; this._titleDocument = titleDocument; } @@ -22,14 +22,14 @@ export class EmbracePageManager implements PageManager { public getCurrentRoute = () => this._currentRoute; - public setAppSurfaceLabel = (label: string): void => { - this._customAppSurfaceLabel = label; + public setPageLabel = (label: string): void => { + this._pageLabel = label; }; - public getAppSurfaceLabel = (): string | null => { + public getPageLabel = (): string | null => { return ( - this._customAppSurfaceLabel || - (this._disableDocumentTitleFallback || !this._titleDocument + this._pageLabel || + (!this._useDocumentTitleAsPageLabel || !this._titleDocument ? null : this._titleDocument.title) ); @@ -41,11 +41,15 @@ export class EmbracePageManager implements PageManager { } this._currentRoute = route; + + if (route.label) { + this._pageLabel = route.label; + } }; public clearCurrentRoute = () => { this._currentRoute = null; this._currentPageId = null; - this._customAppSurfaceLabel = null; + this._pageLabel = null; }; } diff --git a/packages/web-sdk/src/managers/EmbracePageManager/types.ts b/packages/web-sdk/src/managers/EmbracePageManager/types.ts index 7d0fb166c..83829eaaa 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/types.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/types.ts @@ -5,7 +5,7 @@ import type { EMB_NAVIGATION_INSTRUMENTATIONS } from '../../constants/index.ts'; export interface EmbracePageManagerArgs { diag?: DiagLogger; shouldCleanupPathOptionsFromRouteName?: boolean; - disableDocumentTitleFallback?: boolean; + useDocumentTitleAsPageLabel?: boolean; titleDocument?: TitleDocument; } diff --git a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts index 1cd61fb8a..6164e3c71 100644 --- a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts +++ b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.test.ts @@ -58,7 +58,7 @@ describe('PageLogRecordProcessor', () => { it('should attach custom label when available', () => { pageManager.setCurrentRoute(mockRoute); - pageManager.setAppSurfaceLabel('CustomLabel'); + pageManager.setPageLabel('CustomLabel'); logger.emit({ body: 'some log', @@ -89,6 +89,23 @@ describe('PageLogRecordProcessor', () => { expect(log.attributes[KEY_EMB_PAGE_PATH]).to.equal('/custom/path'); }); + it('should not override surface label attribute', () => { + pageManager.setCurrentRoute(mockRoute); + pageManager.setPageLabel('DefaultLabel'); + + logger.emit({ + body: 'some log', + attributes: { + [KEY_APP_SURFACE_LABEL]: 'ExistingLabel', + }, + }); + + const finishedLogs = memoryExporter.getFinishedLogRecords(); + const log = finishedLogs[finishedLogs.length - 1]; + + expect(log.attributes[KEY_APP_SURFACE_LABEL]).to.equal('ExistingLabel'); + }); + it('should not attach surface name and id when route is null', () => { pageManager.clearCurrentRoute(); diff --git a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts index ad7c6af37..7ba9e6fea 100644 --- a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts +++ b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts @@ -38,8 +38,8 @@ export class PageLogRecordProcessor implements LogRecordProcessor { ); } - const appSurfaceLabel = this._pageManager.getAppSurfaceLabel(); - if (appSurfaceLabel) { + const appSurfaceLabel = this._pageManager.getPageLabel(); + if (appSurfaceLabel && !logRecord.attributes[KEY_APP_SURFACE_LABEL]) { logRecord.setAttribute(KEY_APP_SURFACE_LABEL, appSurfaceLabel); } } diff --git a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts index 1ce038ee2..561510895 100644 --- a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts +++ b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.test.ts @@ -59,7 +59,7 @@ describe('PageSpanProcessor', () => { it('should attach custom label when available', () => { pageManager.setCurrentRoute(mockRoute); - pageManager.setAppSurfaceLabel('SpanLabel'); + pageManager.setPageLabel('SpanLabel'); const span = tracer.startSpan('test-span-label'); span.end(); @@ -108,6 +108,25 @@ describe('PageSpanProcessor', () => { ); }); + it('should not override surface label attribute', () => { + pageManager.setCurrentRoute(mockRoute); + pageManager.setPageLabel('DefaultLabel'); + + const span = tracer.startSpan('span-with-label', { + attributes: { + [KEY_APP_SURFACE_LABEL]: 'ExistingLabel', + }, + }); + span.end(); + + const finishedSpans = memoryExporter.getFinishedSpans(); + const readableSpan = finishedSpans[finishedSpans.length - 1]; + + expect(readableSpan.attributes[KEY_APP_SURFACE_LABEL]).to.be.equal( + 'ExistingLabel', + ); + }); + it('should make sure forceFlush no-op does not fail', () => { const processor = new PageSpanProcessor({ pageManager: new EmbracePageManager(), diff --git a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts index 3c10c838d..603b4fdc9 100644 --- a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts +++ b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts @@ -36,8 +36,8 @@ export class PageSpanProcessor implements SpanProcessor { span.attributes[KEY_EMB_PAGE_ID] = currentPageId; } - const appSurfaceLabel = this._pageManager.getAppSurfaceLabel(); - if (appSurfaceLabel) { + const appSurfaceLabel = this._pageManager.getPageLabel(); + if (appSurfaceLabel && !span.attributes[KEY_APP_SURFACE_LABEL]) { span.attributes[KEY_APP_SURFACE_LABEL] = appSurfaceLabel; } } diff --git a/packages/web-sdk/src/sdk/initSDK.ts b/packages/web-sdk/src/sdk/initSDK.ts index 039ced511..7081ce783 100644 --- a/packages/web-sdk/src/sdk/initSDK.ts +++ b/packages/web-sdk/src/sdk/initSDK.ts @@ -96,7 +96,7 @@ export const initSDK = ( registerGlobally = true, blockNetworkSpanForwarding = false, restrictedProtocols = new Set(['file:']), - disableDocumentTitleFallback = false, + useDocumentTitleAsPageLabel = true, }: SDKInitConfig = {} as SDKInitConfig, ): SDKControl | false => { try { @@ -242,7 +242,7 @@ export const initSDK = ( } const pageManager = setupPage({ - disableDocumentTitleFallback, + useDocumentTitleAsPageLabel, registerGlobally, }); @@ -490,11 +490,11 @@ const setupLogs = ({ }; const setupPage = ({ - disableDocumentTitleFallback, + useDocumentTitleAsPageLabel, registerGlobally, }: SetupPageArgs) => { const embracePageManager = new EmbracePageManager({ - disableDocumentTitleFallback, + useDocumentTitleAsPageLabel, }); if (registerGlobally) { diff --git a/packages/web-sdk/src/sdk/types.ts b/packages/web-sdk/src/sdk/types.ts index 4811ff5c6..6586d90f2 100644 --- a/packages/web-sdk/src/sdk/types.ts +++ b/packages/web-sdk/src/sdk/types.ts @@ -225,11 +225,11 @@ type BaseSDKInitConfig = { restrictedProtocols?: Set; /** - * disableDocumentTitleFallback disables the fallback to document.title for app.surface.label when a custom label is not set. + * useDocumentTitleAsPageLabel enables the fallback to document.title for page label when a custom label is not set. * - * **default**: false + * **default**: true */ - disableDocumentTitleFallback?: boolean; + useDocumentTitleAsPageLabel?: boolean; }; /* @@ -335,7 +335,7 @@ export interface SetupLogsArgs { } export interface SetupPageArgs { - disableDocumentTitleFallback?: boolean; + useDocumentTitleAsPageLabel?: boolean; registerGlobally?: boolean; } From c97d41dcc5ace64956d8654142624436cc8066a5 Mon Sep 17 00:00:00 2001 From: joaquin-diaz Date: Fri, 27 Feb 2026 12:12:07 -0300 Subject: [PATCH 4/6] chore(test): revert golden files and disable page label in integration tests --- .../src/components/EmbraceWebSdk.tsx | 2 + .../src/components/EmbraceWebSdk.tsx | 2 + .../src/components/EmbraceWebSdk.tsx | 2 + .../integration/platforms/vite-6/src/otel.ts | 2 + .../integration/platforms/vite-7/src/otel.ts | 2 + .../platforms/webpack-5/src/otel.ts | 2 + ...rbopack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 604 +++++++-------- ...romium-next-15-turbopack-app-send-log.json | 22 +- ...hromium-next-15-turbopack-app-session.json | 564 ++++++-------- ...webpack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 688 +++++++---------- ...chromium-next-15-webpack-app-send-log.json | 22 +- .../chromium-next-15-webpack-app-session.json | 590 ++++++-------- ...next-16-app-handle-204-with-body-logs.json | 22 +- ...t-16-app-handle-204-with-body-session.json | 608 +++++++-------- .../chromium-next-16-app-send-log.json | 22 +- .../chromium-next-16-app-session.json | 516 ++++++------- ...te-6-es2015-handle-204-with-body-logs.json | 22 +- ...6-es2015-handle-204-with-body-session.json | 186 ++--- .../chromium-vite-6-es2015-send-log.json | 22 +- .../chromium-vite-6-es2015-session.json | 142 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 22 +- ...7-es2015-handle-204-with-body-session.json | 182 ++--- .../chromium-vite-7-es2015-send-log.json | 22 +- .../chromium-vite-7-es2015-session.json | 142 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 22 +- ...5-es2015-handle-204-with-body-session.json | 180 ++--- .../chromium-webpack-5-es2015-send-log.json | 22 +- .../chromium-webpack-5-es2015-session.json | 136 ++-- ...rbopack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 621 +++++++-------- ...irefox-next-15-turbopack-app-send-log.json | 22 +- ...firefox-next-15-turbopack-app-session.json | 564 ++++++-------- ...webpack-app-handle-204-with-body-logs.json | 22 +- ...pack-app-handle-204-with-body-session.json | 676 +++++++--------- .../firefox-next-15-webpack-app-send-log.json | 22 +- .../firefox-next-15-webpack-app-session.json | 670 +++++++--------- ...next-16-app-handle-204-with-body-logs.json | 22 +- ...t-16-app-handle-204-with-body-session.json | 606 +++++++-------- .../firefox-next-16-app-send-log.json | 22 +- .../firefox-next-16-app-session.json | 651 ++++++++-------- ...te-6-es2015-handle-204-with-body-logs.json | 22 +- ...6-es2015-handle-204-with-body-session.json | 188 ++--- .../firefox-vite-6-es2015-send-log.json | 22 +- .../firefox-vite-6-es2015-session.json | 138 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 22 +- ...7-es2015-handle-204-with-body-session.json | 188 ++--- .../firefox-vite-7-es2015-send-log.json | 22 +- .../firefox-vite-7-es2015-session.json | 144 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 22 +- ...5-es2015-handle-204-with-body-session.json | 186 ++--- .../firefox-webpack-5-es2015-send-log.json | 22 +- .../firefox-webpack-5-es2015-session.json | 142 ++-- ...rbopack-app-handle-204-with-body-logs.json | 20 +- ...pack-app-handle-204-with-body-session.json | 722 ++++++------------ ...webkit-next-15-turbopack-app-send-log.json | 20 +- .../webkit-next-15-turbopack-app-session.json | 540 ++++++------- ...webpack-app-handle-204-with-body-logs.json | 20 +- ...pack-app-handle-204-with-body-session.json | 628 +++++++-------- .../webkit-next-15-webpack-app-send-log.json | 20 +- .../webkit-next-15-webpack-app-session.json | 648 +++++++--------- ...next-16-app-handle-204-with-body-logs.json | 20 +- ...t-16-app-handle-204-with-body-session.json | 570 ++++++-------- .../webkit-next-16-app-send-log.json | 20 +- .../webkit-next-16-app-session.json | 514 ++++++------- ...te-6-es2015-handle-204-with-body-logs.json | 20 +- ...6-es2015-handle-204-with-body-session.json | 182 ++--- .../webkit-vite-6-es2015-send-log.json | 20 +- .../webkit-vite-6-es2015-session.json | 136 ++-- ...te-7-es2015-handle-204-with-body-logs.json | 20 +- ...7-es2015-handle-204-with-body-session.json | 182 ++--- .../webkit-vite-7-es2015-send-log.json | 20 +- .../webkit-vite-7-es2015-session.json | 136 ++-- ...ck-5-es2015-handle-204-with-body-logs.json | 20 +- ...5-es2015-handle-204-with-body-session.json | 180 ++--- .../webkit-webpack-5-es2015-send-log.json | 20 +- .../webkit-webpack-5-es2015-session.json | 134 ++-- 78 files changed, 6162 insertions(+), 8502 deletions(-) diff --git a/tests/integration/platforms/next-15-turbopack-app/src/components/EmbraceWebSdk.tsx b/tests/integration/platforms/next-15-turbopack-app/src/components/EmbraceWebSdk.tsx index 26559cc47..3dff08c1a 100644 --- a/tests/integration/platforms/next-15-turbopack-app/src/components/EmbraceWebSdk.tsx +++ b/tests/integration/platforms/next-15-turbopack-app/src/components/EmbraceWebSdk.tsx @@ -12,6 +12,8 @@ export const embraceWebSdk = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/platforms/next-15-webpack-app/src/components/EmbraceWebSdk.tsx b/tests/integration/platforms/next-15-webpack-app/src/components/EmbraceWebSdk.tsx index 26559cc47..3dff08c1a 100644 --- a/tests/integration/platforms/next-15-webpack-app/src/components/EmbraceWebSdk.tsx +++ b/tests/integration/platforms/next-15-webpack-app/src/components/EmbraceWebSdk.tsx @@ -12,6 +12,8 @@ export const embraceWebSdk = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/platforms/next-16-app/src/components/EmbraceWebSdk.tsx b/tests/integration/platforms/next-16-app/src/components/EmbraceWebSdk.tsx index 26559cc47..3dff08c1a 100644 --- a/tests/integration/platforms/next-16-app/src/components/EmbraceWebSdk.tsx +++ b/tests/integration/platforms/next-16-app/src/components/EmbraceWebSdk.tsx @@ -12,6 +12,8 @@ export const embraceWebSdk = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/platforms/vite-6/src/otel.ts b/tests/integration/platforms/vite-6/src/otel.ts index 334f27b38..98aae5fe0 100644 --- a/tests/integration/platforms/vite-6/src/otel.ts +++ b/tests/integration/platforms/vite-6/src/otel.ts @@ -10,6 +10,8 @@ const sdkControl = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/platforms/vite-7/src/otel.ts b/tests/integration/platforms/vite-7/src/otel.ts index 334f27b38..98aae5fe0 100644 --- a/tests/integration/platforms/vite-7/src/otel.ts +++ b/tests/integration/platforms/vite-7/src/otel.ts @@ -10,6 +10,8 @@ const sdkControl = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/platforms/webpack-5/src/otel.ts b/tests/integration/platforms/webpack-5/src/otel.ts index 334f27b38..98aae5fe0 100644 --- a/tests/integration/platforms/webpack-5/src/otel.ts +++ b/tests/integration/platforms/webpack-5/src/otel.ts @@ -10,6 +10,8 @@ const sdkControl = initSDK({ logLevel: DiagLogLevel.ALL, embraceDataURL: 'http://localhost:3001', embraceConfigURL: 'http://localhost:3001', + // Disabled until integration testing golden file generation is made more consistent across environments + useDocumentTitleAsPageLabel: false, }); declare global { diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json index bb8550c1f..7dc970159 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "D172BED60674BABF1C3A81EA06FF1779" + "stringValue": "52DD56706DE1FFB1C43445390739BBA4" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878180529199951", - "observedTimeUnixNano": "1771878180529000000", + "timeUnixNano": "1769811580000899902", + "observedTimeUnixNano": "1769811580001000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at t.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215)\n at s.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579)\n at Proxy. (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020)\n at o (http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334)\n at i2 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144382)\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150468\n at tk (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378)\n at i9 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145615)\n at cu (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172615)\n at ca (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437)" + "stringValue": "Error\n at e.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341)\n at s.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585)\n at Proxy. (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026)\n at o (http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335)\n at i2 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144380)\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150466\n at tk (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376)\n at i9 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145613)\n at cu (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172613)\n at ca (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\":\"450f76c7d056bbedd174d43e02bb77aa\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\":\"e37956446879e6a5a36c27f196ea6595\",\"Error\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"Error\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\":\"e1d8154aba2335b6f75749ea66ea412d\",\"Error\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"Error\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"Error\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\":\"da420bfb1f92af1ad511eeef61a12620\"}" + "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\":\"15fd21ff52e283c3bb62052de324ad34\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\":\"734e6ec704f57fd3eb85256dd8f38044\",\"Error\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\":\"62daae22085216409a457a21cb79a1b4\",\"Error\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\":\"ea3ef035957877fbf63a62637cdfcc92\",\"Error\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\":\"7f0a703a46bf13f33017d981466478d2\",\"Error\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\":\"f06fd0cd216422bc438c490a646ec9f9\",\"Error\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\":\"9854c0c6494879a068188282e03f6e99\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "E2FEC3399512987EAF22AC70F36C9F03" + "stringValue": "28905BC6074F8B6FD56F5EF0D2E7F5C2" } }, { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "13BFC35A4ADF560DF1FC78E52BDEAEA6" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3010/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json index 62180e656..fecdebd49 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "D172BED60674BABF1C3A81EA06FF1779" + "stringValue": "93DBD653C09ECA8E45634E761B4F930A" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "d0e843136a6462f86f4f51a5eb8ad6ef", - "spanId": "583da210088e07db", + "traceId": "c87ff600996b48460e396f1ad7ef8a32", + "spanId": "807d2fb4a54371b7", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878180005000000", - "endTimeUnixNano": "1771878180628400000", + "startTimeUnixNano": "1771374154557000000", + "endTimeUnixNano": "1771374155020000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "2CD8076A9D2CD73A346EE4AC11844CF6" + "stringValue": "BD30843D58E85662B030FA4A5C9A7180" } }, { "key": "emb.tab_id", "value": { - "stringValue": "D172BED60674BABF1C3A81EA06FF1779" + "stringValue": "93DBD653C09ECA8E45634E761B4F930A" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 9 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 8 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878180150399902", + "timeUnixNano": "1771374154671300049", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878180008-5606696720589" + "stringValue": "v5-1771374154558-7262084051528" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 36 + "intValue": 28 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 36 + "intValue": 28 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 8 + "doubleValue": 2.8999999910593033 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 28 + "doubleValue": 25.100000008940697 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878180152699951", + "timeUnixNano": "1771374154677199951", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878180525599854", + "timeUnixNano": "1771374154994600098", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "2d296f2c918bf222", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "213ca85d6f1561f9", + "parentSpanId": "7c0fd367b417b259", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878179909999902", - "endTimeUnixNano": "1771878179920999902", + "startTimeUnixNano": "1771374154482699951", + "endTimeUnixNano": "1771374154485899951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -343,19 +337,13 @@ { "key": "http.response_content_length", "value": { - "intValue": 2045 + "intValue": 2049 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7142 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7139 } } ], @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179909999902", + "timeUnixNano": "1771374154482699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179912199902", + "timeUnixNano": "1771374154483699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179912199902", + "timeUnixNano": "1771374154483699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179912199902", + "timeUnixNano": "1771374154483699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878179909899902", + "timeUnixNano": "1771374154482699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179912299902", + "timeUnixNano": "1771374154483899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179912399902", + "timeUnixNano": "1771374154483899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179917899902", + "timeUnixNano": "1771374154485599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179920999902", + "timeUnixNano": "1771374154485899951", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "c4b170e6778af052", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "6c16316aecff9b40", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923099951", - "endTimeUnixNano": "1771878179929299951", + "startTimeUnixNano": "1771374154487999903", + "endTimeUnixNano": "1771374154494099903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -448,13 +436,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" + "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 31288 + "intValue": 28388 } }, { @@ -478,25 +466,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 31288 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 31588 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31288 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 28388 } } ], @@ -505,49 +487,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154487999903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154490799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154490799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154490799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154491099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179924999951", + "timeUnixNano": "1771374154491199903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179928899951", + "timeUnixNano": "1771374154493799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179929299951", + "timeUnixNano": "1771374154494099903", "droppedAttributesCount": 0 } ], @@ -560,18 +542,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "ca80ab6dd7a85d7c", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "07a011df448aa8df", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923100000", - "endTimeUnixNano": "1771878179933500000", + "startTimeUnixNano": "1771374154487799951", + "endTimeUnixNano": "1771374154492799951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -583,13 +565,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3010/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 31288 } }, { @@ -613,25 +595,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 31288 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 31588 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 31288 } } ], @@ -640,49 +616,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923100000", + "timeUnixNano": "1771374154487799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179925400000", + "timeUnixNano": "1771374154487799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179925400000", + "timeUnixNano": "1771374154487799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179925400000", + "timeUnixNano": "1771374154487799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179925600000", + "timeUnixNano": "1771374154487799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179925600000", + "timeUnixNano": "1771374154490399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179932700000", + "timeUnixNano": "1771374154492599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179933500000", + "timeUnixNano": "1771374154492799951", "droppedAttributesCount": 0 } ], @@ -695,18 +671,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "a160677819727cba", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "8cf2429e18cc40ac", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923200000", - "endTimeUnixNano": "1771878179938200000", + "startTimeUnixNano": "1771374154487700000", + "endTimeUnixNano": "1771374154495400000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -718,13 +694,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" + "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 983 + "intValue": 984 } }, { @@ -754,13 +730,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 983 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 1283 + "intValue": 1284 } }, { @@ -768,12 +744,6 @@ "value": { "intValue": 2961 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -781,49 +751,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923200000", + "timeUnixNano": "1771374154487700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179927000000", + "timeUnixNano": "1771374154491300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179927000000", + "timeUnixNano": "1771374154491300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179927000000", + "timeUnixNano": "1771374154491300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179927300000", + "timeUnixNano": "1771374154491300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179927300000", + "timeUnixNano": "1771374154491300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179937400000", + "timeUnixNano": "1771374154494800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179938200000", + "timeUnixNano": "1771374154495400000", "droppedAttributesCount": 0 } ], @@ -836,18 +806,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "1b04f1cf2bbf7b8f", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "5366b81ce7a9425e", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923099902", - "endTimeUnixNano": "1771878179939199902", + "startTimeUnixNano": "1771374154487799903", + "endTimeUnixNano": "1771374154496099903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -859,25 +829,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-279119dcb7a4dfd6.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 2409 + "intValue": 4013 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6046 + "intValue": 10054 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -895,25 +865,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 2409 + "intValue": 4013 } }, { "key": "http.response.size", "value": { - "intValue": 2709 + "intValue": 4313 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6046 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10054 } } ], @@ -922,49 +886,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923099902", + "timeUnixNano": "1771374154487799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179927399902", + "timeUnixNano": "1771374154487799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179927399902", + "timeUnixNano": "1771374154487799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179927399902", + "timeUnixNano": "1771374154487799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179927599902", + "timeUnixNano": "1771374154487799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179927799902", + "timeUnixNano": "1771374154492899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179937999902", + "timeUnixNano": "1771374154495499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179939199902", + "timeUnixNano": "1771374154496099903", "droppedAttributesCount": 0 } ], @@ -977,18 +941,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "86d0483dc5773de5", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "703e49c49e20ac01", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923199902", - "endTimeUnixNano": "1771878179953899902", + "startTimeUnixNano": "1771374154487700049", + "endTimeUnixNano": "1771374154496200049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1000,25 +964,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24460 + "intValue": 2405 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95495 + "intValue": 6034 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -1036,25 +1000,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 24460 + "intValue": 2405 } }, { "key": "http.response.size", "value": { - "intValue": 24760 + "intValue": 2705 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95495 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 6034 } } ], @@ -1063,49 +1021,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923199902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179927899902", + "timeUnixNano": "1771374154491400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179927899902", + "timeUnixNano": "1771374154491400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179927899902", + "timeUnixNano": "1771374154491400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179928199902", + "timeUnixNano": "1771374154491700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179928399902", + "timeUnixNano": "1771374154491700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179940399902", + "timeUnixNano": "1771374154495700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179953899902", + "timeUnixNano": "1771374154496200049", "droppedAttributesCount": 0 } ], @@ -1118,18 +1076,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "b06d4efd9dee2dfe", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "1f79634c36352f09", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923199902", - "endTimeUnixNano": "1771878179964299902", + "startTimeUnixNano": "1771374154487700049", + "endTimeUnixNano": "1771374154496900049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1141,19 +1099,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75770 + "intValue": 7525 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253440 + "intValue": 32839 } }, { @@ -1177,25 +1135,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 75770 + "intValue": 7525 } }, { "key": "http.response.size", "value": { - "intValue": 76070 + "intValue": 7825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253440 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 32839 } } ], @@ -1204,49 +1156,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923199902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179927699902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179927699902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179927699902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179928099902", + "timeUnixNano": "1771374154487700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179928299902", + "timeUnixNano": "1771374154493900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179941199902", + "timeUnixNano": "1771374154496400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179964299902", + "timeUnixNano": "1771374154496900049", "droppedAttributesCount": 0 } ], @@ -1259,18 +1211,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "bb2e4772ab0da8e2", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "891bd4bfdae52328", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923200049", - "endTimeUnixNano": "1771878179939200049", + "startTimeUnixNano": "1771374154487599951", + "endTimeUnixNano": "1771374154499299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1282,19 +1234,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" + "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 95481 } }, { @@ -1318,25 +1270,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response.size", "value": { - "intValue": 4309 + "intValue": 24755 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 95481 } } ], @@ -1345,49 +1291,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923200049", + "timeUnixNano": "1771374154487599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179923200049", + "timeUnixNano": "1771374154491599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179923200049", + "timeUnixNano": "1771374154491599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179923200049", + "timeUnixNano": "1771374154491599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179923200049", + "timeUnixNano": "1771374154491699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179929300049", + "timeUnixNano": "1771374154491699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179938000049", + "timeUnixNano": "1771374154497599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179939200049", + "timeUnixNano": "1771374154499299951", "droppedAttributesCount": 0 } ], @@ -1400,18 +1346,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "b62e3c9cc4484a86", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "69b9618349aff6d0", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923099951", - "endTimeUnixNano": "1771878179948899951", + "startTimeUnixNano": "1771374154487400000", + "endTimeUnixNano": "1771374154505700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1423,19 +1369,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" + "stringValue": "http://localhost:3010/_next/static/chunks/1becba464fa63580.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7535 + "intValue": 75774 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32852 + "intValue": 253416 } }, { @@ -1459,25 +1405,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7535 + "intValue": 75774 } }, { "key": "http.response.size", "value": { - "intValue": 7835 + "intValue": 76074 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32852 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 253416 } } ], @@ -1486,49 +1426,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154487400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154491200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154491200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154491200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179923099951", + "timeUnixNano": "1771374154491400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179933699951", + "timeUnixNano": "1771374154491500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179945499951", + "timeUnixNano": "1771374154497800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179948899951", + "timeUnixNano": "1771374154505700000", "droppedAttributesCount": 0 } ], @@ -1541,18 +1481,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "328bc7df4b18a301", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "14233a75195ce2d2", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923100097", - "endTimeUnixNano": "1771878179949500097", + "startTimeUnixNano": "1771374154487500000", + "endTimeUnixNano": "1771374154497500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1564,13 +1504,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" + "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1019 + "intValue": 1020 } }, { @@ -1594,25 +1534,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1019 + "intValue": 1020 } }, { "key": "http.response.size", "value": { - "intValue": 1319 + "intValue": 1320 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1019 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1020 } } ], @@ -1621,49 +1555,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154487500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154487500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154487500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154487500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154487500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179939400098", + "timeUnixNano": "1771374154496300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179949200098", + "timeUnixNano": "1771374154497200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179949500097", + "timeUnixNano": "1771374154497500000", "droppedAttributesCount": 0 } ], @@ -1676,18 +1610,18 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "8bdcdee174780ed9", - "parentSpanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "cb1ae567e8855e3e", + "parentSpanId": "7c0fd367b417b259", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878179923100097", - "endTimeUnixNano": "1771878179971700098", + "startTimeUnixNano": "1771374154488399903", + "endTimeUnixNano": "1771374154505099903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1699,19 +1633,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/54dd44d7c8bba4c2.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56807 + "intValue": 56598 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 206948 + "intValue": 205926 } }, { @@ -1735,25 +1669,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 56807 + "intValue": 56598 } }, { "key": "http.response.size", "value": { - "intValue": 57107 + "intValue": 56898 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 206948 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 205926 } } ], @@ -1762,49 +1690,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154488399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154488399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154488399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154488399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878179923100097", + "timeUnixNano": "1771374154488399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878179938400098", + "timeUnixNano": "1771374154496399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878179954100097", + "timeUnixNano": "1771374154500099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878179971700098", + "timeUnixNano": "1771374154505099903", "droppedAttributesCount": 0 } ], @@ -1817,17 +1745,17 @@ "flags": 257 }, { - "traceId": "e88df5c10eea43a2daa91e92a2c9bc46", - "spanId": "f23928e8c4dc0125", + "traceId": "e02fad74c9e77e2fd00c6768ca73c7c2", + "spanId": "7c0fd367b417b259", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878179910100000", - "endTimeUnixNano": "1771878179984900000", + "startTimeUnixNano": "1771374154481899903", + "endTimeUnixNano": "1771374154536699903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -1847,68 +1775,56 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878179910100000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878179943000000", + "timeUnixNano": "1771374154495399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878179943000000", + "timeUnixNano": "1771374154495399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878179943000000", + "timeUnixNano": "1771374154495499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878179984900000", + "timeUnixNano": "1771374154536599903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878179984900000", + "timeUnixNano": "1771374154536699903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878179984900000", + "timeUnixNano": "1771374154536699903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878179946000000", + "timeUnixNano": "1771374154509899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878179946000000", + "timeUnixNano": "1771374154509899903", "droppedAttributesCount": 0 } ], @@ -1929,12 +1845,12 @@ }, "spans": [ { - "traceId": "b2a421ba4c87db516c36492ac66af40b", - "spanId": "601ffe51e0d9a011", + "traceId": "49f14a8e8bdc93a3e47837751420eed4", + "spanId": "674858bf1e8bc46b", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878180151000000", - "endTimeUnixNano": "1771878180180000000", + "startTimeUnixNano": "1771374154673000000", + "endTimeUnixNano": "1771374154678000000", "attributes": [ { "key": "component", @@ -1957,7 +1873,7 @@ { "key": "session.id", "value": { - "stringValue": "F829CA08D048BFCA0E4EAEA0AA99F12F" + "stringValue": "8DAE43A19E2C4A0FE1D32EBCB2AEF38B" } }, { @@ -2029,12 +1945,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2042,49 +1952,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180151700049", + "timeUnixNano": "1771374154674099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180178700049", + "timeUnixNano": "1771374154677399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180178700049", + "timeUnixNano": "1771374154677399903", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json index 2fe262c67..c560825ae 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "60254796F39B3FFD70C40D784D860AC8" + "stringValue": "0B25BB3E29C7133F26FCB8317EB2FA11" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878175204000000", - "observedTimeUnixNano": "1771878175204000000", + "timeUnixNano": "1769811576318300049", + "observedTimeUnixNano": "1769811576318000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at t.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215)\n at s.message (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579)\n at Proxy. (http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020)\n at o (http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334)\n at i2 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144382)\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150468\n at tk (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378)\n at i9 (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145615)\n at cu (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172615)\n at ca (http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437)" + "stringValue": "Error\n at e.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341)\n at s.message (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585)\n at Proxy. (http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026)\n at o (http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335)\n at i2 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144380)\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150466\n at tk (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376)\n at i9 (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145613)\n at cu (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172613)\n at ca (http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n at http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\":\"450f76c7d056bbedd174d43e02bb77aa\",\"Error\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n at http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\":\"e37956446879e6a5a36c27f196ea6595\",\"Error\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n at http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"Error\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n at http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"Error\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n at http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\":\"e1d8154aba2335b6f75749ea66ea412d\",\"Error\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n at http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\":\"da420bfb1f92af1ad511eeef61a12620\"}" + "stringValue": "{\"Error\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n at http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\":\"15fd21ff52e283c3bb62052de324ad34\",\"Error\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n at http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\":\"734e6ec704f57fd3eb85256dd8f38044\",\"Error\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n at http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\":\"ea3ef035957877fbf63a62637cdfcc92\",\"Error\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n at http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\":\"62daae22085216409a457a21cb79a1b4\",\"Error\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n at http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\":\"7f0a703a46bf13f33017d981466478d2\",\"Error\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n at http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\":\"f06fd0cd216422bc438c490a646ec9f9\",\"Error\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n at http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\":\"9854c0c6494879a068188282e03f6e99\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "F117102D32321E49CD7C622B0FC8E198" + "stringValue": "B675B5B604DFDAA73C9E54F51EB877CF" } }, { "key": "session.id", "value": { - "stringValue": "6AEEC37160BC661DEBF050F16CFE0873" + "stringValue": "A23A40C255C5A396539CC5E6858356EC" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3010/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json index a351cc661..ac970ce71 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-turbopack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "F1393C5AF5E826591C4A84A37DC0469F" + "stringValue": "BC349C72EE3EB33D6A165918A43B532F" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "6bd0a650eed10cdf571c30af30ea0125", - "spanId": "196609553b9c963b", + "traceId": "194a9b07a86802a53b07eb4bf69b0972", + "spanId": "031b5134e2d02c09", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878174480000000", - "endTimeUnixNano": "1771878174634200000", + "startTimeUnixNano": "1769811575898000000", + "endTimeUnixNano": "1769811576014800000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "93142184999233A4A77382B9E37A8B21" + "stringValue": "5EE0DBB8F2B0169F85025E4DDCC684F9" } }, { "key": "emb.tab_id", "value": { - "stringValue": "F1393C5AF5E826591C4A84A37DC0469F" + "stringValue": "BC349C72EE3EB33D6A165918A43B532F" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 8 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 14 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "16f6f04014605b43", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "df3e571968c312fb", + "parentSpanId": "e18a8856a6dc05ae", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878174358900049", - "endTimeUnixNano": "1771878174380800049", + "startTimeUnixNano": "1769811575806600098", + "endTimeUnixNano": "1769811575811800098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -207,19 +201,13 @@ { "key": "http.response_content_length", "value": { - "intValue": 2045 + "intValue": 2042 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7142 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7139 } } ], @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174358900049", + "timeUnixNano": "1769811575806600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174362800049", + "timeUnixNano": "1769811575809100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174362800049", + "timeUnixNano": "1769811575809100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174362800049", + "timeUnixNano": "1769811575809100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878174358800049", + "timeUnixNano": "1769811575806600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174362900049", + "timeUnixNano": "1769811575809300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174362900049", + "timeUnixNano": "1769811575809400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174370500049", + "timeUnixNano": "1769811575811500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174380800049", + "timeUnixNano": "1769811575811800098", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "3764dd1056e3e8bc", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "fdfc8da5f4d4be42", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174380800098", - "endTimeUnixNano": "1771878174395300098", + "startTimeUnixNano": "1769811575813900000", + "endTimeUnixNano": "1769811575819800000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -356,12 +344,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -369,49 +351,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174380800098", + "timeUnixNano": "1769811575813900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174380800098", + "timeUnixNano": "1769811575813900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174380800098", + "timeUnixNano": "1769811575813900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174380800098", + "timeUnixNano": "1769811575813900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174380800098", + "timeUnixNano": "1769811575813900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174385900098", + "timeUnixNano": "1769811575817700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174394800098", + "timeUnixNano": "1769811575819200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174395300098", + "timeUnixNano": "1769811575819800000", "droppedAttributesCount": 0 } ], @@ -424,18 +406,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "7fc7a6b7661f26ab", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "72ae4034585861f1", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381500098", - "endTimeUnixNano": "1771878174400300098", + "startTimeUnixNano": "1769811575814600000", + "endTimeUnixNano": "1769811575821700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -447,13 +429,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 984 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 2961 } }, { @@ -465,7 +453,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "non-blocking" + "stringValue": "blocking" } }, { @@ -477,25 +465,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 2961 } } ], @@ -504,49 +486,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381500098", + "timeUnixNano": "1769811575814600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174388800098", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174388800098", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174388800098", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174389100098", + "timeUnixNano": "1769811575818200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174389500098", + "timeUnixNano": "1769811575818700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174399600098", + "timeUnixNano": "1769811575821100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174400300098", + "timeUnixNano": "1769811575821700000", "droppedAttributesCount": 0 } ], @@ -559,18 +541,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "1ce726b9437c33d7", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "611b1ab08c80e6dd", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381499903", - "endTimeUnixNano": "1771878174406999903", + "startTimeUnixNano": "1769811575814600000", + "endTimeUnixNano": "1769811575821300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -582,19 +564,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" + "stringValue": "http://localhost:3010/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 2409 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 6046 + "intValue": 28388 } }, { @@ -618,25 +594,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 2409 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 2709 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6046 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 28388 } } ], @@ -645,49 +615,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381499903", + "timeUnixNano": "1769811575814600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174390399903", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174390399903", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174390399903", + "timeUnixNano": "1769811575817400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174390799903", + "timeUnixNano": "1769811575818300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174390999903", + "timeUnixNano": "1769811575818900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174405599903", + "timeUnixNano": "1769811575820700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174406999903", + "timeUnixNano": "1769811575821300000", "droppedAttributesCount": 0 } ], @@ -700,18 +670,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "f5269570be809903", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "9e4794ea9520b29a", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381299952", - "endTimeUnixNano": "1771878174407799952", + "startTimeUnixNano": "1769811575814499902", + "endTimeUnixNano": "1769811575825699902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -723,19 +693,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" + "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 983 + "intValue": 2405 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 2961 + "intValue": 6034 } }, { @@ -747,7 +717,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "blocking" + "stringValue": "non-blocking" } }, { @@ -759,25 +729,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 983 + "intValue": 2405 } }, { "key": "http.response.size", "value": { - "intValue": 1283 + "intValue": 2705 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 6034 } } ], @@ -786,49 +750,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381299952", + "timeUnixNano": "1769811575814499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174388799952", + "timeUnixNano": "1769811575819199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174388799952", + "timeUnixNano": "1769811575819199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174388799952", + "timeUnixNano": "1769811575819199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174389299952", + "timeUnixNano": "1769811575819599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174389399952", + "timeUnixNano": "1769811575819999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174405599951", + "timeUnixNano": "1769811575824799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174407799952", + "timeUnixNano": "1769811575825699902", "droppedAttributesCount": 0 } ], @@ -841,18 +805,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "47f3c08b1348f2b6", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "f05713963ba93573", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174382100000", - "endTimeUnixNano": "1771878174433600000", + "startTimeUnixNano": "1769811575814500049", + "endTimeUnixNano": "1769811575826700049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -864,19 +828,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75770 + "intValue": 4012 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253440 + "intValue": 10054 } }, { @@ -900,25 +864,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 75770 + "intValue": 4012 } }, { "key": "http.response.size", "value": { - "intValue": 76070 + "intValue": 4312 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253440 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10054 } } ], @@ -927,49 +885,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174382100000", + "timeUnixNano": "1769811575814500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174391500000", + "timeUnixNano": "1769811575814500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174391500000", + "timeUnixNano": "1769811575814500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174391500000", + "timeUnixNano": "1769811575814500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174391700000", + "timeUnixNano": "1769811575814500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174391900000", + "timeUnixNano": "1769811575820400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174409000000", + "timeUnixNano": "1769811575825700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174433600000", + "timeUnixNano": "1769811575826700049", "droppedAttributesCount": 0 } ], @@ -982,18 +940,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "f9a41cf0b8ed35b9", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "73a6710d68c0bfca", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174382000049", - "endTimeUnixNano": "1771878174411600049", + "startTimeUnixNano": "1769811575814399951", + "endTimeUnixNano": "1769811575831799951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1005,19 +963,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" + "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 95481 } }, { @@ -1041,25 +999,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response.size", "value": { - "intValue": 4309 + "intValue": 24755 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 95481 } } ], @@ -1068,49 +1020,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174382000049", + "timeUnixNano": "1769811575814399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174382000049", + "timeUnixNano": "1769811575819299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174382000049", + "timeUnixNano": "1769811575819299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174382000049", + "timeUnixNano": "1769811575819299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174382000049", + "timeUnixNano": "1769811575819599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174396600049", + "timeUnixNano": "1769811575820199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174409300049", + "timeUnixNano": "1769811575827399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174411600049", + "timeUnixNano": "1769811575831799951", "droppedAttributesCount": 0 } ], @@ -1123,18 +1075,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "97f3311ff87a447f", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "dcf1d0ee37aea089", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381899952", - "endTimeUnixNano": "1771878174413199952", + "startTimeUnixNano": "1769811575814300098", + "endTimeUnixNano": "1769811575837000098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1146,19 +1098,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" + "stringValue": "http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7535 + "intValue": 75775 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32852 + "intValue": 253416 } }, { @@ -1182,25 +1134,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7535 + "intValue": 75775 } }, { "key": "http.response.size", "value": { - "intValue": 7835 + "intValue": 76075 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32852 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 253416 } } ], @@ -1209,49 +1155,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381899952", + "timeUnixNano": "1769811575814300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174381899952", + "timeUnixNano": "1769811575819000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174381899952", + "timeUnixNano": "1769811575819000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174381899952", + "timeUnixNano": "1769811575819000098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174381899952", + "timeUnixNano": "1769811575819500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174400799952", + "timeUnixNano": "1769811575819900098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174411299952", + "timeUnixNano": "1769811575827700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174413199952", + "timeUnixNano": "1769811575837000098", "droppedAttributesCount": 0 } ], @@ -1264,18 +1210,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "39dc1a032bb916f7", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "c17aa5e3b7d6dd4a", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381800098", - "endTimeUnixNano": "1771878174418500098", + "startTimeUnixNano": "1769811575815300000", + "endTimeUnixNano": "1769811575828100000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1287,19 +1233,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" + "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24460 + "intValue": 7525 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95495 + "intValue": 32839 } }, { @@ -1323,25 +1269,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 24460 + "intValue": 7525 } }, { "key": "http.response.size", "value": { - "intValue": 24760 + "intValue": 7825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95495 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 32839 } } ], @@ -1350,49 +1290,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381800098", + "timeUnixNano": "1769811575815300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174391900098", + "timeUnixNano": "1769811575815300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174391900098", + "timeUnixNano": "1769811575815300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174391900098", + "timeUnixNano": "1769811575815300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174392100098", + "timeUnixNano": "1769811575815300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174392100098", + "timeUnixNano": "1769811575822400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174406400098", + "timeUnixNano": "1769811575827000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174418500098", + "timeUnixNano": "1769811575828100000", "droppedAttributesCount": 0 } ], @@ -1405,18 +1345,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "10b5514524926756", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "c601839fa191fcc0", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381599903", - "endTimeUnixNano": "1771878174419999903", + "startTimeUnixNano": "1769811575815199902", + "endTimeUnixNano": "1769811575829399902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1428,13 +1368,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" + "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1019 + "intValue": 1020 } }, { @@ -1458,25 +1398,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1019 + "intValue": 1020 } }, { "key": "http.response.size", "value": { - "intValue": 1319 + "intValue": 1320 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1019 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1020 } } ], @@ -1485,49 +1419,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381599903", + "timeUnixNano": "1769811575815199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174381599903", + "timeUnixNano": "1769811575815199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174381599903", + "timeUnixNano": "1769811575815199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174381599903", + "timeUnixNano": "1769811575815199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174381599903", + "timeUnixNano": "1769811575815199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174408299903", + "timeUnixNano": "1769811575826699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174419699903", + "timeUnixNano": "1769811575829199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174419999903", + "timeUnixNano": "1769811575829399902", "droppedAttributesCount": 0 } ], @@ -1540,18 +1474,18 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "451b4a196ef830ab", - "parentSpanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "445f6fcdbadfecf2", + "parentSpanId": "e18a8856a6dc05ae", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174381500049", - "endTimeUnixNano": "1771878174433500049", + "startTimeUnixNano": "1769811575815100049", + "endTimeUnixNano": "1769811575834600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1563,19 +1497,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56807 + "intValue": 49283 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 206948 + "intValue": 183550 } }, { @@ -1599,25 +1533,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 56807 + "intValue": 49283 } }, { "key": "http.response.size", "value": { - "intValue": 57107 + "intValue": 49583 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 206948 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 183550 } } ], @@ -1626,49 +1554,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174381500049", + "timeUnixNano": "1769811575815100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174381500049", + "timeUnixNano": "1769811575815100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174381500049", + "timeUnixNano": "1769811575815100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174381500049", + "timeUnixNano": "1769811575815100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174381500049", + "timeUnixNano": "1769811575815100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174407300049", + "timeUnixNano": "1769811575822500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174418600049", + "timeUnixNano": "1769811575828600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174433500049", + "timeUnixNano": "1769811575834600049", "droppedAttributesCount": 0 } ], @@ -1681,17 +1609,17 @@ "flags": 257 }, { - "traceId": "afd8167f89f1912cf2d52759a5f21a1b", - "spanId": "d0907b8527b6645b", + "traceId": "3466dc320042e13012dca29ffc642798", + "spanId": "e18a8856a6dc05ae", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878174359100000", - "endTimeUnixNano": "1771878174465500000", + "startTimeUnixNano": "1769811575806899902", + "endTimeUnixNano": "1769811575878499902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "0676DC3A356B00CCD532A1D360E3AB60" + "stringValue": "E1D5B6181971C95CF9B86963198F3118" } }, { @@ -1709,70 +1637,58 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878174359100000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878174429900000", + "timeUnixNano": "1769811575822799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878174429900000", + "timeUnixNano": "1769811575822799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878174429900000", + "timeUnixNano": "1769811575822799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878174465500000", + "timeUnixNano": "1769811575878499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878174465500000", + "timeUnixNano": "1769811575878499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878174465500000", + "timeUnixNano": "1769811575878499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878174435000000", + "timeUnixNano": "1769811575846899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878174435000000", + "timeUnixNano": "1769811575846899902", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json index 35d322d25..6db897b3e 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" + "stringValue": "9B06B5B559CE3F126D6EF10A7BFD7224" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878180963600098", - "observedTimeUnixNano": "1771878180963000000", + "timeUnixNano": "1769811580235199951", + "observedTimeUnixNano": "1769811580235000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870)\n at a.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" + "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660)\n at a.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\":\"76b5dab0e72069584d89e0b302279695\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\":\"d035e6671d0c3186ab8408ec8453b89d\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\":\"166e3b7993ce96be2e298450dca31ca8\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\":\"e2f6858a89ef8eeb481256284771da3c\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"Error\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\":\"b7fea7267af0d3b2cb9596810dd712f0\"}" + "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\":\"db0d46c3ca28c53466d447f145d3d31f\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\":\"f27043cc7214fdbab0262293a0060a16\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"Error\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\":\"9040bed901f1ec37d64a729e40eb25e5\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\":\"ae15458582b5d5019a30fa307e376b50\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "95C107270B2BDEC5004F564C9C079E9F" + "stringValue": "EB28A1F9C3B787F2B0B7B1357FF823FE" } }, { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "596160548BCBEC63D1BDB59F70025259" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3012/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json index 8e1ee86c7..7ba65b63a 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" + "stringValue": "D504EF413B5E294593A103A5E6BAB156" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "56f68568c27ae9efbae5bd2641ab3630", - "spanId": "cd7c5c7c1c0c19eb", + "traceId": "5744a43b384a03ecae6ed908931b4b44", + "spanId": "c7d7c7ed83417593", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878180467000000", - "endTimeUnixNano": "1771878181092600000", + "startTimeUnixNano": "1771374154782000000", + "endTimeUnixNano": "1771374155387500000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "CEF0D7BF770A5A7741FC7B2D825D8704" + "stringValue": "BA00EB5E864A39B4CC2D76D058407CDF" } }, { "key": "emb.tab_id", "value": { - "stringValue": "4CBBBC7B7386057DEA1F9DFA4DDA271A" + "stringValue": "D504EF413B5E294593A103A5E6BAB156" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 8 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878180635399902", + "timeUnixNano": "1771374154920899902", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878180469-3612198858466" + "stringValue": "v5-1771374154784-3989754461869" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 108 + "intValue": 24 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 108 + "intValue": 24 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 72.79999995231628 + "doubleValue": 2.7999999970197678 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 35.200000047683716 + "doubleValue": 21.200000002980232 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878180641000000", + "timeUnixNano": "1771374154928000000", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878180962699951", + "timeUnixNano": "1771374155345099854", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "5bf6b1c37429a785", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "b860fdc90829b754", + "parentSpanId": "1e8f31852eec9f1b", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878180317299951", - "endTimeUnixNano": "1771878180390799951", + "startTimeUnixNano": "1771374154720900049", + "endTimeUnixNano": "1771374154723800049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -343,7 +337,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2054 + "intValue": 2055 } }, { @@ -351,12 +345,6 @@ "value": { "intValue": 6204 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180317299951", + "timeUnixNano": "1771374154720900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180348499951", + "timeUnixNano": "1771374154721800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180348499951", + "timeUnixNano": "1771374154721800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180348499951", + "timeUnixNano": "1771374154721800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878180317199951", + "timeUnixNano": "1771374154720800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180348699951", + "timeUnixNano": "1771374154722000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180348799951", + "timeUnixNano": "1771374154722000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180389999951", + "timeUnixNano": "1771374154723600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180390799951", + "timeUnixNano": "1771374154723800049", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "bf12331ae0ecb59e", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "175571a468e3babb", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180391900098", - "endTimeUnixNano": "1771878180401300098", + "startTimeUnixNano": "1771374154725600049", + "endTimeUnixNano": "1771374154729900049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -492,12 +480,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -505,49 +487,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180391900098", + "timeUnixNano": "1771374154725600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180391900098", + "timeUnixNano": "1771374154725600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180391900098", + "timeUnixNano": "1771374154725600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180391900098", + "timeUnixNano": "1771374154725600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180391900098", + "timeUnixNano": "1771374154725600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180395800098", + "timeUnixNano": "1771374154728000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180400600098", + "timeUnixNano": "1771374154729500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180401300098", + "timeUnixNano": "1771374154729900049", "droppedAttributesCount": 0 } ], @@ -560,18 +542,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "2494e16c0abc7aab", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "7568b2a7ce8b16d5", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180393000000", - "endTimeUnixNano": "1771878180402600000", + "startTimeUnixNano": "1771374154726500097", + "endTimeUnixNano": "1771374154731400097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -627,12 +609,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -640,49 +616,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180393000000", + "timeUnixNano": "1771374154726500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180396300000", + "timeUnixNano": "1771374154729300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180396300000", + "timeUnixNano": "1771374154729300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180396300000", + "timeUnixNano": "1771374154729300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180397200000", + "timeUnixNano": "1771374154729500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180397700000", + "timeUnixNano": "1771374154729600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180402000000", + "timeUnixNano": "1771374154730800097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180402600000", + "timeUnixNano": "1771374154731400097", "droppedAttributesCount": 0 } ], @@ -695,18 +671,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "1152da1c995c586a", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "44142652ca0acf27", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900049", - "endTimeUnixNano": "1771878180414200049", + "startTimeUnixNano": "1771374154726399902", + "endTimeUnixNano": "1771374154732999902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -768,12 +744,6 @@ "value": { "intValue": 2903 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -781,49 +751,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900049", + "timeUnixNano": "1771374154726399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180398300049", + "timeUnixNano": "1771374154729799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180398300049", + "timeUnixNano": "1771374154729799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180398300049", + "timeUnixNano": "1771374154729799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180398700049", + "timeUnixNano": "1771374154729999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180398800049", + "timeUnixNano": "1771374154729999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180408100049", + "timeUnixNano": "1771374154732699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180414200049", + "timeUnixNano": "1771374154732999902", "droppedAttributesCount": 0 } ], @@ -836,18 +806,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "288293cee7ecdbc3", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "833de053ac308c13", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900049", - "endTimeUnixNano": "1771878180422400049", + "startTimeUnixNano": "1771374154726300049", + "endTimeUnixNano": "1771374154733500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -859,25 +829,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 3567 + "intValue": 795 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -895,25 +859,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 795 } } ], @@ -922,49 +880,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900049", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180399000049", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180399000049", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180399000049", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180399200049", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180399200049", + "timeUnixNano": "1771374154731300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180410000049", + "timeUnixNano": "1771374154733300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180422400049", + "timeUnixNano": "1771374154733500049", "droppedAttributesCount": 0 } ], @@ -977,18 +935,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "674e8783878a2751", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "23fae50012031275", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392899951", - "endTimeUnixNano": "1771878180433399951", + "startTimeUnixNano": "1771374154726300049", + "endTimeUnixNano": "1771374154734000049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1000,25 +958,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 + "intValue": 1841 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 173257 + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -1036,25 +994,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 3567 } } ], @@ -1063,49 +1015,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392899951", + "timeUnixNano": "1771374154726300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180398999951", + "timeUnixNano": "1771374154730000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180398999951", + "timeUnixNano": "1771374154730000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180398999951", + "timeUnixNano": "1771374154730000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180399199951", + "timeUnixNano": "1771374154730200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180399199951", + "timeUnixNano": "1771374154730600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180422499951", + "timeUnixNano": "1771374154733100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180433399951", + "timeUnixNano": "1771374154734000049", "droppedAttributesCount": 0 } ], @@ -1118,18 +1070,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "134477e34e47f7a9", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "6157e1e456830c12", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900098", - "endTimeUnixNano": "1771878180416300098", + "startTimeUnixNano": "1771374154726199951", + "endTimeUnixNano": "1771374154739699951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1141,13 +1093,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 46245 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 172733 } }, { @@ -1171,25 +1129,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 172733 } } ], @@ -1198,49 +1150,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180402600098", + "timeUnixNano": "1771374154730699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180416000098", + "timeUnixNano": "1771374154735399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180416300098", + "timeUnixNano": "1771374154739699951", "droppedAttributesCount": 0 } ], @@ -1253,18 +1205,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "bba45b17c45778bf", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "f512491b52a09bd6", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900098", - "endTimeUnixNano": "1771878180419900098", + "startTimeUnixNano": "1771374154726100097", + "endTimeUnixNano": "1771374154741300097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1276,13 +1228,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 564 + "intValue": 54541 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 173257 } }, { @@ -1306,25 +1264,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 564 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 864 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 564 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 173257 } } ], @@ -1333,49 +1285,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154726100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180402900098", + "timeUnixNano": "1771374154730600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180419200098", + "timeUnixNano": "1771374154735500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180419900098", + "timeUnixNano": "1771374154741300097", "droppedAttributesCount": 0 } ], @@ -1388,18 +1340,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "8b9480edefb09687", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "0c8791027983e673", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900098", - "endTimeUnixNano": "1771878180433500098", + "startTimeUnixNano": "1771374154725999902", + "endTimeUnixNano": "1771374154734199902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1411,19 +1363,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 172733 + "intValue": 564 } }, { @@ -1447,25 +1393,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 564 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 864 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 564 } } ], @@ -1474,49 +1414,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180399700098", + "timeUnixNano": "1771374154731099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180399700098", + "timeUnixNano": "1771374154731099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180399700098", + "timeUnixNano": "1771374154731099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180399800098", + "timeUnixNano": "1771374154731199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180399800098", + "timeUnixNano": "1771374154731299902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180423900098", + "timeUnixNano": "1771374154733999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180433500098", + "timeUnixNano": "1771374154734199902", "droppedAttributesCount": 0 } ], @@ -1529,18 +1469,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "d4fb7b6173a8afb5", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "4b0c02680239dea6", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900098", - "endTimeUnixNano": "1771878180436700098", + "startTimeUnixNano": "1771374154725999902", + "endTimeUnixNano": "1771374154735799902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1552,19 +1492,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-2a4174a4007a9a69.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 37762 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 121417 + "intValue": 876 } }, { @@ -1588,25 +1522,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 37762 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 38062 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 121417 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 876 } } ], @@ -1615,49 +1543,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392900098", + "timeUnixNano": "1771374154725999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180414500098", + "timeUnixNano": "1771374154733899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180432500098", + "timeUnixNano": "1771374154735699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180436700098", + "timeUnixNano": "1771374154735799902", "droppedAttributesCount": 0 } ], @@ -1670,18 +1598,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "e738a7213c3ee905", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "ad06681170357e2a", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900000", - "endTimeUnixNano": "1771878180428100000", + "startTimeUnixNano": "1771374154725900049", + "endTimeUnixNano": "1771374154738000049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1693,13 +1621,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-efb5c652168403df.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 20484 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 75206 } }, { @@ -1723,25 +1657,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 20484 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 20784 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 75206 } } ], @@ -1750,49 +1678,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180420200000", + "timeUnixNano": "1771374154733300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180427400000", + "timeUnixNano": "1771374154737000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180428100000", + "timeUnixNano": "1771374154738000049", "droppedAttributesCount": 0 } ], @@ -1805,18 +1733,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "26db675773bb368f", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "f29370d07d4b61db", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392900000", - "endTimeUnixNano": "1771878180432300000", + "startTimeUnixNano": "1771374154725900049", + "endTimeUnixNano": "1771374154740300049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1828,19 +1756,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" + "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 + "intValue": 37762 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1033 + "intValue": 121417 } }, { @@ -1864,25 +1792,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 37762 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 38062 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 121417 } } ], @@ -1891,49 +1813,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392900000", + "timeUnixNano": "1771374154725900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180422800000", + "timeUnixNano": "1771374154732600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180431100000", + "timeUnixNano": "1771374154737400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180432300000", + "timeUnixNano": "1771374154740300049", "droppedAttributesCount": 0 } ], @@ -1946,18 +1868,18 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "c860d66bb9c20fbc", - "parentSpanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "c0ec10bdd370bcda", + "parentSpanId": "1e8f31852eec9f1b", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878180392799902", - "endTimeUnixNano": "1771878180432899902", + "startTimeUnixNano": "1771374154725999951", + "endTimeUnixNano": "1771374154737299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -1969,19 +1891,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-5334fee99ab53793.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20675 + "intValue": 656 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 76090 + "intValue": 1033 } }, { @@ -2005,25 +1927,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 20675 + "intValue": 656 } }, { "key": "http.response.size", "value": { - "intValue": 20975 + "intValue": 956 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 76090 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1033 } } ], @@ -2032,49 +1948,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180392799902", + "timeUnixNano": "1771374154725999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180392799902", + "timeUnixNano": "1771374154725999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180392799902", + "timeUnixNano": "1771374154725999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180392799902", + "timeUnixNano": "1771374154725999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180392799902", + "timeUnixNano": "1771374154725999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180416599902", + "timeUnixNano": "1771374154734599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180428999902", + "timeUnixNano": "1771374154736999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180432899902", + "timeUnixNano": "1771374154737299951", "droppedAttributesCount": 0 } ], @@ -2087,17 +2003,17 @@ "flags": 257 }, { - "traceId": "e4b8e2131e119c359dfdf593d4deefd2", - "spanId": "c15ef06c701573f1", + "traceId": "75ec470c2c84d922ebef95561067bc91", + "spanId": "1e8f31852eec9f1b", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878180317400049", - "endTimeUnixNano": "1771878180474500049", + "startTimeUnixNano": "1771374154721100000", + "endTimeUnixNano": "1771374154788500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -2117,12 +2033,6 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2130,55 +2040,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180317400049", + "timeUnixNano": "1771374154721100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878180421200049", + "timeUnixNano": "1771374154733200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878180421200049", + "timeUnixNano": "1771374154733200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878180421200049", + "timeUnixNano": "1771374154733200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878180474500049", + "timeUnixNano": "1771374154788500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878180474500049", + "timeUnixNano": "1771374154788500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878180474500049", + "timeUnixNano": "1771374154788500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878180425300049", + "timeUnixNano": "1771374154745000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878180425300049", + "timeUnixNano": "1771374154745000000", "droppedAttributesCount": 0 } ], @@ -2199,12 +2109,12 @@ }, "spans": [ { - "traceId": "0ab480d384aba22b4b403ec615e24dd8", - "spanId": "a5c487f96d31ea7d", + "traceId": "6ff12f82682f24ed1529720b062d8b64", + "spanId": "c8fdfd8c60ac4ced", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878180636000000", - "endTimeUnixNano": "1771878180641000000", + "startTimeUnixNano": "1771374154922000000", + "endTimeUnixNano": "1771374154927000000", "attributes": [ { "key": "component", @@ -2227,7 +2137,7 @@ { "key": "session.id", "value": { - "stringValue": "C80A146F593ACFFE80723A509D719307" + "stringValue": "0B66A772D95E6941F0737592EAD6919D" } }, { @@ -2299,12 +2209,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2312,49 +2216,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878180636600098", + "timeUnixNano": "1771374154923000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878180640200098", + "timeUnixNano": "1771374154924800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878180640200098", + "timeUnixNano": "1771374154924800049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json index 163f11ff6..7eb5b88f5 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "CE48368C2E793249B821425D64B873C2" + "stringValue": "95A482054FFDC0DCB7E778F65E05FED1" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878175262000000", - "observedTimeUnixNano": "1771878175262000000", + "timeUnixNano": "1769811576411199951", + "observedTimeUnixNano": "1769811576411000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870)\n at a.message (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" + "stringValue": "Error\n at e.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660)\n at a.message (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649)\n at Proxy. (http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172)\n at n (http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302)\n at i8 (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135363)\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141449\n at nz (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197)\n at sn (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136596)\n at cc (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163598)\n at ci (http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\":\"76b5dab0e72069584d89e0b302279695\",\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\":\"d035e6671d0c3186ab8408ec8453b89d\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\":\"166e3b7993ce96be2e298450dca31ca8\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\":\"e2f6858a89ef8eeb481256284771da3c\",\"Error\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n at http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\"}" + "stringValue": "{\"Error\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n at http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"Error\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n at http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\":\"db0d46c3ca28c53466d447f145d3d31f\",\"Error\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n at http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\":\"f27043cc7214fdbab0262293a0060a16\",\"Error\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n at http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"Error\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n at http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"Error\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n at http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\":\"386cfc75819760e1ef3a10ca0c340f52\",\"Error\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n at http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\":\"9040bed901f1ec37d64a729e40eb25e5\",\"Error\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n at http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\":\"ae15458582b5d5019a30fa307e376b50\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "A89F5109776C50E8E922CBE839B27D09" + "stringValue": "A29D34236F807AC7FFD4FD97D10545E9" } }, { "key": "session.id", "value": { - "stringValue": "B7FF5C91C5E2B7BB0868C0DF9C4F506F" + "stringValue": "810F9F738BF6EC9BACCBACC3F848336C" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3012/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json index df9e2561c..a12add66c 100644 --- a/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-15-webpack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "E2F2C95CA03F42DD27137938271A72ED" + "stringValue": "C421C5856918B3E5961478E20F54FAF6" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "af0c7012420fc0d893d9c6cebe9eeea6", - "spanId": "0c6ec25a3f7809b4", + "traceId": "e8b80dce29a3bd67afcfc9ee3e5e7247", + "spanId": "55f9bb6048d71e9c", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878174498000000", - "endTimeUnixNano": "1771878174655200000", + "startTimeUnixNano": "1769811575946000000", + "endTimeUnixNano": "1769811576085700000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "855785FA68348047CB9BD7CAFEB500C5" + "stringValue": "AF027060B5B088EDF93CBC01F7210088" } }, { "key": "emb.tab_id", "value": { - "stringValue": "E2F2C95CA03F42DD27137938271A72ED" + "stringValue": "C421C5856918B3E5961478E20F54FAF6" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 7 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 9 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "ad0a9dcf30bbb6e0", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "b86c3c542094317f", + "parentSpanId": "c5645eb4ddb05270", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878174405499902", - "endTimeUnixNano": "1771878174426499902", + "startTimeUnixNano": "1769811575868100000", + "endTimeUnixNano": "1769811575878200000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -207,7 +201,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2054 + "intValue": 2055 } }, { @@ -215,12 +209,6 @@ "value": { "intValue": 6204 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174405499902", + "timeUnixNano": "1769811575868100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174409899902", + "timeUnixNano": "1769811575870800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174409899902", + "timeUnixNano": "1769811575870800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174409899902", + "timeUnixNano": "1769811575870800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878174405399902", + "timeUnixNano": "1769811575868000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174410099902", + "timeUnixNano": "1769811575871000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174410099902", + "timeUnixNano": "1769811575871000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174421799902", + "timeUnixNano": "1769811575876100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174426499902", + "timeUnixNano": "1769811575878200000", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "ae9470fa123523bc", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "017da22724d9dd30", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174425999951", - "endTimeUnixNano": "1771878174436599951", + "startTimeUnixNano": "1769811575878699951", + "endTimeUnixNano": "1769811575885899951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -356,12 +344,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -369,49 +351,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174425999951", + "timeUnixNano": "1769811575878699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174425999951", + "timeUnixNano": "1769811575878699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174425999951", + "timeUnixNano": "1769811575878699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174425999951", + "timeUnixNano": "1769811575878699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174425999951", + "timeUnixNano": "1769811575878699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174429799951", + "timeUnixNano": "1769811575881599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174436199951", + "timeUnixNano": "1769811575885599951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174436599951", + "timeUnixNano": "1769811575885899951", "droppedAttributesCount": 0 } ], @@ -424,18 +406,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "900f3c99a0757ab2", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "7fd13181050def90", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174426599951", - "endTimeUnixNano": "1771878174437999951", + "startTimeUnixNano": "1769811575878499903", + "endTimeUnixNano": "1769811575886799903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -491,12 +473,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -504,49 +480,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174426599951", + "timeUnixNano": "1769811575878499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174430099951", + "timeUnixNano": "1769811575881799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174430199951", + "timeUnixNano": "1769811575881799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174430199951", + "timeUnixNano": "1769811575881799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174430399951", + "timeUnixNano": "1769811575882099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174430399951", + "timeUnixNano": "1769811575882399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174437299951", + "timeUnixNano": "1769811575886299903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174437999951", + "timeUnixNano": "1769811575886799903", "droppedAttributesCount": 0 } ], @@ -559,18 +535,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "68e59257bd9fc455", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "f3c4449e3253e4a3", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174426299902", - "endTimeUnixNano": "1771878174442199902", + "startTimeUnixNano": "1769811575879299951", + "endTimeUnixNano": "1769811575889999951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -632,12 +608,6 @@ "value": { "intValue": 2903 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -645,49 +615,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174426299902", + "timeUnixNano": "1769811575879299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174430599902", + "timeUnixNano": "1769811575882499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174430599902", + "timeUnixNano": "1769811575882499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174430599902", + "timeUnixNano": "1769811575882499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174430699902", + "timeUnixNano": "1769811575882799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174430799902", + "timeUnixNano": "1769811575883099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174441799902", + "timeUnixNano": "1769811575888199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174442199902", + "timeUnixNano": "1769811575889999951", "droppedAttributesCount": 0 } ], @@ -700,18 +670,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "295b0a7377e005d6", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "c2f672eef612cb4b", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174426300049", - "endTimeUnixNano": "1771878174442600049", + "startTimeUnixNano": "1769811575879300098", + "endTimeUnixNano": "1769811575890100098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -773,12 +743,6 @@ "value": { "intValue": 3567 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -786,49 +750,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174426300049", + "timeUnixNano": "1769811575879300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174431300049", + "timeUnixNano": "1769811575883500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174431300049", + "timeUnixNano": "1769811575883600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174431300049", + "timeUnixNano": "1769811575883600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174431600049", + "timeUnixNano": "1769811575883700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174431800049", + "timeUnixNano": "1769811575883700098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174442000049", + "timeUnixNano": "1769811575889500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174442600049", + "timeUnixNano": "1769811575890100098", "droppedAttributesCount": 0 } ], @@ -841,18 +805,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "a4c1960a8095b2b7", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "b96fdd8ebcbaa6d9", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174426199951", - "endTimeUnixNano": "1771878174466599951", + "startTimeUnixNano": "1769811575879400098", + "endTimeUnixNano": "1769811575890700098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -864,19 +828,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 173257 + "intValue": 795 } }, { @@ -900,25 +858,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 795 } } ], @@ -927,49 +879,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174426199951", + "timeUnixNano": "1769811575879400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174431599951", + "timeUnixNano": "1769811575879400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174431599951", + "timeUnixNano": "1769811575879400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174431599951", + "timeUnixNano": "1769811575879400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174431899951", + "timeUnixNano": "1769811575879400098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174432099951", + "timeUnixNano": "1769811575886600098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174445599951", + "timeUnixNano": "1769811575890300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174466599951", + "timeUnixNano": "1769811575890700098", "droppedAttributesCount": 0 } ], @@ -982,18 +934,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "7091ae4364cc920f", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "a71c64fd22f3f77e", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427299951", - "endTimeUnixNano": "1771878174444299951", + "startTimeUnixNano": "1769811575879300000", + "endTimeUnixNano": "1769811575903300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1005,13 +957,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 46245 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 172733 } }, { @@ -1035,25 +993,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 172733 } } ], @@ -1062,49 +1014,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427299951", + "timeUnixNano": "1769811575879300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174427299951", + "timeUnixNano": "1769811575884400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174427299951", + "timeUnixNano": "1769811575884400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174427299951", + "timeUnixNano": "1769811575884400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174427299951", + "timeUnixNano": "1769811575884500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174438699951", + "timeUnixNano": "1769811575884600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174443899951", + "timeUnixNano": "1769811575893200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174444299951", + "timeUnixNano": "1769811575903300000", "droppedAttributesCount": 0 } ], @@ -1117,18 +1069,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "d8aba0c3eb89aadf", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "a3ba0eeffe1c5d75", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427200098", - "endTimeUnixNano": "1771878174460400097", + "startTimeUnixNano": "1769811575879199903", + "endTimeUnixNano": "1769811575903799903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1140,19 +1092,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 + "intValue": 54541 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 172733 + "intValue": 173257 } }, { @@ -1176,25 +1128,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 173257 } } ], @@ -1203,49 +1149,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427200098", + "timeUnixNano": "1769811575879199903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174432700098", + "timeUnixNano": "1769811575884099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174432800098", + "timeUnixNano": "1769811575884099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174432800098", + "timeUnixNano": "1769811575884099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174432900097", + "timeUnixNano": "1769811575884399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174433000097", + "timeUnixNano": "1769811575884499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174446000097", + "timeUnixNano": "1769811575892099903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174460400097", + "timeUnixNano": "1769811575903799903", "droppedAttributesCount": 0 } ], @@ -1258,18 +1204,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "42d0f300b2e67082", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "5c18d8a97cfa4390", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427200000", - "endTimeUnixNano": "1771878174444500000", + "startTimeUnixNano": "1769811575879099951", + "endTimeUnixNano": "1769811575891699951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1325,12 +1271,6 @@ "value": { "intValue": 564 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1338,49 +1278,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427200000", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174427200000", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174427200000", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174427200000", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174427200000", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174438900000", + "timeUnixNano": "1769811575887499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174444200000", + "timeUnixNano": "1769811575891499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174444500000", + "timeUnixNano": "1769811575891699951", "droppedAttributesCount": 0 } ], @@ -1393,18 +1333,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "1d1df492b61100d6", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "8c433ff624ee1fc8", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427099902", - "endTimeUnixNano": "1771878174449899902", + "startTimeUnixNano": "1769811575879099951", + "endTimeUnixNano": "1769811575897699951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1416,7 +1356,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js" } }, { @@ -1460,12 +1400,6 @@ "value": { "intValue": 876 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1473,49 +1407,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575879099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174444599902", + "timeUnixNano": "1769811575890499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174449599902", + "timeUnixNano": "1769811575897399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174449899902", + "timeUnixNano": "1769811575897699951", "droppedAttributesCount": 0 } ], @@ -1528,18 +1462,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "aa2a1e7c3748500e", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "fdb5c85efc5ff7d0", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427099902", - "endTimeUnixNano": "1771878174454399902", + "startTimeUnixNano": "1769811575878900000", + "endTimeUnixNano": "1769811575901700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1551,19 +1485,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 + "intValue": 20593 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1033 + "intValue": 75431 } }, { @@ -1587,25 +1521,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 20593 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 20893 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 75431 } } ], @@ -1614,49 +1542,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174444899902", + "timeUnixNano": "1769811575890100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174452999902", + "timeUnixNano": "1769811575899200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174454399902", + "timeUnixNano": "1769811575901700000", "droppedAttributesCount": 0 } ], @@ -1669,18 +1597,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "ac7dbb6be1b5eb7b", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "ab8b90075b101278", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174427099902", - "endTimeUnixNano": "1771878174464399902", + "startTimeUnixNano": "1769811575878900000", + "endTimeUnixNano": "1769811575902900000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1692,19 +1620,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" + "stringValue": "http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 37762 + "intValue": 30021 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 121417 + "intValue": 98221 } }, { @@ -1728,25 +1656,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 37762 + "intValue": 30021 } }, { "key": "http.response.size", "value": { - "intValue": 38062 + "intValue": 30321 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 121417 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 98221 } } ], @@ -1755,49 +1677,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174427099902", + "timeUnixNano": "1769811575878900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174443499902", + "timeUnixNano": "1769811575890000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174452599902", + "timeUnixNano": "1769811575899200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174464399902", + "timeUnixNano": "1769811575902900000", "droppedAttributesCount": 0 } ], @@ -1810,18 +1732,18 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "a50b3191a223c744", - "parentSpanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "f85104ee24950f7e", + "parentSpanId": "c5645eb4ddb05270", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878174426899951", - "endTimeUnixNano": "1771878174465199951", + "startTimeUnixNano": "1769811575878899903", + "endTimeUnixNano": "1769811575900199903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1833,19 +1755,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20675 + "intValue": 658 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 76090 + "intValue": 1033 } }, { @@ -1869,25 +1791,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 20675 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 20975 + "intValue": 958 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 76090 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1033 } } ], @@ -1896,49 +1812,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174426899951", + "timeUnixNano": "1769811575878899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878174426899951", + "timeUnixNano": "1769811575878899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878174426899951", + "timeUnixNano": "1769811575878899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878174426899951", + "timeUnixNano": "1769811575878899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878174426899951", + "timeUnixNano": "1769811575878899903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878174443699951", + "timeUnixNano": "1769811575891999903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878174452999951", + "timeUnixNano": "1769811575899299903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878174465199951", + "timeUnixNano": "1769811575900199903", "droppedAttributesCount": 0 } ], @@ -1951,17 +1867,17 @@ "flags": 257 }, { - "traceId": "0eda9438243f1b58a8a5d31c2a9fa714", - "spanId": "f1d31c1c242dac79", + "traceId": "8b4691bd216f94e5c65313d80b3387b9", + "spanId": "c5645eb4ddb05270", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878174405600000", - "endTimeUnixNano": "1771878174503400000", + "startTimeUnixNano": "1769811575868299951", + "endTimeUnixNano": "1769811575952699951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "65E27416A9E067EA332C7A03128809E1" + "stringValue": "7626EF84E10BB436CF7AA86B9D714C00" } }, { @@ -1979,13 +1895,7 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], @@ -1994,55 +1904,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878174405600000", + "timeUnixNano": "1769811575868299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878174448300000", + "timeUnixNano": "1769811575896399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878174448400000", + "timeUnixNano": "1769811575896399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878174448400000", + "timeUnixNano": "1769811575896399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878174503300000", + "timeUnixNano": "1769811575952699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878174503400000", + "timeUnixNano": "1769811575952699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878174503400000", + "timeUnixNano": "1769811575952699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878174453500000", + "timeUnixNano": "1769811575900199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878174453500000", + "timeUnixNano": "1769811575900199951", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json index bb40da644..f79e2a90a 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" + "stringValue": "8806B3143321D16E57702A2D0A4238C7" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878187235199951", - "observedTimeUnixNano": "1771878187235000000", + "timeUnixNano": "1769811580949800049", + "observedTimeUnixNano": "1769811580950000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918)\n at i.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942)\n at Proxy. (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459)\n at a (http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528)\n at sY (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161801)\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822)" + "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103)\n at n.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948)\n at Proxy. (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465)\n at a (http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529)\n at sY (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161801)\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\":\"9949ad0f7ff24b0affc3f595090658d9\",\"Error\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"Error\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\":\"15b8645cace346d9e6ceba56f882762f\",\"Error\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\":\"4fb973c036e18b810ee3da31e51cd097\",\"Error\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\":\"8965f2228d245fa9a1ea8196a2783196\",\"Error\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\"}" + "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\":\"064fbb708a69758b5a0ab80f376cb08a\",\"Error\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\":\"1d128b39b01355ec232666eb51ed9fdb\",\"Error\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"Error\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\":\"5abe9f02e7f14cba35bf7920024817dc\",\"Error\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "FAD0A3E1CF002D09FBEBC938C00737CF" + "stringValue": "CEC7BF3A56526D15C9F14AB7420DC924" } }, { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "4C7BF6EE0E22D49F7ACFEA4EB5E23581" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3014/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json index d270c91fb..b2f4dec32 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" + "stringValue": "DC308F0BE07F2E7FB559426E94A3979F" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "161e93a24c3846e1d6daff721fb1c3da", - "spanId": "89d8fac5962e0f2c", + "traceId": "4202bc48fd6426519532540d6e6292cc", + "spanId": "170f5789be357226", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878186670000000", - "endTimeUnixNano": "1771878187275400000", + "startTimeUnixNano": "1771374155497000000", + "endTimeUnixNano": "1771374156096400000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "F297E5029542C84CB4F9FDB0AAE371AC" + "stringValue": "AF780F733AFF9E6CDED7A3E85F0B51C9" } }, { "key": "emb.tab_id", "value": { - "stringValue": "0A1B1785B3BF04C2CE8541DAF8D0C84E" + "stringValue": "DC308F0BE07F2E7FB559426E94A3979F" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 5 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878186810399902", + "timeUnixNano": "1771374155630500000", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878186671-8594648100298" + "stringValue": "v5-1771374155499-2943488453668" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 56 + "intValue": 28 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 56 + "intValue": 28 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 8.100000023841858 + "doubleValue": 3.3999999910593033 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 47.89999997615814 + "doubleValue": 24.600000008940697 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878186815800049", + "timeUnixNano": "1771374155636599854", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878187234599854", + "timeUnixNano": "1771374156055000000", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "5428e18c7ea87998", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "7f4a89728ae3b7a0", + "parentSpanId": "ebbd73f9e6e48596", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878186574100097", - "endTimeUnixNano": "1771878186582600097", + "startTimeUnixNano": "1771374155420599902", + "endTimeUnixNano": "1771374155424099902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -343,7 +337,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1963 + "intValue": 1970 } }, { @@ -351,12 +345,6 @@ "value": { "intValue": 6239 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186574100097", + "timeUnixNano": "1771374155420599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186576900097", + "timeUnixNano": "1771374155421499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186576900097", + "timeUnixNano": "1771374155421499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186576900097", + "timeUnixNano": "1771374155421499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878186574100097", + "timeUnixNano": "1771374155420399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186577000097", + "timeUnixNano": "1771374155421799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186577000097", + "timeUnixNano": "1771374155421799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186582200098", + "timeUnixNano": "1771374155423799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186582600097", + "timeUnixNano": "1771374155424099902", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "c82f016927cc626f", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "cd07ca7243bb44fe", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584000097", - "endTimeUnixNano": "1771878186593700098", + "startTimeUnixNano": "1771374155426200000", + "endTimeUnixNano": "1771374155432500000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -492,12 +480,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -505,49 +487,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584000097", + "timeUnixNano": "1771374155426200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186584000097", + "timeUnixNano": "1771374155426200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186584000097", + "timeUnixNano": "1771374155426200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186584000097", + "timeUnixNano": "1771374155426200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186584000097", + "timeUnixNano": "1771374155426200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186587600097", + "timeUnixNano": "1771374155429600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186593300098", + "timeUnixNano": "1771374155432100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186593700098", + "timeUnixNano": "1771374155432500000", "droppedAttributesCount": 0 } ], @@ -560,18 +542,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "136b5d060e6415cf", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "077c7f6a59d0d716", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186583999902", - "endTimeUnixNano": "1771878186595399902", + "startTimeUnixNano": "1771374155426200049", + "endTimeUnixNano": "1771374155432600049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -583,19 +565,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" + "stringValue": "http://localhost:3014/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 2961 + "intValue": 28388 } }, { @@ -607,7 +583,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "blocking" + "stringValue": "non-blocking" } }, { @@ -619,25 +595,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 28388 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 28688 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 28388 } } ], @@ -646,49 +616,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186583999902", + "timeUnixNano": "1771374155426200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186587499902", + "timeUnixNano": "1771374155429100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186587499902", + "timeUnixNano": "1771374155429100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186587499902", + "timeUnixNano": "1771374155429100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186587699902", + "timeUnixNano": "1771374155429600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186587699902", + "timeUnixNano": "1771374155429900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186594399902", + "timeUnixNano": "1771374155432100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186595399902", + "timeUnixNano": "1771374155432600049", "droppedAttributesCount": 0 } ], @@ -701,18 +671,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "a24421c57ba60729", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "e9c91d51193442e5", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186583900049", - "endTimeUnixNano": "1771878186594100049", + "startTimeUnixNano": "1771374155426199951", + "endTimeUnixNano": "1771374155433599951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -724,13 +694,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2" + "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 28388 + "intValue": 984 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 2961 } }, { @@ -742,7 +718,7 @@ { "key": "http.request.render_blocking_status", "value": { - "stringValue": "non-blocking" + "stringValue": "blocking" } }, { @@ -754,25 +730,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 28388 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 28688 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 28388 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 2961 } } ], @@ -781,49 +751,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186583900049", + "timeUnixNano": "1771374155426199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186587600049", + "timeUnixNano": "1771374155430099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186587600049", + "timeUnixNano": "1771374155430099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186587600049", + "timeUnixNano": "1771374155430099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186587600049", + "timeUnixNano": "1771374155430099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186587700049", + "timeUnixNano": "1771374155430299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186593600049", + "timeUnixNano": "1771374155433299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186594100049", + "timeUnixNano": "1771374155433599951", "droppedAttributesCount": 0 } ], @@ -836,18 +806,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "3a559732522f0884", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "7d6c0068051e22bf", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584000049", - "endTimeUnixNano": "1771878186595600049", + "startTimeUnixNano": "1771374155426100097", + "endTimeUnixNano": "1771374155435200097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -859,19 +829,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" + "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13566 + "intValue": 13546 } }, { @@ -895,25 +865,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response.size", "value": { - "intValue": 5348 + "intValue": 5332 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13566 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 13546 } } ], @@ -922,49 +886,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584000049", + "timeUnixNano": "1771374155426100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186588000049", + "timeUnixNano": "1771374155430300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186588000049", + "timeUnixNano": "1771374155430300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186588000049", + "timeUnixNano": "1771374155430300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186588400049", + "timeUnixNano": "1771374155430500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186588600049", + "timeUnixNano": "1771374155430500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186594800049", + "timeUnixNano": "1771374155434200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186595600049", + "timeUnixNano": "1771374155435200097", "droppedAttributesCount": 0 } ], @@ -977,18 +941,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "1fbd726c1f95d258", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "d85a9e98c7023131", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584899951", - "endTimeUnixNano": "1771878186624499951", + "startTimeUnixNano": "1771374155426000000", + "endTimeUnixNano": "1771374155441700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1000,19 +964,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" + "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70322 + "intValue": 41469 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224870 + "intValue": 162152 } }, { @@ -1036,25 +1000,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 70322 + "intValue": 41469 } }, { "key": "http.response.size", "value": { - "intValue": 70622 + "intValue": 41769 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224870 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 162152 } } ], @@ -1063,49 +1021,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584899951", + "timeUnixNano": "1771374155426000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186589199951", + "timeUnixNano": "1771374155430800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186589199951", + "timeUnixNano": "1771374155430800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186589199951", + "timeUnixNano": "1771374155430800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186589499951", + "timeUnixNano": "1771374155430900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186589599951", + "timeUnixNano": "1771374155431000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186599299951", + "timeUnixNano": "1771374155437400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186624499951", + "timeUnixNano": "1771374155441700000", "droppedAttributesCount": 0 } ], @@ -1118,18 +1076,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "7043d35d52139281", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "7552a885f58997cc", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584999951", - "endTimeUnixNano": "1771878186609499951", + "startTimeUnixNano": "1771374155425899902", + "endTimeUnixNano": "1771374155446599902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1141,19 +1099,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 70316 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 224864 } }, { @@ -1177,25 +1135,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 70316 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 70616 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 224864 } } ], @@ -1204,49 +1156,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584999951", + "timeUnixNano": "1771374155425899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186584999951", + "timeUnixNano": "1771374155430399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186584999951", + "timeUnixNano": "1771374155430399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186584999951", + "timeUnixNano": "1771374155430399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186584999951", + "timeUnixNano": "1771374155430499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186594899951", + "timeUnixNano": "1771374155430499902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186602399951", + "timeUnixNano": "1771374155436699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186609499951", + "timeUnixNano": "1771374155446599902", "droppedAttributesCount": 0 } ], @@ -1259,18 +1211,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "91f5f4979288626c", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "f6dbb1bbc4abb147", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584900097", - "endTimeUnixNano": "1771878186614500097", + "startTimeUnixNano": "1771374155425900049", + "endTimeUnixNano": "1771374155436300049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1282,19 +1234,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41491 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162134 + "intValue": 10426 } }, { @@ -1318,25 +1270,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 41491 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 41791 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162134 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10426 } } ], @@ -1345,49 +1291,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186589300098", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186589300098", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186589300098", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186589400097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186589600097", + "timeUnixNano": "1771374155432600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186599100097", + "timeUnixNano": "1771374155435900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186614500097", + "timeUnixNano": "1771374155436300049", "droppedAttributesCount": 0 } ], @@ -1400,18 +1346,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "b99d9bb2efd43533", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "b9651aa277613c36", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584900097", - "endTimeUnixNano": "1771878186622600097", + "startTimeUnixNano": "1771374155425900049", + "endTimeUnixNano": "1771374155437800049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1423,19 +1369,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54690 + "intValue": 7625 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 192543 + "intValue": 31076 } }, { @@ -1459,25 +1405,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54690 + "intValue": 7625 } }, { "key": "http.response.size", "value": { - "intValue": 54990 + "intValue": 7925 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 192543 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 31076 } } ], @@ -1486,49 +1426,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186584900097", + "timeUnixNano": "1771374155425900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186595500097", + "timeUnixNano": "1771374155433600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186610300098", + "timeUnixNano": "1771374155437000049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186622600097", + "timeUnixNano": "1771374155437800049", "droppedAttributesCount": 0 } ], @@ -1541,18 +1481,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "935ce6beeab0c6ba", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "5acc9dfd671d1595", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584900000", - "endTimeUnixNano": "1771878186612600000", + "startTimeUnixNano": "1771374155425799951", + "endTimeUnixNano": "1771374155438199951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1564,19 +1504,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" + "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 807 + "intValue": 810 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1341 + "intValue": 1342 } }, { @@ -1600,25 +1540,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 807 + "intValue": 810 } }, { "key": "http.response.size", "value": { - "intValue": 1107 + "intValue": 1110 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1341 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1342 } } ], @@ -1627,49 +1561,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584900000", + "timeUnixNano": "1771374155425799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186584900000", + "timeUnixNano": "1771374155425799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186584900000", + "timeUnixNano": "1771374155425799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186584900000", + "timeUnixNano": "1771374155425799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186584900000", + "timeUnixNano": "1771374155425799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186596500000", + "timeUnixNano": "1771374155435099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186610600000", + "timeUnixNano": "1771374155437399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186612600000", + "timeUnixNano": "1771374155438199951", "droppedAttributesCount": 0 } ], @@ -1682,18 +1616,18 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "1cc763ee4660982c", - "parentSpanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "1d55cede88f5a10e", + "parentSpanId": "ebbd73f9e6e48596", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186584799902", - "endTimeUnixNano": "1771878186612799902", + "startTimeUnixNano": "1771374155426700097", + "endTimeUnixNano": "1771374155446500097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1705,19 +1639,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49c2078e705461b0.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7636 + "intValue": 54464 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31075 + "intValue": 191607 } }, { @@ -1741,25 +1675,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7636 + "intValue": 54464 } }, { "key": "http.response.size", "value": { - "intValue": 7936 + "intValue": 54764 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31075 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 191607 } } ], @@ -1768,49 +1696,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186584799902", + "timeUnixNano": "1771374155426700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186584799902", + "timeUnixNano": "1771374155426700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186584799902", + "timeUnixNano": "1771374155426700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186584799902", + "timeUnixNano": "1771374155426700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186584799902", + "timeUnixNano": "1771374155426700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186596199902", + "timeUnixNano": "1771374155433700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186610499902", + "timeUnixNano": "1771374155438700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186612799902", + "timeUnixNano": "1771374155446500097", "droppedAttributesCount": 0 } ], @@ -1823,17 +1751,17 @@ "flags": 257 }, { - "traceId": "d4a67b0960305fd70cb08525c021b84a", - "spanId": "1dc3b09b80b0f858", + "traceId": "8d92b90008ffd4ceed721427ba2587f8", + "spanId": "ebbd73f9e6e48596", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878186573300049", - "endTimeUnixNano": "1771878186671100049", + "startTimeUnixNano": "1771374155420700000", + "endTimeUnixNano": "1771374155500100000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -1853,62 +1781,62 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, "events": [ + { + "attributes": [], + "name": "fetchStart", + "timeUnixNano": "1771374155420700000", + "droppedAttributesCount": 0 + }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878186596200049", + "timeUnixNano": "1771374155434600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878186596200049", + "timeUnixNano": "1771374155434600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878186596200049", + "timeUnixNano": "1771374155434600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878186671100049", + "timeUnixNano": "1771374155500100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878186671100049", + "timeUnixNano": "1771374155500100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878186671100049", + "timeUnixNano": "1771374155500100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878186629300049", + "timeUnixNano": "1771374155448500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878186629300049", + "timeUnixNano": "1771374155448500000", "droppedAttributesCount": 0 } ], @@ -1929,12 +1857,12 @@ }, "spans": [ { - "traceId": "83ddeb98682ad80e5f156e21fe56ca82", - "spanId": "ceb6f79f21dd9306", + "traceId": "a5dff68196777736df61be5a84632e09", + "spanId": "beb8247844aa8c80", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878186813000000", - "endTimeUnixNano": "1771878186818000000", + "startTimeUnixNano": "1771374155632000000", + "endTimeUnixNano": "1771374155638000000", "attributes": [ { "key": "component", @@ -1957,7 +1885,7 @@ { "key": "session.id", "value": { - "stringValue": "29396E30D15D4E3241BA2D685484B23F" + "stringValue": "C7788B74A53AFCE4DD2DC62D842A8518" } }, { @@ -2029,12 +1957,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2042,49 +1964,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186814100000", + "timeUnixNano": "1771374155633099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186817400000", + "timeUnixNano": "1771374155637099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186817400000", + "timeUnixNano": "1771374155637099951", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json b/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json index a4bcf18c5..2c90340cd 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "E1E3D36AC196CFD025506F11C6BD6D67" + "stringValue": "5ABB5A1352DA007F72BC26ADD5A89DCA" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878182063199951", - "observedTimeUnixNano": "1771878182063000000", + "timeUnixNano": "1769811577243199951", + "observedTimeUnixNano": "1769811577243000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918)\n at i.message (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942)\n at Proxy. (http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459)\n at a (http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528)\n at sY (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161801)\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822)" + "stringValue": "Error\n at e.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103)\n at n.message (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948)\n at Proxy. (http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465)\n at a (http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529)\n at sY (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161801)\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167689\n at tD (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296)\n at s3 (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163034)\n at fC (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199000)\n at fP (http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n at http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n at http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\":\"15b8645cace346d9e6ceba56f882762f\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\":\"9949ad0f7ff24b0affc3f595090658d9\",\"Error\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n at http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"Error\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n at http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\":\"8965f2228d245fa9a1ea8196a2783196\",\"Error\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n at http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\":\"4fb973c036e18b810ee3da31e51cd097\",\"Error\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n at http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\"}" + "stringValue": "{\"Error\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n at http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"Error\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n at http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\":\"064fbb708a69758b5a0ab80f376cb08a\",\"Error\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n at http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\":\"1d128b39b01355ec232666eb51ed9fdb\",\"Error\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n at http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"Error\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n at http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\":\"5abe9f02e7f14cba35bf7920024817dc\",\"Error\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n at http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"Error\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n at http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "E527703A62195BA99DB29CED4006E5EC" + "stringValue": "E758EC767D7BD7194F362916D9AD8D06" } }, { "key": "session.id", "value": { - "stringValue": "310C46634C58127D3A5328C8BD936589" + "stringValue": "23F8D12033BC5EAD7244341043885A19" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3014/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-next-16-app-session.json b/tests/integration/tests/__golden__/chromium-next-16-app-session.json index 7118f2415..eade9a489 100644 --- a/tests/integration/tests/__golden__/chromium-next-16-app-session.json +++ b/tests/integration/tests/__golden__/chromium-next-16-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "742B09D6DB6AB08DC37034DB435CD02D" + "stringValue": "17A808BC00209C24A3DA3D8F52D8976D" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "5f8e0d9d08f0313a6055c6e3d23e92e3", - "spanId": "40893954a398475e", + "traceId": "e95de3fd0eb65152a1ad6e6adfa6fcc7", + "spanId": "4ab69021a748d5f5", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878181403000000", - "endTimeUnixNano": "1771878181572400000", + "startTimeUnixNano": "1769811576769000000", + "endTimeUnixNano": "1769811576903900000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "04797BFBDBF153E4CD97CF706A51CAF5" + "stringValue": "847E53956A171496DEA2949291B7AD87" } }, { "key": "emb.tab_id", "value": { - "stringValue": "742B09D6DB6AB08DC37034DB435CD02D" + "stringValue": "17A808BC00209C24A3DA3D8F52D8976D" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 6 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 12 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "5386e0fa192c9a3d", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "818756aa061ed098", + "parentSpanId": "2a15f213551368fa", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878181252100000", - "endTimeUnixNano": "1771878181258400000", + "startTimeUnixNano": "1769811576678600000", + "endTimeUnixNano": "1769811576686100000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -207,7 +201,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1963 + "intValue": 1969 } }, { @@ -215,12 +209,6 @@ "value": { "intValue": 6239 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181252100000", + "timeUnixNano": "1769811576678600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181253500000", + "timeUnixNano": "1769811576681100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181253600000", + "timeUnixNano": "1769811576681100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181253600000", + "timeUnixNano": "1769811576681100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878181252000000", + "timeUnixNano": "1769811576678500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181253700000", + "timeUnixNano": "1769811576681300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181253700000", + "timeUnixNano": "1769811576681400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181257900000", + "timeUnixNano": "1769811576685500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181258400000", + "timeUnixNano": "1769811576686100000", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "a79aadbdd51bd3e0", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "345a2db8f666d436", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260300049", - "endTimeUnixNano": "1771878181272400049", + "startTimeUnixNano": "1769811576687299951", + "endTimeUnixNano": "1769811576696299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -356,12 +344,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -369,49 +351,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260300049", + "timeUnixNano": "1769811576687299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260300049", + "timeUnixNano": "1769811576687299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260300049", + "timeUnixNano": "1769811576687299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260300049", + "timeUnixNano": "1769811576687299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260300049", + "timeUnixNano": "1769811576687299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181268300049", + "timeUnixNano": "1769811576691199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181271700049", + "timeUnixNano": "1769811576696099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181272400049", + "timeUnixNano": "1769811576696299951", "droppedAttributesCount": 0 } ], @@ -424,18 +406,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "33500ddd92db672d", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "52cfc759d93ec29c", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260199951", - "endTimeUnixNano": "1771878181280099951", + "startTimeUnixNano": "1769811576688199902", + "endTimeUnixNano": "1769811576698199902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -491,12 +473,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -504,49 +480,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260199951", + "timeUnixNano": "1769811576688199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260199951", + "timeUnixNano": "1769811576691799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260199951", + "timeUnixNano": "1769811576691799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260199951", + "timeUnixNano": "1769811576691799902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260199951", + "timeUnixNano": "1769811576691999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181272699951", + "timeUnixNano": "1769811576692099902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181279499951", + "timeUnixNano": "1769811576697899902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181280099951", + "timeUnixNano": "1769811576698199902", "droppedAttributesCount": 0 } ], @@ -559,18 +535,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "6330dc9a38df88d7", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "fe39e615cb626549", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260200098", - "endTimeUnixNano": "1771878181286000098", + "startTimeUnixNano": "1769811576688100049", + "endTimeUnixNano": "1769811576700100049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -582,7 +558,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" + "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" } }, { @@ -632,12 +608,6 @@ "value": { "intValue": 2961 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -645,49 +615,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260200098", + "timeUnixNano": "1769811576688100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260200098", + "timeUnixNano": "1769811576692200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260200098", + "timeUnixNano": "1769811576692200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260200098", + "timeUnixNano": "1769811576692200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260200098", + "timeUnixNano": "1769811576692400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181281500098", + "timeUnixNano": "1769811576692400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181284900098", + "timeUnixNano": "1769811576698800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181286000098", + "timeUnixNano": "1769811576700100049", "droppedAttributesCount": 0 } ], @@ -700,18 +670,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "a123a7c211846971", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "f37d6a6ce9bd1a8a", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260100000", - "endTimeUnixNano": "1771878181313900000", + "startTimeUnixNano": "1769811576688099951", + "endTimeUnixNano": "1769811576701299951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -723,19 +693,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" + "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13566 + "intValue": 13546 } }, { @@ -759,25 +729,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response.size", "value": { - "intValue": 5348 + "intValue": 5332 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13566 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 13546 } } ], @@ -786,49 +750,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260100000", + "timeUnixNano": "1769811576688099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260100000", + "timeUnixNano": "1769811576692899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260100000", + "timeUnixNano": "1769811576692899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260100000", + "timeUnixNano": "1769811576692899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260100000", + "timeUnixNano": "1769811576693199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181286500000", + "timeUnixNano": "1769811576693299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181293500000", + "timeUnixNano": "1769811576700399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181313900000", + "timeUnixNano": "1769811576701299951", "droppedAttributesCount": 0 } ], @@ -841,18 +805,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "5f688cb6bf2e9e79", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "3b9eec2891f8aa23", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260300000", - "endTimeUnixNano": "1771878181361800000", + "startTimeUnixNano": "1769811576688000097", + "endTimeUnixNano": "1769811576715100097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -864,19 +828,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" + "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41491 + "intValue": 70316 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162134 + "intValue": 224864 } }, { @@ -900,25 +864,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 41491 + "intValue": 70316 } }, { "key": "http.response.size", "value": { - "intValue": 41791 + "intValue": 70616 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162134 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 224864 } } ], @@ -927,49 +885,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576688000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181287500000", + "timeUnixNano": "1769811576693000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181287500000", + "timeUnixNano": "1769811576693000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181287500000", + "timeUnixNano": "1769811576693000097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181287700000", + "timeUnixNano": "1769811576693100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181287800000", + "timeUnixNano": "1769811576693200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181342500000", + "timeUnixNano": "1769811576703300097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181361800000", + "timeUnixNano": "1769811576715100097", "droppedAttributesCount": 0 } ], @@ -982,18 +940,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "7418137d815982a1", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "0005264a1e0e1255", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260300000", - "endTimeUnixNano": "1771878181363300000", + "startTimeUnixNano": "1769811576688000000", + "endTimeUnixNano": "1769811576713700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1005,19 +963,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" + "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70322 + "intValue": 41469 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224870 + "intValue": 162152 } }, { @@ -1041,25 +999,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 70322 + "intValue": 41469 } }, { "key": "http.response.size", "value": { - "intValue": 70622 + "intValue": 41769 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224870 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 162152 } } ], @@ -1068,49 +1020,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576688000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576693900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576693900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576693900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260300000", + "timeUnixNano": "1769811576694100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181286800000", + "timeUnixNano": "1769811576694200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181315900000", + "timeUnixNano": "1769811576703500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181363300000", + "timeUnixNano": "1769811576713700000", "droppedAttributesCount": 0 } ], @@ -1123,18 +1075,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "7f5789e0ea459c68", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "f5f367c0bcaf8c27", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260299902", - "endTimeUnixNano": "1771878181346399902", + "startTimeUnixNano": "1769811576688100000", + "endTimeUnixNano": "1769811576702700000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1146,7 +1098,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" } }, { @@ -1196,12 +1148,6 @@ "value": { "intValue": 10426 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1209,49 +1155,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576688100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181288499902", + "timeUnixNano": "1769811576688100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181288499902", + "timeUnixNano": "1769811576688100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181288499902", + "timeUnixNano": "1769811576688100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181288799902", + "timeUnixNano": "1769811576688100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181288899902", + "timeUnixNano": "1769811576696900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181341799902", + "timeUnixNano": "1769811576701900000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181346399902", + "timeUnixNano": "1769811576702700000", "droppedAttributesCount": 0 } ], @@ -1264,18 +1210,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "f4f1deaae23f20d9", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "2c827692520cf973", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260299902", - "endTimeUnixNano": "1771878181349399902", + "startTimeUnixNano": "1769811576687999902", + "endTimeUnixNano": "1769811576706699902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1287,19 +1233,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" + "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 807 + "intValue": 810 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1341 + "intValue": 1342 } }, { @@ -1323,25 +1269,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 807 + "intValue": 810 } }, { "key": "http.response.size", "value": { - "intValue": 1107 + "intValue": 1110 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1341 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1342 } } ], @@ -1350,49 +1290,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687999902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181318199902", + "timeUnixNano": "1769811576701199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181346399902", + "timeUnixNano": "1769811576705599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181349399902", + "timeUnixNano": "1769811576706699902", "droppedAttributesCount": 0 } ], @@ -1405,18 +1345,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "f6591825504111a6", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "587725b082eff821", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260299902", - "endTimeUnixNano": "1771878181358099902", + "startTimeUnixNano": "1769811576687900049", + "endTimeUnixNano": "1769811576706500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1428,19 +1368,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" + "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7636 + "intValue": 7625 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31075 + "intValue": 31076 } }, { @@ -1464,25 +1404,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7636 + "intValue": 7625 } }, { "key": "http.response.size", "value": { - "intValue": 7936 + "intValue": 7925 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31075 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 31076 } } ], @@ -1491,49 +1425,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260299902", + "timeUnixNano": "1769811576687900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181290399902", + "timeUnixNano": "1769811576687900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181290399902", + "timeUnixNano": "1769811576687900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181290399902", + "timeUnixNano": "1769811576687900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181290599902", + "timeUnixNano": "1769811576687900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181290599902", + "timeUnixNano": "1769811576699900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181352399902", + "timeUnixNano": "1769811576705200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181358099902", + "timeUnixNano": "1769811576706500049", "droppedAttributesCount": 0 } ], @@ -1546,18 +1480,18 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "a19865ac54780d08", - "parentSpanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "834881c1607ec18f", + "parentSpanId": "2a15f213551368fa", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878181260099951", - "endTimeUnixNano": "1771878181367799951", + "startTimeUnixNano": "1769811576688799951", + "endTimeUnixNano": "1769811576714599951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1569,19 +1503,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54690 + "intValue": 47298 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 192543 + "intValue": 169109 } }, { @@ -1605,25 +1539,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54690 + "intValue": 47298 } }, { "key": "http.response.size", "value": { - "intValue": 54990 + "intValue": 47598 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 192543 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 169109 } } ], @@ -1632,49 +1560,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181260099951", + "timeUnixNano": "1769811576688799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878181288699951", + "timeUnixNano": "1769811576688799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878181288699951", + "timeUnixNano": "1769811576688799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878181288699951", + "timeUnixNano": "1769811576688799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878181288799951", + "timeUnixNano": "1769811576688799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878181288899951", + "timeUnixNano": "1769811576698699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878181349899951", + "timeUnixNano": "1769811576706299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878181367799951", + "timeUnixNano": "1769811576714599951", "droppedAttributesCount": 0 } ], @@ -1687,17 +1615,17 @@ "flags": 257 }, { - "traceId": "6e64887afe71709a682a14a2646928ef", - "spanId": "179e6180d773bd48", + "traceId": "4186f69a32422b897f2839ff9f4ea07f", + "spanId": "2a15f213551368fa", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878181252299951", - "endTimeUnixNano": "1771878181404599951", + "startTimeUnixNano": "1769811576677900049", + "endTimeUnixNano": "1769811576771100049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "52328A31E20819E3F058C37D28C3C397" + "stringValue": "E169A09A019B2DCBA1D18418D22717E1" } }, { @@ -1715,13 +1643,7 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], @@ -1730,55 +1652,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878181252299951", + "timeUnixNano": "1769811576677900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878181287099951", + "timeUnixNano": "1769811576704700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878181287199951", + "timeUnixNano": "1769811576704700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878181287199951", + "timeUnixNano": "1769811576704700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878181404599951", + "timeUnixNano": "1769811576771100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878181404599951", + "timeUnixNano": "1769811576771100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878181404599951", + "timeUnixNano": "1769811576771100049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstPaint", - "timeUnixNano": "1771878181304199951", + "timeUnixNano": "1769811576709800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878181304199951", + "timeUnixNano": "1769811576709800049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json index 0e6ffc601..6cb2775e2 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" + "stringValue": "557C9606D1698516720196C670503578" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878187389000000", - "observedTimeUnixNano": "1771878187389000000", + "timeUnixNano": "1769811585168300049", + "observedTimeUnixNano": "1769811585168000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:85335)\n at nE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:38095)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:37636)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215490\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215462)\n at Ig (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:48:127548)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:85134)\n at iE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:38096)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:37637)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214339\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214311)\n at Xg (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:48:127557)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:126\":\"7dfbc7c019f4eb0ae853207d8f9abb0d\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:126\":\"0ce073a27cc6852c16c9ed475cf8153b\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "0E1E24E2EC7845F3B7254F66F5C92114" + "stringValue": "5BA724380BB1F74187A980AD53767B63" } }, { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "37547851A57F04E03D622AB9DA780A40" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-6/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json index 4c28d959e..20829ba2b 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" + "stringValue": "5A687F035A7FA055A64277AFFCD3BA73" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "5b7f1e2a190f6e14ff1a80f54ccf6f04", - "spanId": "6f0aa06cdb02bb63", + "traceId": "be864707ea69c0ca0cb2387d2ed11389", + "spanId": "b2f5989790ad2b33", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878186816000000", - "endTimeUnixNano": "1771878187461300000", + "startTimeUnixNano": "1771374159535000000", + "endTimeUnixNano": "1771374160119400000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "7DB0E17B477BD685D580C56849A4A301" + "stringValue": "980640B78B3E42AE60E5A7E15F882278" } }, { "key": "emb.tab_id", "value": { - "stringValue": "BB6E49D542E9AB671994C80CBCAFE7D4" + "stringValue": "5A687F035A7FA055A64277AFFCD3BA73" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 5 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 8 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878186961000000", + "timeUnixNano": "1771374159672399902", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878186817-5044874936733" + "stringValue": "v5-1771374159537-4288970405552" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 60 + "intValue": 76 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 60 + "intValue": 76 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 3.100000023841858 + "doubleValue": 1.7999999970197678 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 56.89999997615814 + "doubleValue": 74.20000000298023 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878186966099854", + "timeUnixNano": "1771374159678799805", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878187387899902", + "timeUnixNano": "1771374160095599854", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", - "spanId": "b85d81df39879fa6", - "parentSpanId": "aae9305eaf7dbd82", + "traceId": "67f413a6b1bcc0614c7e693f249669c3", + "spanId": "fa8c06b16f50e441", + "parentSpanId": "58614c58b643dc94", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878186771999902", - "endTimeUnixNano": "1771878186775199902", + "startTimeUnixNano": "1771374159478699951", + "endTimeUnixNano": "1771374159480699951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" } }, { @@ -345,12 +339,6 @@ "value": { "intValue": 252 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -358,55 +346,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186771999902", + "timeUnixNano": "1771374159478699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186773899902", + "timeUnixNano": "1771374159479799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186773899902", + "timeUnixNano": "1771374159479799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186773899902", + "timeUnixNano": "1771374159479799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878186771899902", + "timeUnixNano": "1771374159478699951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186774199902", + "timeUnixNano": "1771374159479899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186774299902", + "timeUnixNano": "1771374159479999951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186774999902", + "timeUnixNano": "1771374159480499951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186775199902", + "timeUnixNano": "1771374159480699951", "droppedAttributesCount": 0 } ], @@ -419,18 +407,18 @@ "flags": 257 }, { - "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", - "spanId": "d601ce333ded8057", - "parentSpanId": "aae9305eaf7dbd82", + "traceId": "67f413a6b1bcc0614c7e693f249669c3", + "spanId": "bdf3e75c7569a823", + "parentSpanId": "58614c58b643dc94", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878186776700098", - "endTimeUnixNano": "1771878186781400097", + "startTimeUnixNano": "1771374159482600097", + "endTimeUnixNano": "1771374159486800097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" } }, { @@ -442,13 +430,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js" + "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-BkKiFNIv.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 374863 + "intValue": 373886 } }, { @@ -472,25 +460,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 374863 + "intValue": 373886 } }, { "key": "http.response.size", "value": { - "intValue": 375163 + "intValue": 374186 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 374863 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 373886 } } ], @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186776700098", + "timeUnixNano": "1771374159482600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186776700098", + "timeUnixNano": "1771374159482600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186776700098", + "timeUnixNano": "1771374159482600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186776700098", + "timeUnixNano": "1771374159482600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186776700098", + "timeUnixNano": "1771374159482600097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186779200098", + "timeUnixNano": "1771374159484700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186780100097", + "timeUnixNano": "1771374159485500097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186781400097", + "timeUnixNano": "1771374159486800097", "droppedAttributesCount": 0 } ], @@ -554,17 +536,17 @@ "flags": 257 }, { - "traceId": "fcce11bdf2060cdaa0f13c8e1d6c16ab", - "spanId": "aae9305eaf7dbd82", + "traceId": "67f413a6b1bcc0614c7e693f249669c3", + "spanId": "58614c58b643dc94", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878186772200098", - "endTimeUnixNano": "1771878186819000097", + "startTimeUnixNano": "1771374159479000000", + "endTimeUnixNano": "1771374159539400000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" } }, { @@ -584,56 +566,44 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878186772200098", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878186778100097", + "timeUnixNano": "1771374159485100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878186818900097", + "timeUnixNano": "1771374159539400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878186818900097", + "timeUnixNano": "1771374159539400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878186818900097", + "timeUnixNano": "1771374159539400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878186818900097", + "timeUnixNano": "1771374159539400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878186819000097", + "timeUnixNano": "1771374159539400000", "droppedAttributesCount": 0 } ], @@ -654,12 +624,12 @@ }, "spans": [ { - "traceId": "2b124e582b430a2d91a0622b7f4f4ecd", - "spanId": "83bf77cfb2586570", + "traceId": "cccd3cf037d2826a1769d1c49c96ecef", + "spanId": "92c0990f2f9b2329", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878186962000000", - "endTimeUnixNano": "1771878186968000000", + "startTimeUnixNano": "1771374159674000000", + "endTimeUnixNano": "1771374159680000000", "attributes": [ { "key": "component", @@ -682,7 +652,7 @@ { "key": "session.id", "value": { - "stringValue": "BDEC0CFE1C8DD08092AD0D71C21B75A9" + "stringValue": "6E340C1D71E8C64A23356EEDE7A4D86F" } }, { @@ -754,12 +724,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -767,49 +731,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878186962500097", + "timeUnixNano": "1771374159674900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878186967200098", + "timeUnixNano": "1771374159678900097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878186967200098", + "timeUnixNano": "1771374159678900097", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json index 6afa45dbf..1480e84b0 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "1BE21E2B35E954B22AD661537CE3C891" + "stringValue": "39395A9EB4C4C812F0638B41E437952B" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878183222899902", - "observedTimeUnixNano": "1771878183223000000", + "timeUnixNano": "1769811581735300049", + "observedTimeUnixNano": "1769811581735000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:85335)\n at nE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:38095)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:37636)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215490\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:215462)\n at Ig (http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:48:127548)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:85134)\n at iE.message (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:38096)\n at Proxy. (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:37637)\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214339\n at Generator.next ()\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:1:787)\n at i (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:49:214311)\n at Xg (http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:48:127557)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:51:126\":\"7dfbc7c019f4eb0ae853207d8f9abb0d\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:33\\n at http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js:51:126\":\"0ce073a27cc6852c16c9ed475cf8153b\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "ACF264F9BF78517CA702A62F9264E528" + "stringValue": "AFC661D77585C48FC76881303E647599" } }, { "key": "session.id", "value": { - "stringValue": "71ACF814403359A54B5F905981EACD5F" + "stringValue": "F21AD7A8493995C21951D428F86E0469" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-6/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json b/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json index 2667bb056..9b8b18a14 100644 --- a/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-6-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "EF72E7B893A2D3CC508F37015F2388A3" + "stringValue": "F6CF63A81B482FD4E94697375D575051" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "6bcd43a9185b57ae628f4b3e57cf3a40", - "spanId": "b5b87cfb6ff2c4c2", + "traceId": "680c331e2a2cf8a88efd15ee0522346b", + "spanId": "9cd6dfb29cee7f71", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878182519000000", - "endTimeUnixNano": "1771878182685100000", + "startTimeUnixNano": "1769811581314000000", + "endTimeUnixNano": "1769811581450600000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" + "stringValue": "A8139845E0E188E0401753527A4966F5" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "434B2B24CFAD0BBDFB3996CF5A00EDC4" + "stringValue": "56A0EC4E2208CB9ECE11F1C866DCF521" } }, { "key": "emb.tab_id", "value": { - "stringValue": "EF72E7B893A2D3CC508F37015F2388A3" + "stringValue": "F6CF63A81B482FD4E94697375D575051" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 11 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 9 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", - "spanId": "32d64d34df613b60", - "parentSpanId": "6abb1be2771da158", + "traceId": "7d48cd35d334225c2cbd9d386d0cf954", + "spanId": "bf875f866f398dea", + "parentSpanId": "c4534363c2f1a860", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878182444400049", - "endTimeUnixNano": "1771878182463500049", + "startTimeUnixNano": "1769811581257399902", + "endTimeUnixNano": "1769811581259599902", "attributes": [ { "key": "session.id", "value": { - "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" + "stringValue": "A8139845E0E188E0401753527A4966F5" } }, { @@ -209,12 +203,6 @@ "value": { "intValue": 252 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -222,55 +210,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878182444400049", + "timeUnixNano": "1769811581257399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878182445900049", + "timeUnixNano": "1769811581258399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878182445900049", + "timeUnixNano": "1769811581258399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878182445900049", + "timeUnixNano": "1769811581258399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878182444300049", + "timeUnixNano": "1769811581257399902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878182446000049", + "timeUnixNano": "1769811581258599902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878182446100049", + "timeUnixNano": "1769811581258699902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878182463100049", + "timeUnixNano": "1769811581259199902", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878182463500049", + "timeUnixNano": "1769811581259599902", "droppedAttributesCount": 0 } ], @@ -283,18 +271,18 @@ "flags": 257 }, { - "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", - "spanId": "b40cc07281cf2e83", - "parentSpanId": "6abb1be2771da158", + "traceId": "7d48cd35d334225c2cbd9d386d0cf954", + "spanId": "bf438db90374b4d0", + "parentSpanId": "c4534363c2f1a860", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878182465899951", - "endTimeUnixNano": "1771878182470999951", + "startTimeUnixNano": "1769811581261500000", + "endTimeUnixNano": "1769811581265300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" + "stringValue": "A8139845E0E188E0401753527A4966F5" } }, { @@ -306,13 +294,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js" + "stringValue": "http://localhost:3001/platforms/vite-6/es2015/assets/index-riCWGFnL.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 374863 + "intValue": 373696 } }, { @@ -336,25 +324,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 374863 + "intValue": 373696 } }, { "key": "http.response.size", "value": { - "intValue": 375163 + "intValue": 373996 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 374863 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 373696 } } ], @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878182465899951", + "timeUnixNano": "1769811581261500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878182465899951", + "timeUnixNano": "1769811581261500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878182465899951", + "timeUnixNano": "1769811581261500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878182465899951", + "timeUnixNano": "1769811581261500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878182465899951", + "timeUnixNano": "1769811581261500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878182468599951", + "timeUnixNano": "1769811581263500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878182469899951", + "timeUnixNano": "1769811581264300000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878182470999951", + "timeUnixNano": "1769811581265300000", "droppedAttributesCount": 0 } ], @@ -418,17 +400,17 @@ "flags": 257 }, { - "traceId": "b157f30ee7bf7e9fb6aab8bf25c114b4", - "spanId": "6abb1be2771da158", + "traceId": "7d48cd35d334225c2cbd9d386d0cf954", + "spanId": "c4534363c2f1a860", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878182444499903", - "endTimeUnixNano": "1771878182523899903", + "startTimeUnixNano": "1769811581257600097", + "endTimeUnixNano": "1769811581317500097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "592B6BFCDC461264631A0A98CD8F2EC9" + "stringValue": "A8139845E0E188E0401753527A4966F5" } }, { @@ -446,58 +428,46 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878182444499903", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878182467999903", + "timeUnixNano": "1769811581263700097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878182523899903", + "timeUnixNano": "1769811581317400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878182523899903", + "timeUnixNano": "1769811581317400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878182523899903", + "timeUnixNano": "1769811581317400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878182523899903", + "timeUnixNano": "1769811581317400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878182523899903", + "timeUnixNano": "1769811581317500097", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json index 9bee34378..f7a79cd3e 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "DE7447A93AB780319F300E440E8D7FEA" + "stringValue": "7FEDC5359673D8AFF418E681B9E76857" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771876481495199951", - "observedTimeUnixNano": "1771876481495000000", + "timeUnixNano": "1769811585350800049", + "observedTimeUnixNano": "1769811585351000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:85241)\n at nE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:38001)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:37542)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215396\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215368)\n at Ig (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:8:127505)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:85040)\n at iE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:38002)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:37543)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214245\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214217)\n at Xg (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:8:127514)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:126\":\"54cb7b0b364d8407750b38e27517d2ac\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:126\":\"52370fadc5cafd29622631a1b3f2d29b\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "6ABB6D000F04300A7ECAE4756E2867AF" + "stringValue": "6F016BD944E9732260793D420ADBF875" } }, { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "0903E4B321653D36CF30A397585A3C54" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-7/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json index 473fded3f..4d6fe0672 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "DE7447A93AB780319F300E440E8D7FEA" + "stringValue": "55738CE5C30EFDE41B663D5E201499C3" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "2f47dd22513d1f53972200915e631afa", - "spanId": "d8ee9b3c2e2c304a", + "traceId": "8a9c5625f52969b689a0a2a5833fb6a6", + "spanId": "f9bd598ed877f2ee", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771876480479000000", - "endTimeUnixNano": "1771876482262700000", + "startTimeUnixNano": "1771374159731000000", + "endTimeUnixNano": "1771374160313500000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "8B8178E1C91A7A98F716EE98D6412755" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "074431E3C9A870DF4A6CAF47709311D0" + "stringValue": "F435264318471D4E5C14C2929873C747" } }, { "key": "emb.tab_id", "value": { - "stringValue": "DE7447A93AB780319F300E440E8D7FEA" + "stringValue": "55738CE5C30EFDE41B663D5E201499C3" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 11 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 8 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771876480925300049", + "timeUnixNano": "1771374159863899902", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771876480482-7219904515152" + "stringValue": "v5-1771374159732-5166951363007" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 212 + "intValue": 76 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 212 + "intValue": 76 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 13.200000047683716 + "intValue": 2 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 198.79999995231628 + "intValue": 74 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771876480931600098", + "timeUnixNano": "1771374159869800049", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771876481493000000", + "timeUnixNano": "1771374160288000000", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "8a43fe123851633b0273786ba11165d3", - "spanId": "1d0b4f1a5ff2e830", - "parentSpanId": "ac9384f219d12e56", + "traceId": "f5c1cba3763ce3d60790e6b630629d10", + "spanId": "6f01346ac0f29cfe", + "parentSpanId": "4aa124b328d683e8", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771876480323900049", - "endTimeUnixNano": "1771876480337500049", + "startTimeUnixNano": "1771374159674200098", + "endTimeUnixNano": "1771374159676500098", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "8B8178E1C91A7A98F716EE98D6412755" } }, { @@ -345,12 +339,6 @@ "value": { "intValue": 252 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -358,55 +346,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876480323900049", + "timeUnixNano": "1771374159674200098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771876480329200049", + "timeUnixNano": "1771374159675300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771876480329200049", + "timeUnixNano": "1771374159675300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771876480329200049", + "timeUnixNano": "1771374159675300098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771876480323800049", + "timeUnixNano": "1771374159674100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771876480329400049", + "timeUnixNano": "1771374159675500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771876480329500049", + "timeUnixNano": "1771374159675500098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771876480337000049", + "timeUnixNano": "1771374159676100098", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771876480337500049", + "timeUnixNano": "1771374159676500098", "droppedAttributesCount": 0 } ], @@ -419,18 +407,18 @@ "flags": 257 }, { - "traceId": "8a43fe123851633b0273786ba11165d3", - "spanId": "2f81b04dfa983740", - "parentSpanId": "ac9384f219d12e56", + "traceId": "f5c1cba3763ce3d60790e6b630629d10", + "spanId": "5b48edb9fc545e12", + "parentSpanId": "4aa124b328d683e8", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771876480340000049", - "endTimeUnixNano": "1771876480422600049", + "startTimeUnixNano": "1771374159678700049", + "endTimeUnixNano": "1771374159682400049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "8B8178E1C91A7A98F716EE98D6412755" } }, { @@ -442,13 +430,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js" + "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-W5XqIEkN.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 373525 + "intValue": 372548 } }, { @@ -472,25 +460,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 373525 + "intValue": 372548 } }, { "key": "http.response.size", "value": { - "intValue": 373825 + "intValue": 372848 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 373525 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 372548 } } ], @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876480340000049", + "timeUnixNano": "1771374159678700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771876480340000049", + "timeUnixNano": "1771374159678700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771876480340000049", + "timeUnixNano": "1771374159678700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771876480340000049", + "timeUnixNano": "1771374159678700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771876480340000049", + "timeUnixNano": "1771374159678700049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771876480400100049", + "timeUnixNano": "1771374159680900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771876480421500049", + "timeUnixNano": "1771374159681500049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771876480422600049", + "timeUnixNano": "1771374159682400049", "droppedAttributesCount": 0 } ], @@ -554,17 +536,17 @@ "flags": 257 }, { - "traceId": "8a43fe123851633b0273786ba11165d3", - "spanId": "ac9384f219d12e56", + "traceId": "f5c1cba3763ce3d60790e6b630629d10", + "spanId": "4aa124b328d683e8", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771876480323100000", - "endTimeUnixNano": "1771876480485200000", + "startTimeUnixNano": "1771374159674400049", + "endTimeUnixNano": "1771374159734400049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "8B8178E1C91A7A98F716EE98D6412755" } }, { @@ -584,12 +566,6 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -597,43 +573,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876480323100000", + "timeUnixNano": "1771374159674400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771876480342100000", + "timeUnixNano": "1771374159680900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771876480485000000", + "timeUnixNano": "1771374159734400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771876480485000000", + "timeUnixNano": "1771374159734400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771876480485000000", + "timeUnixNano": "1771374159734400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771876480485000000", + "timeUnixNano": "1771374159734400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771876480485200000", + "timeUnixNano": "1771374159734400049", "droppedAttributesCount": 0 } ], @@ -654,12 +630,12 @@ }, "spans": [ { - "traceId": "9eedcbf692c028f11a555fd2ba5a2d0a", - "spanId": "463a88c392691e87", + "traceId": "f452a154c66e5630c6803a033077abea", + "spanId": "178df3af091558ac", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771876480928000000", - "endTimeUnixNano": "1771876480949000000", + "startTimeUnixNano": "1771374159866000000", + "endTimeUnixNano": "1771374159871000000", "attributes": [ { "key": "component", @@ -682,7 +658,7 @@ { "key": "session.id", "value": { - "stringValue": "5DC8651A427964A27F4A79D53CCDCC62" + "stringValue": "8B8178E1C91A7A98F716EE98D6412755" } }, { @@ -754,12 +730,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -767,49 +737,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771876480929000049", + "timeUnixNano": "1771374159866900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771876480948300049", + "timeUnixNano": "1771374159870600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771876480948300049", + "timeUnixNano": "1771374159870600049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json index 4cb3a7146..4834648db 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "BF2B0BB73BD86D5A3F118B169493A555" + "stringValue": "B8FE4A3DF58B1B7D520775B76A2BFE6A" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771876476344800049", - "observedTimeUnixNano": "1771876476345000000", + "timeUnixNano": "1769811581837000000", + "observedTimeUnixNano": "1769811581837000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:85241)\n at nE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:38001)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:37542)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215396\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:967\n at new Promise ()\n at kt (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:9:215368)\n at Ig (http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:8:127505)" + "stringValue": "Error\n at kc.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:85040)\n at iE.message (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:38002)\n at Proxy. (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:37543)\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214245\n at Generator.next ()\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:967\n at new Promise ()\n at Qt (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:1:787)\n at i (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:9:214217)\n at Xg (http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:8:127514)" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js:11:126\":\"54cb7b0b364d8407750b38e27517d2ac\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:33\\n at http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js:11:126\":\"52370fadc5cafd29622631a1b3f2d29b\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "1ED37B4491B5EAF33DFD66396DC7CD77" + "stringValue": "E04B9D76C48D2AE90D40F13C7138B028" } }, { "key": "session.id", "value": { - "stringValue": "F28DA394BD162363F7D8DF604B910406" + "stringValue": "AE136A1CF2B6B8E522D5700F8FC1B7BB" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/vite-7/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json b/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json index 59107babc..926249896 100644 --- a/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-vite-7-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "58C7C180D36815E5DC47D126B5FEA312" + "stringValue": "F4BDBE9412736241B6BC54DDE9318C2D" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "24d6df1f1e8b824a4348d8455d9d99ac", - "spanId": "c3f0333c1e4b5de1", + "traceId": "80df9df52a950acfc0b5612090c7c978", + "spanId": "b8f04906af42c7bf", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771876475875000000", - "endTimeUnixNano": "1771876476025700000", + "startTimeUnixNano": "1769811581399000000", + "endTimeUnixNano": "1769811581536900000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "AE33519E1D9402E06B6CEC403C57F930" + "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "F8D7EC249E96885084F9FD38FFF898C3" + "stringValue": "DFA33C4F2E7CBD158EB866377F24A680" } }, { "key": "emb.tab_id", "value": { - "stringValue": "58C7C180D36815E5DC47D126B5FEA312" + "stringValue": "F4BDBE9412736241B6BC54DDE9318C2D" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 5 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 9 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "6cfa9c11ce204b111623695c5edf31f2", - "spanId": "674f493b43c5375a", - "parentSpanId": "48b85bef67c59060", + "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", + "spanId": "6f2758f4a97fcdc8", + "parentSpanId": "9e148889a5e8b9cf", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771876475822299951", - "endTimeUnixNano": "1771876475830099951", + "startTimeUnixNano": "1769811581346199951", + "endTimeUnixNano": "1769811581347999951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AE33519E1D9402E06B6CEC403C57F930" + "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" } }, { @@ -209,12 +203,6 @@ "value": { "intValue": 252 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" - } } ], "droppedAttributesCount": 0, @@ -222,55 +210,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876475822299951", + "timeUnixNano": "1769811581346199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771876475825999951", + "timeUnixNano": "1769811581347099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771876475825999951", + "timeUnixNano": "1769811581347099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771876475825999951", + "timeUnixNano": "1769811581347099951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771876475822199951", + "timeUnixNano": "1769811581346199951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771876475826199951", + "timeUnixNano": "1769811581347299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771876475826199951", + "timeUnixNano": "1769811581347399951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771876475828399951", + "timeUnixNano": "1769811581347899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771876475830099951", + "timeUnixNano": "1769811581347999951", "droppedAttributesCount": 0 } ], @@ -283,18 +271,18 @@ "flags": 257 }, { - "traceId": "6cfa9c11ce204b111623695c5edf31f2", - "spanId": "36a15bdc39975a29", - "parentSpanId": "48b85bef67c59060", + "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", + "spanId": "522423b054a63301", + "parentSpanId": "9e148889a5e8b9cf", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771876475832000097", - "endTimeUnixNano": "1771876475839600097", + "startTimeUnixNano": "1769811581348800049", + "endTimeUnixNano": "1769811581351500049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AE33519E1D9402E06B6CEC403C57F930" + "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" } }, { @@ -306,13 +294,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-otsxWQLz.js" + "stringValue": "http://localhost:3001/platforms/vite-7/es2015/assets/index-3Xnq0fdr.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 373525 + "intValue": 372358 } }, { @@ -336,25 +324,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 373525 + "intValue": 372358 } }, { "key": "http.response.size", "value": { - "intValue": 373825 + "intValue": 372658 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 373525 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "intValue": 372358 } } ], @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771876475832000097", + "timeUnixNano": "1769811581348800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771876475832000097", + "timeUnixNano": "1769811581348800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771876475832000097", + "timeUnixNano": "1769811581348800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771876475832000097", + "timeUnixNano": "1769811581348800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771876475832000097", + "timeUnixNano": "1769811581348800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771876475835200097", + "timeUnixNano": "1769811581350400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771876475837200097", + "timeUnixNano": "1769811581350900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771876475839600097", + "timeUnixNano": "1769811581351500049", "droppedAttributesCount": 0 } ], @@ -418,17 +400,17 @@ "flags": 257 }, { - "traceId": "6cfa9c11ce204b111623695c5edf31f2", - "spanId": "48b85bef67c59060", + "traceId": "c8ec9954232dc3a9ed7f520ebc4b8ea5", + "spanId": "9e148889a5e8b9cf", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771876475821499902", - "endTimeUnixNano": "1771876475876799902", + "startTimeUnixNano": "1769811581345399903", + "endTimeUnixNano": "1769811581402499903", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AE33519E1D9402E06B6CEC403C57F930" + "stringValue": "0D0CC3445D6C7C4A5624BAAAA5D7BF39" } }, { @@ -446,58 +428,46 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Vite" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771876475821499902", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771876475834399902", + "timeUnixNano": "1769811581350799903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771876475876799902", + "timeUnixNano": "1769811581402399903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771876475876799902", + "timeUnixNano": "1769811581402499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771876475876799902", + "timeUnixNano": "1769811581402499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771876475876799902", + "timeUnixNano": "1769811581402499903", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771876475876799902", + "timeUnixNano": "1769811581402499903", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json index ad274fbfa..66ccdea90 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "A08130D513E338EF9BF50489E6569B14" + "stringValue": "E98B1B648EF9E8D13FEC1A6025258B59" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878189418000000", - "observedTimeUnixNano": "1771878189418000000", + "timeUnixNano": "1769811586075599854", + "observedTimeUnixNano": "1769811586075000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243516)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:485288\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483625)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484468)\n at Jp (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484650)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484853)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484914\n at new Promise ()" + "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243210)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483819\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482156)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482999)\n at th (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483181)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483384)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483445\n at new Promise ()" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"8ef6dd7312afb8e65ddb16e5124b12f5\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"ee12e68962c1a54c83901757855f436c\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "92101A18C3928CC85E59E783147234C1" + "stringValue": "51F1C2442881F4F8B7C3208637C1820F" } }, { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "8F98D2D65B3A494973985871BE47BD0A" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/webpack-5/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json index 2a26c8f13..39b3262fc 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "A08130D513E338EF9BF50489E6569B14" + "stringValue": "6E560F2DA3A0F26198228B367051E015" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "bd2f499f4b9762176bf5581274ca23b4", - "spanId": "210821f4895e5217", + "traceId": "42c7ad29e5bed3cb02e445342b83a48e", + "spanId": "1c9a5b28f2f843fc", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878188861000000", - "endTimeUnixNano": "1771878189460700000", + "startTimeUnixNano": "1771374160315000000", + "endTimeUnixNano": "1771374160895700000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "1BB60BFB4938F510E560F31A92752B65" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "B57210708866C80C4B9F706825A00ED2" + "stringValue": "BF58E3032FEB286659D0EA6364AAAFDE" } }, { "key": "emb.tab_id", "value": { - "stringValue": "A08130D513E338EF9BF50489E6569B14" + "stringValue": "6E560F2DA3A0F26198228B367051E015" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 7 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" + "intValue": 10 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878188992000000", + "timeUnixNano": "1771374160446100098", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878188863-9808358504476" + "stringValue": "v5-1771374160317-2569286207587" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 72 + "intValue": 80 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 72 + "intValue": 80 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "doubleValue": 3.8000000715255737 + "intValue": 3 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "doubleValue": 68.19999992847443 + "intValue": 77 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878188999699951", + "timeUnixNano": "1771374160454199951", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878189417199951", + "timeUnixNano": "1771374160870300049", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", - "spanId": "53f3786800d09e5f", - "parentSpanId": "3f67a11469742c57", + "traceId": "68c0434d70dd7cc5de14c8c041c94e31", + "spanId": "f89677b556cbf59f", + "parentSpanId": "9ee9aded38ecab1c", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878188808100000", - "endTimeUnixNano": "1771878188812100000", + "startTimeUnixNano": "1771374160257900049", + "endTimeUnixNano": "1771374160261100049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "1BB60BFB4938F510E560F31A92752B65" } }, { @@ -345,12 +339,6 @@ "value": { "intValue": 199 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 0, @@ -358,55 +346,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878188808100000", + "timeUnixNano": "1771374160257900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878188809300000", + "timeUnixNano": "1771374160259400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878188809300000", + "timeUnixNano": "1771374160259400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878188809300000", + "timeUnixNano": "1771374160259400049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878188808000000", + "timeUnixNano": "1771374160257800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878188809400000", + "timeUnixNano": "1771374160259600049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878188809500000", + "timeUnixNano": "1771374160259800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878188811800000", + "timeUnixNano": "1771374160260800049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878188812100000", + "timeUnixNano": "1771374160261100049", "droppedAttributesCount": 0 } ], @@ -419,18 +407,18 @@ "flags": 257 }, { - "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", - "spanId": "cb6d57fe46ffeadc", - "parentSpanId": "3f67a11469742c57", + "traceId": "68c0434d70dd7cc5de14c8c041c94e31", + "spanId": "78963fe94cfb9be6", + "parentSpanId": "9ee9aded38ecab1c", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878188813699902", - "endTimeUnixNano": "1771878188822899902", + "startTimeUnixNano": "1771374160263299951", + "endTimeUnixNano": "1771374160269099951", "attributes": [ { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "1BB60BFB4938F510E560F31A92752B65" } }, { @@ -448,7 +436,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 486366 + "intValue": 485180 } }, { @@ -472,25 +460,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 486366 + "intValue": 485180 } }, { "key": "http.response.size", "value": { - "intValue": 486666 + "intValue": 485480 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 486366 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" + "intValue": 485180 } } ], @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878188813699902", + "timeUnixNano": "1771374160263299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878188813699902", + "timeUnixNano": "1771374160263299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878188813699902", + "timeUnixNano": "1771374160263299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878188813699902", + "timeUnixNano": "1771374160263299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878188813699902", + "timeUnixNano": "1771374160263299951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878188816399902", + "timeUnixNano": "1771374160265899951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878188821799902", + "timeUnixNano": "1771374160267799951", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878188822899902", + "timeUnixNano": "1771374160269099951", "droppedAttributesCount": 0 } ], @@ -554,17 +536,17 @@ "flags": 257 }, { - "traceId": "8a46b50d6fabf7c4717f1c40f94a667f", - "spanId": "3f67a11469742c57", + "traceId": "68c0434d70dd7cc5de14c8c041c94e31", + "spanId": "9ee9aded38ecab1c", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878188808200098", - "endTimeUnixNano": "1771878188865000097", + "startTimeUnixNano": "1771374160257100000", + "endTimeUnixNano": "1771374160319300000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "1BB60BFB4938F510E560F31A92752B65" } }, { @@ -584,12 +566,6 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 0, @@ -597,43 +573,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878188808200098", + "timeUnixNano": "1771374160257100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878188815900098", + "timeUnixNano": "1771374160264800000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878188864900098", + "timeUnixNano": "1771374160319200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878188865000097", + "timeUnixNano": "1771374160319200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878188865000097", + "timeUnixNano": "1771374160319200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878188865000097", + "timeUnixNano": "1771374160319200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878188865000097", + "timeUnixNano": "1771374160319300000", "droppedAttributesCount": 0 } ], @@ -654,12 +630,12 @@ }, "spans": [ { - "traceId": "27ea7bab8306ec4f3555a14eb912c1c0", - "spanId": "d37a9dd2f7c895fa", + "traceId": "6ecb03e51ab2c136a60fe134c9eca28f", + "spanId": "4c64f604b35b4a9d", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878188993000000", - "endTimeUnixNano": "1771878188999000000", + "startTimeUnixNano": "1771374160448000000", + "endTimeUnixNano": "1771374160453000000", "attributes": [ { "key": "component", @@ -682,7 +658,7 @@ { "key": "session.id", "value": { - "stringValue": "42087D8B45A66EDCEE5368DF2B807962" + "stringValue": "1BB60BFB4938F510E560F31A92752B65" } }, { @@ -754,12 +730,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 0, @@ -767,49 +737,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878188993600049", + "timeUnixNano": "1771374160449100000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878188996000049", + "timeUnixNano": "1771374160451400000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878188996000049", + "timeUnixNano": "1771374160451400000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json index b0a30e51b..6765bc07e 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "6E597AA522167B7C7E1494B8DAA7F678" + "stringValue": "519A1C857B37D9FA570D2F1EE73E0244" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878185839899902", - "observedTimeUnixNano": "1771878185839000000", + "timeUnixNano": "1769811582627200195", + "observedTimeUnixNano": "1769811582627000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243516)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:485288\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483625)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484468)\n at Jp (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484650)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484853)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:484914\n at new Promise ()" + "stringValue": "Error\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:243210)\n at e.value (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:203278)\n at Proxy. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:190450)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483819\n at Generator. (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482156)\n at Generator.next (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:482999)\n at th (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483181)\n at a (http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483384)\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:2:483445\n at new Promise ()" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"8ef6dd7312afb8e65ddb16e5124b12f5\"}" + "stringValue": "{\"Error\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:33\\n at http://localhost:3001/platforms/webpack-5/es2015/embrace-web-sdk.js:4:126\":\"ee12e68962c1a54c83901757855f436c\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "0AC90DDB288780AF14293FFF44577012" + "stringValue": "58DC95F7E5DDF6257F5C7904AFA09F73" } }, { "key": "session.id", "value": { - "stringValue": "B1E3965D7D931F63F898880279B45DB1" + "stringValue": "A29D788E6406ADA037B1EC8B76EBB4F4" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3001/platforms/webpack-5/es2015/index.html" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json index 7c925e3a2..ab38a9705 100644 --- a/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json +++ b/tests/integration/tests/__golden__/chromium-webpack-5-es2015-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "2BB3ACA24E448FEB26388AB65794DA56" + "stringValue": "F0E09D51A9370BE15760C00A18ED357B" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "d9324dad6e585b3e21ac01bbf8935c57", - "spanId": "ecb074400addba00", + "traceId": "41536bb409cc4b2275b49630158f3b40", + "spanId": "e39e141d4c8ed134", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878185254000000", - "endTimeUnixNano": "1771878185445900000", + "startTimeUnixNano": "1769811582161000000", + "endTimeUnixNano": "1769811582304900000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "AADD1AEB25928431F69E30BBE973A24C" + "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "D7851831C1E51678398B44164E00B655" + "stringValue": "496F2D6EBCB874005D11408E2E443999" } }, { "key": "emb.tab_id", "value": { - "stringValue": "2BB3ACA24E448FEB26388AB65794DA56" + "stringValue": "F0E09D51A9370BE15760C00A18ED357B" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 7 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" + "intValue": 11 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", - "spanId": "fcc3a0242eafd580", - "parentSpanId": "4ac18c441da73cf1", + "traceId": "620b9a07aa31b48d6a9d08613c77fce7", + "spanId": "34e19ef8cde23cee", + "parentSpanId": "3595c87c70a493bb", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878185208400049", - "endTimeUnixNano": "1771878185212600049", + "startTimeUnixNano": "1769811582109600000", + "endTimeUnixNano": "1769811582111400000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AADD1AEB25928431F69E30BBE973A24C" + "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" } }, { @@ -209,12 +203,6 @@ "value": { "intValue": 199 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" - } } ], "droppedAttributesCount": 0, @@ -222,55 +210,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878185208400049", + "timeUnixNano": "1769811582109600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878185211000049", + "timeUnixNano": "1769811582110500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878185211000049", + "timeUnixNano": "1769811582110600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878185211000049", + "timeUnixNano": "1769811582110600000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878185208300049", + "timeUnixNano": "1769811582109500000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878185211200049", + "timeUnixNano": "1769811582110700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878185211300049", + "timeUnixNano": "1769811582110700000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878185212400049", + "timeUnixNano": "1769811582111200000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878185212600049", + "timeUnixNano": "1769811582111400000", "droppedAttributesCount": 0 } ], @@ -283,18 +271,18 @@ "flags": 257 }, { - "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", - "spanId": "6e083c331bf19470", - "parentSpanId": "4ac18c441da73cf1", + "traceId": "620b9a07aa31b48d6a9d08613c77fce7", + "spanId": "f36a3551f76ec6ff", + "parentSpanId": "3595c87c70a493bb", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878185214000098", - "endTimeUnixNano": "1771878185219500098", + "startTimeUnixNano": "1769811582113200097", + "endTimeUnixNano": "1769811582117400097", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AADD1AEB25928431F69E30BBE973A24C" + "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" } }, { @@ -312,7 +300,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 486366 + "intValue": 484897 } }, { @@ -336,25 +324,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 486366 + "intValue": 484897 } }, { "key": "http.response.size", "value": { - "intValue": 486666 + "intValue": 485197 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 486366 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" + "intValue": 484897 } } ], @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878185214000098", + "timeUnixNano": "1769811582113200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878185214000098", + "timeUnixNano": "1769811582113200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878185214000098", + "timeUnixNano": "1769811582113200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878185214000098", + "timeUnixNano": "1769811582113200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878185214000098", + "timeUnixNano": "1769811582113200097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878185217300098", + "timeUnixNano": "1769811582115100097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878185218200098", + "timeUnixNano": "1769811582116400097", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878185219500098", + "timeUnixNano": "1769811582117400097", "droppedAttributesCount": 0 } ], @@ -418,17 +400,17 @@ "flags": 257 }, { - "traceId": "eb7e9dd8c079b6e3938b2298e74d76c3", - "spanId": "4ac18c441da73cf1", + "traceId": "620b9a07aa31b48d6a9d08613c77fce7", + "spanId": "3595c87c70a493bb", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878185207499902", - "endTimeUnixNano": "1771878185257599902", + "startTimeUnixNano": "1769811582108900049", + "endTimeUnixNano": "1769811582165400049", "attributes": [ { "key": "session.id", "value": { - "stringValue": "AADD1AEB25928431F69E30BBE973A24C" + "stringValue": "5B8360A97E1F05537480DDB7874DDF4C" } }, { @@ -446,13 +428,7 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.7632.6 Safari/537.36" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "React + TS + Webpack" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.7499.4 Safari/537.36" } } ], @@ -461,43 +437,43 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878185207499902", + "timeUnixNano": "1769811582108900049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878185216599902", + "timeUnixNano": "1769811582114200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878185257499902", + "timeUnixNano": "1769811582165200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878185257499902", + "timeUnixNano": "1769811582165200049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878185257499902", + "timeUnixNano": "1769811582165300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878185257499902", + "timeUnixNano": "1769811582165300049", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878185257599902", + "timeUnixNano": "1769811582165400049", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json index 8fade446a..bc5201557 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "B100657DD17F656628D3B13297792059" + "stringValue": "6E1BD19A33519F4E37A4099262499170" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878222229000000", - "observedTimeUnixNano": "1771878222229000000", + "timeUnixNano": "1769811595178000000", + "observedTimeUnixNano": "1769811595179000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215\nmessage@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579\ne/get/<@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020\no@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334\ni2@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144383\ni9/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150470\ntk@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378\ni9@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145617\ncu@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172617\nca@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145180\ni4@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144579\ni6/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144745\ni6@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144690\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:181972\nL/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252509\nr.startTransition@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:1:7357\nL@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252478\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252987\nn@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1293\nl@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1632\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252954\nx@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3768\n" + "stringValue": "message@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341\nmessage@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585\nt/get/<@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026\no@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335\ni2@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144381\ni9/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150468\ntk@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376\ni9@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145615\ncu@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172615\nca@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145178\ni4@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144577\ni8/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144743\ni8@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144688\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:181970\nL/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252487\nr.startTransition@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:1:7357\nL@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252456\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252963\nn@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1293\nl@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1632\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252930\nx@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3768\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\\n\":\"e1d8154aba2335b6f75749ea66ea412d\",\"@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\\n\":\"450f76c7d056bbedd174d43e02bb77aa\",\"@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\\n\":\"e37956446879e6a5a36c27f196ea6595\",\"@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\\n\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\\n\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\\n\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\\n\":\"da420bfb1f92af1ad511eeef61a12620\"}" + "stringValue": "{\"@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\\n\":\"62daae22085216409a457a21cb79a1b4\",\"@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\\n\":\"15fd21ff52e283c3bb62052de324ad34\",\"@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\\n\":\"734e6ec704f57fd3eb85256dd8f38044\",\"@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\\n\":\"ea3ef035957877fbf63a62637cdfcc92\",\"@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\\n\":\"7f0a703a46bf13f33017d981466478d2\",\"@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\\n\":\"f06fd0cd216422bc438c490a646ec9f9\",\"@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\\n\":\"9854c0c6494879a068188282e03f6e99\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "006A304474C8DF69732BBE509A9EC6F2" + "stringValue": "3F56428A3BB3AC87540D15915DEEBB1D" } }, { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "5259046BAACF6F61BBF04C180837DE7E" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3010/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json index a1cefe36e..03e7b7997 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "B100657DD17F656628D3B13297792059" + "stringValue": "E4D96E5B59D1495A568BCF5824A04B65" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "b5aa790114f8637ff9e997bbaf369be8", - "spanId": "99992fc8261b367e", + "traceId": "14e00b072c13baaa96e0fadd53a96dd8", + "spanId": "9721fe1ed3da68de", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878221250000000", - "endTimeUnixNano": "1771878222570000000", + "startTimeUnixNano": "1771869078744000000", + "endTimeUnixNano": "1771869079469000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "965D6FD30D09732339C5A94F823EB4CF" + "stringValue": "D81892A11A1A81E5D32A8227B7601229" } }, { "key": "emb.tab_id", "value": { - "stringValue": "B100657DD17F656628D3B13297792059" + "stringValue": "E4D96E5B59D1495A568BCF5824A04B65" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 47 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 11 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878221469000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878221252-1743819035988" + "stringValue": "v5-1771869078745-8991742550402" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 158 + "intValue": 191 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 158 + "intValue": 191 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 9 + "intValue": 96 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 149 + "intValue": 95 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878221477000000", + "timeUnixNano": "1771869078909000000", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878222184000000", + "timeUnixNano": "1771869079376000000", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "dfbfc0317f8cb24c", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "aaf24a83685140cb", + "parentSpanId": "b312fb62ca387d72", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878220958000000", - "endTimeUnixNano": "1771878220986000000", + "startTimeUnixNano": "1771869078514000000", + "endTimeUnixNano": "1771869078617000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -343,19 +337,13 @@ { "key": "http.response_content_length", "value": { - "intValue": 2045 + "intValue": 2043 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7142 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7139 } } ], @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878220958000000", + "timeUnixNano": "1771869078514000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878220968000000", + "timeUnixNano": "1771869078608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878220968000000", + "timeUnixNano": "1771869078608000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878220968000000", + "timeUnixNano": "1771869078609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878220977000000", + "timeUnixNano": "1771869078521000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878220970000000", + "timeUnixNano": "1771869078609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878220970000000", + "timeUnixNano": "1771869078609000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878220986000000", + "timeUnixNano": "1771869078617000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878220986000000", + "timeUnixNano": "1771869078617000000", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "cce6d089cd2904f4", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "3b62c67b2e0f9119", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221019000000", - "endTimeUnixNano": "1771878221088000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078656000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -486,12 +474,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078654000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221088000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221088000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 } ], @@ -554,18 +536,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "13e6bb3a43a0c1e4", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "84aba96c5792e231", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221019000000", - "endTimeUnixNano": "1771878221089000000", + "startTimeUnixNano": "1771869078632000000", + "endTimeUnixNano": "1771869078657000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -615,12 +597,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -628,49 +604,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221089000000", + "timeUnixNano": "1771869078657000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221089000000", + "timeUnixNano": "1771869078657000000", "droppedAttributesCount": 0 } ], @@ -683,18 +659,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "7c5661f05224fbc2", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "d886be3573f61e7b", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221091000000", + "startTimeUnixNano": "1771869078632000000", + "endTimeUnixNano": "1771869078659000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -706,27 +682,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" + "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 983 + "intValue": 984 } }, { "key": "http.response_content_length_uncompressed", "value": { "intValue": 2961 - "intValue": 2961 } }, { "key": "http.request.initiator_type", "value": { "stringValue": "link" - "stringValue": "link" } }, { @@ -738,13 +712,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 983 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 1283 + "intValue": 1284 } }, { @@ -752,12 +726,6 @@ "value": { "intValue": 2961 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -765,49 +733,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078656000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221090000000", + "timeUnixNano": "1771869078659000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221091000000", + "timeUnixNano": "1771869078659000000", "droppedAttributesCount": 0 } ], @@ -820,18 +788,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "44bb2aedeedb32dc", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "dde8bf7fc2d652ef", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221092000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078659000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -843,19 +811,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" + "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 2409 + "intValue": 2405 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6046 + "intValue": 6034 } }, { @@ -873,25 +841,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 2409 + "intValue": 2405 } }, { "key": "http.response.size", "value": { - "intValue": 2709 + "intValue": 2705 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6046 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 6034 } } ], @@ -900,49 +862,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221091000000", + "timeUnixNano": "1771869078658000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221092000000", + "timeUnixNano": "1771869078659000000", "droppedAttributesCount": 0 } ], @@ -955,18 +917,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "470fdc7c3c60570e", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "a364a20025b63d17", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221097000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078664000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -978,26 +940,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-279119dcb7a4dfd6.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24460 + "intValue": 4013 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95495 + "intValue": 10054 } }, { "key": "http.request.initiator_type", "value": { "stringValue": "script" - "stringValue": "script" } }, { @@ -1009,25 +970,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 24460 + "intValue": 4013 } }, { "key": "http.response.size", "value": { - "intValue": 24760 + "intValue": 4313 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95495 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10054 } } ], @@ -1036,49 +991,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078660000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221092000000", + "timeUnixNano": "1771869078662000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221097000000", + "timeUnixNano": "1771869078664000000", "droppedAttributesCount": 0 } ], @@ -1091,18 +1046,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "27c116cfaa894d5b", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "0af5328b75b5f7a4", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221095000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078664000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1114,19 +1069,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" + "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10054 + "intValue": 95481 } }, { @@ -1144,25 +1099,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4009 + "intValue": 24455 } }, { "key": "http.response.size", "value": { - "intValue": 4309 + "intValue": 24755 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10054 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 95481 } } ], @@ -1171,49 +1120,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221088000000", + "timeUnixNano": "1771869078658000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221095000000", + "timeUnixNano": "1771869078660000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221095000000", + "timeUnixNano": "1771869078664000000", "droppedAttributesCount": 0 } ], @@ -1226,18 +1175,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "e498beb7d8c9394c", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "884799d764e51bcd", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221097000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078671000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1249,19 +1198,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" + "stringValue": "http://localhost:3010/_next/static/chunks/1becba464fa63580.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7535 + "intValue": 75774 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32852 + "intValue": 253416 } }, { @@ -1279,25 +1228,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7535 + "intValue": 75774 } }, { "key": "http.response.size", "value": { - "intValue": 7835 + "intValue": 76074 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32852 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 253416 } } ], @@ -1306,49 +1249,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221089000000", + "timeUnixNano": "1771869078655000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221097000000", + "timeUnixNano": "1771869078660000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221097000000", + "timeUnixNano": "1771869078671000000", "droppedAttributesCount": 0 } ], @@ -1361,18 +1304,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "5d222a74216c9e17", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "386427fc2bfd7c67", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221020000000", - "endTimeUnixNano": "1771878221100000000", + "startTimeUnixNano": "1771869078632000000", + "endTimeUnixNano": "1771869078665000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1384,19 +1327,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/c1bf42bfadc5f517.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75770 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 253440 + "intValue": 1019 } }, { @@ -1414,25 +1351,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 75770 + "intValue": 1019 } }, { "key": "http.response.size", "value": { - "intValue": 76070 + "intValue": 1319 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253440 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1019 } } ], @@ -1441,49 +1372,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221020000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078661000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078661000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221080000000", + "timeUnixNano": "1771869078661000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078661000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221081000000", + "timeUnixNano": "1771869078661000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221092000000", + "timeUnixNano": "1771869078665000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078665000000", "droppedAttributesCount": 0 } ], @@ -1496,18 +1427,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "d5b118f27fa388e8", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "5294242eba1f1ce5", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221019000000", - "endTimeUnixNano": "1771878221096000000", + "startTimeUnixNano": "1771869078632000000", + "endTimeUnixNano": "1771869078665000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1519,13 +1450,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" + "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1019 + "intValue": 7525 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 32839 } }, { @@ -1543,25 +1480,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1019 + "intValue": 7525 } }, { "key": "http.response.size", "value": { - "intValue": 1319 + "intValue": 7825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1019 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 32839 } } ], @@ -1570,49 +1501,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078632000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221091000000", + "timeUnixNano": "1771869078660000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221096000000", + "timeUnixNano": "1771869078665000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221096000000", + "timeUnixNano": "1771869078665000000", "droppedAttributesCount": 0 } ], @@ -1625,18 +1556,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "b5d4570f99df22fc", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "8515ff0a279d262a", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221019000000", - "endTimeUnixNano": "1771878221100000000", + "startTimeUnixNano": "1771869078631000000", + "endTimeUnixNano": "1771869078671000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1648,19 +1579,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/9c57523c5e026826.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56807 + "intValue": 56589 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 206948 + "intValue": 205923 } }, { @@ -1678,25 +1609,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 56807 + "intValue": 56589 } }, { "key": "http.response.size", "value": { - "intValue": 57107 + "intValue": 56889 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 206948 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 205923 } } ], @@ -1705,49 +1630,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221019000000", + "timeUnixNano": "1771869078631000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221090000000", + "timeUnixNano": "1771869078659000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221096000000", + "timeUnixNano": "1771869078664000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078671000000", "droppedAttributesCount": 0 } ], @@ -1760,18 +1685,18 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "b7345ade130ac5cd", - "parentSpanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "fb133a43c91e1261", + "parentSpanId": "b312fb62ca387d72", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878221100000000", - "endTimeUnixNano": "1771878221100000000", + "startTimeUnixNano": "1771869078633000000", + "endTimeUnixNano": "1771869078633000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1821,12 +1746,6 @@ "value": { "boolValue": true } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1834,49 +1753,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221100000000", + "timeUnixNano": "1771869078633000000", "droppedAttributesCount": 0 } ], @@ -1889,17 +1808,17 @@ "flags": 257 }, { - "traceId": "be2f31529bfa975d54e910ef8de53dd8", - "spanId": "b9b07d62a08cb2dc", + "traceId": "e8e13aab56a57dfbc3a977b4999b4302", + "spanId": "b312fb62ca387d72", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878220958000000", - "endTimeUnixNano": "1771878221200000000", + "startTimeUnixNano": "1771869078514000000", + "endTimeUnixNano": "1771869078732000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -1919,12 +1838,6 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1932,49 +1845,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878220958000000", + "timeUnixNano": "1771869078514000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878221128000000", + "timeUnixNano": "1771869078674000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878221152000000", + "timeUnixNano": "1771869078674000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878221153000000", + "timeUnixNano": "1771869078675000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878221200000000", + "timeUnixNano": "1771869078732000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878221200000000", + "timeUnixNano": "1771869078732000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878221200000000", + "timeUnixNano": "1771869078732000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878221135000000", + "timeUnixNano": "1771869078712000000", "droppedAttributesCount": 0 } ], @@ -1995,12 +1908,12 @@ }, "spans": [ { - "traceId": "e555fa939c3404e1d5b70f57dec46613", - "spanId": "d90d286ee2a10878", + "traceId": "41bdf51b8f3b58d57aac74ecfc73b468", + "spanId": "daa6b960ef538502", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878221473000000", - "endTimeUnixNano": "1771878221485000000", + "startTimeUnixNano": "1771869078906000000", + "endTimeUnixNano": "1771869078920000000", "attributes": [ { "key": "component", @@ -2023,7 +1936,7 @@ { "key": "session.id", "value": { - "stringValue": "1C1772C1C935C676425121601C4C10E4" + "stringValue": "7F307BC814ABC79ED248E9070A273CAA" } }, { @@ -2095,12 +2008,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2108,49 +2015,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878221473000000", + "timeUnixNano": "1771869078906000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json index 632f60d50..07979b339 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "AC3831ED46B0F8838D096FED721E3937" + "stringValue": "33C2BBB8A2BB193492625AF49EFC2E6C" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878201404000000", - "observedTimeUnixNano": "1771878201405000000", + "timeUnixNano": "1769811589975000000", + "observedTimeUnixNano": "1769811589975000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:49215\nmessage@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4579\ne/get/<@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:1:4020\no@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:1:334\ni2@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144383\ni9/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:150470\ntk@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:28378\ni9@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145617\ncu@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172617\nca@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:172437\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:145180\ni4@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144579\ni6/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144745\ni6@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:144690\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:181972\nL/<@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252509\nr.startTransition@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:1:7357\nL@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252478\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252987\nn@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1293\nl@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:1632\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:1:252954\nx@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:3:3768\n" + "stringValue": "message@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:26341\nmessage@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4585\nt/get/<@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:1:4026\no@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:1:335\ni2@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144381\ni9/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:150468\ntk@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:28376\ni9@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145615\ncu@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172615\nca@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:172435\nEventListener.handleEvent*i5@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:145178\ni4@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144577\ni8/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144743\ni8@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:144688\nn.hydrateRoot@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:181970\nL/<@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252487\nr.startTransition@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:1:7357\nL@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252456\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252963\nn@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1293\nl@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:1632\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:1:252930\nx@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:977\nregisterChunk/<@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2257\nregisterChunk@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:2273\nasync*N@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:1744\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3756\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:3:3768\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:33\\n@http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js:4:126\\n\":\"450f76c7d056bbedd174d43e02bb77aa\",\"@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js:6:126\\n\":\"e37956446879e6a5a36c27f196ea6595\",\"@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:33\\n@http://localhost:3010/_next/static/chunks/411d4643c85b0009.js:4:126\\n\":\"4767144011edd1084ca7d88eaa0b9c8b\",\"@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:33\\n@http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js:4:126\\n\":\"e58a95ae7fe15fdcaee5531b364342a8\",\"@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:33\\n@http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js:4:126\\n\":\"e1d8154aba2335b6f75749ea66ea412d\",\"@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:33\\n@http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js:4:126\\n\":\"0b3fff7bf97064f1a39919c08ebced7f\",\"@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:33\\n@http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js:4:126\\n\":\"da420bfb1f92af1ad511eeef61a12620\"}" + "stringValue": "{\"@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:33\\n@http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js:4:126\\n\":\"15fd21ff52e283c3bb62052de324ad34\",\"@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:33\\n@http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js:4:126\\n\":\"62daae22085216409a457a21cb79a1b4\",\"@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:33\\n@http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js:6:126\\n\":\"734e6ec704f57fd3eb85256dd8f38044\",\"@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:33\\n@http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js:4:126\\n\":\"ea3ef035957877fbf63a62637cdfcc92\",\"@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:33\\n@http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js:4:126\\n\":\"7f0a703a46bf13f33017d981466478d2\",\"@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:33\\n@http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js:4:126\\n\":\"f06fd0cd216422bc438c490a646ec9f9\",\"@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:33\\n@http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js:4:126\\n\":\"9854c0c6494879a068188282e03f6e99\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "4F3151184BABE94836912A170966AC3E" + "stringValue": "DD638D16B92CB4ED217AFC918397D7A6" } }, { "key": "session.id", "value": { - "stringValue": "DD508DBD70128CDFA64B06626A60B361" + "stringValue": "FBC8B563DC4E42A66D581474466233DF" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3010/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json index c1a4d7c9f..91bd94486 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-turbopack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "026F58F24683AE9465814E452DCF5E2E" + "stringValue": "8B020178628EDA353D95BA4F4011C458" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "097dbe20716837e2b160e131c6a3df97", - "spanId": "18533b7da8961780", + "traceId": "54b374cddbea1ac1f7d1c158fcd92a69", + "spanId": "efddced8408d0366", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878199292000000", - "endTimeUnixNano": "1771878199577000000", + "startTimeUnixNano": "1769811589263000000", + "endTimeUnixNano": "1769811589420000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "187112E6670FDFBF00CEBFC3E0A1772F" + "stringValue": "7E0BEA941AD5FC70BA367C9FD69EA1C8" } }, { "key": "emb.tab_id", "value": { - "stringValue": "026F58F24683AE9465814E452DCF5E2E" + "stringValue": "8B020178628EDA353D95BA4F4011C458" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 13 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 12 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "ab8f7cfe917bd954", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "bed07fb3243010d3", + "parentSpanId": "8cd0c55cbce40a39", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878198993000000", - "endTimeUnixNano": "1771878199076000000", + "startTimeUnixNano": "1769811589151000000", + "endTimeUnixNano": "1769811589161000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -207,19 +201,13 @@ { "key": "http.response_content_length", "value": { - "intValue": 2045 + "intValue": 2042 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 7142 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 7139 } } ], @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878198993000000", + "timeUnixNano": "1769811589151000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199047000000", + "timeUnixNano": "1769811589158000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199047000000", + "timeUnixNano": "1769811589158000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199047000000", + "timeUnixNano": "1769811589158000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878198998000000", + "timeUnixNano": "1769811589152000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199050000000", + "timeUnixNano": "1769811589158000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199050000000", + "timeUnixNano": "1769811589158000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199075000000", + "timeUnixNano": "1769811589161000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199076000000", + "timeUnixNano": "1769811589161000000", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "b642fa3e0f9aec8b", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "0227fd54e53368f8", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199126000000", - "endTimeUnixNano": "1771878199190000000", + "startTimeUnixNano": "1769811589166000000", + "endTimeUnixNano": "1769811589185000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -350,12 +338,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199126000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199126000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199126000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199126000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199126000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199186000000", + "timeUnixNano": "1769811589182000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 } ], @@ -418,18 +400,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "e996adfe97f114f8", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "020f6bb5f1b5255a", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199127000000", - "endTimeUnixNano": "1771878199195000000", + "startTimeUnixNano": "1769811589166000000", + "endTimeUnixNano": "1769811589186000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -479,12 +461,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -492,49 +468,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199127000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 } ], @@ -547,18 +523,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "a31c74633951b786", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "1a8cbfe4a6d8d0f8", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199128000000", - "endTimeUnixNano": "1771878199196000000", + "startTimeUnixNano": "1769811589166000000", + "endTimeUnixNano": "1769811589187000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -570,19 +546,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/74dbb7853967af6f.css" + "stringValue": "http://localhost:3010/_next/static/chunks/a8b74a60f3556d84.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 983 + "intValue": 2405 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 2961 + "intValue": 6034 } }, { @@ -600,25 +576,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 983 + "intValue": 2405 } }, { "key": "http.response.size", "value": { - "intValue": 1283 + "intValue": 2705 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 6034 } } ], @@ -627,49 +597,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199128000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199196000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 } ], @@ -682,18 +652,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "ffa91d529872440a", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "2a819dbc124ce84c", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199127000000", - "endTimeUnixNano": "1771878199195000000", + "startTimeUnixNano": "1769811589166000000", + "endTimeUnixNano": "1769811589186000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -705,19 +675,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/f69c0e7c63d90078.js" + "stringValue": "http://localhost:3010/_next/static/chunks/79df16afc5891f0c.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 2409 + "intValue": 984 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 6046 + "intValue": 2961 } }, { @@ -735,25 +705,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 2409 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 2709 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 6046 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 2961 } } ], @@ -762,49 +726,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199127000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199188000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199188000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199189000000", + "timeUnixNano": "1769811589185000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 } ], @@ -817,18 +781,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "9dc97ad3aa1799f9", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "14ac0cf980e30447", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199129000000", - "endTimeUnixNano": "1771878199211000000", + "startTimeUnixNano": "1769811589166000000", + "endTimeUnixNano": "1769811589199000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -840,19 +804,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/dc1c0427d6f2e7b5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/9f41ebb97540b354.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 75770 + "intValue": 75775 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 253440 + "intValue": 253416 } }, { @@ -870,25 +834,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 75770 + "intValue": 75775 } }, { "key": "http.response.size", "value": { - "intValue": 76070 + "intValue": 76075 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 253440 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 253416 } } ], @@ -897,49 +855,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199190000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199191000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199191000000", + "timeUnixNano": "1769811589166000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199191000000", + "timeUnixNano": "1769811589186000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199200000000", + "timeUnixNano": "1769811589189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199211000000", + "timeUnixNano": "1769811589199000000", "droppedAttributesCount": 0 } ], @@ -952,18 +910,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "8bc74053e5563a73", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "1a16f9980b8cde8d", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199129000000", - "endTimeUnixNano": "1771878199199000000", + "startTimeUnixNano": "1769811589168000000", + "endTimeUnixNano": "1769811589190000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -975,13 +933,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-a57ba3927d6081e2.js" + "stringValue": "http://localhost:3010/_next/static/chunks/turbopack-877dadc786d07713.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4009 + "intValue": 4012 } }, { @@ -1005,13 +963,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 4009 + "intValue": 4012 } }, { "key": "http.response.size", "value": { - "intValue": 4309 + "intValue": 4312 } }, { @@ -1019,12 +977,6 @@ "value": { "intValue": 10054 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1032,49 +984,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199191000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199199000000", + "timeUnixNano": "1769811589190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199199000000", + "timeUnixNano": "1769811589190000000", "droppedAttributesCount": 0 } ], @@ -1087,18 +1039,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "8aad020736c06dc3", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "6f405f0c0f5b24d9", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199129000000", - "endTimeUnixNano": "1771878199202000000", + "startTimeUnixNano": "1769811589167000000", + "endTimeUnixNano": "1769811589194000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1110,13 +1062,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/18b7c251ef430cba.js" + "stringValue": "http://localhost:3010/_next/static/chunks/d1f52894775ef03c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1019 + "intValue": 1020 } }, { @@ -1134,25 +1086,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1019 + "intValue": 1020 } }, { "key": "http.response.size", "value": { - "intValue": 1319 + "intValue": 1320 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1019 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1020 } } ], @@ -1161,49 +1107,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199129000000", + "timeUnixNano": "1769811589189000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199202000000", + "timeUnixNano": "1769811589194000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199202000000", + "timeUnixNano": "1769811589194000000", "droppedAttributesCount": 0 } ], @@ -1216,18 +1162,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "3b27408f142a4381", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "1530815ff58a7cff", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199131000000", - "endTimeUnixNano": "1771878199204000000", + "startTimeUnixNano": "1769811589168000000", + "endTimeUnixNano": "1769811589193000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1239,19 +1185,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/23a2fda5ee3ef2f7.js" + "stringValue": "http://localhost:3010/_next/static/chunks/0f3c9c623a8d056e.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 24460 + "intValue": 7525 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 95495 + "intValue": 32839 } }, { @@ -1269,25 +1215,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 24460 + "intValue": 7525 } }, { "key": "http.response.size", "value": { - "intValue": 24760 + "intValue": 7825 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 95495 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 32839 } } ], @@ -1296,49 +1236,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199131000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199192000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199192000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199192000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199192000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199192000000", + "timeUnixNano": "1769811589188000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199201000000", + "timeUnixNano": "1769811589192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199204000000", + "timeUnixNano": "1769811589193000000", "droppedAttributesCount": 0 } ], @@ -1351,18 +1291,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "bc0daa2d49ab51f9", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "d949664dccefb674", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199130000000", - "endTimeUnixNano": "1771878199205000000", + "startTimeUnixNano": "1769811589168000000", + "endTimeUnixNano": "1769811589193000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1374,19 +1314,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/411d4643c85b0009.js" + "stringValue": "http://localhost:3010/_next/static/chunks/2bb490b90a366d51.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7535 + "intValue": 24455 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 32852 + "intValue": 95481 } }, { @@ -1404,25 +1344,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7535 + "intValue": 24455 } }, { "key": "http.response.size", "value": { - "intValue": 7835 + "intValue": 24755 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 32852 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 95481 } } ], @@ -1431,49 +1365,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589168000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199195000000", + "timeUnixNano": "1769811589187000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199203000000", + "timeUnixNano": "1769811589190000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199205000000", + "timeUnixNano": "1769811589193000000", "droppedAttributesCount": 0 } ], @@ -1486,18 +1420,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "a0078adaca7ae64f", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "1dab95e995493b02", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199130000000", - "endTimeUnixNano": "1771878199214000000", + "startTimeUnixNano": "1769811589167000000", + "endTimeUnixNano": "1769811589199000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1509,19 +1443,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3010/_next/static/chunks/a9a31cfe1d8971c5.js" + "stringValue": "http://localhost:3010/_next/static/chunks/dca1a7d3f4253d7c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 56807 + "intValue": 49283 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 206948 + "intValue": 183550 } }, { @@ -1539,25 +1473,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 56807 + "intValue": 49283 } }, { "key": "http.response.size", "value": { - "intValue": 57107 + "intValue": 49583 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 206948 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 183550 } } ], @@ -1566,49 +1494,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199130000000", + "timeUnixNano": "1769811589167000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199196000000", + "timeUnixNano": "1769811589188000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199205000000", + "timeUnixNano": "1769811589192000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199214000000", + "timeUnixNano": "1769811589199000000", "droppedAttributesCount": 0 } ], @@ -1621,18 +1549,18 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "2ff917ad50d32a08", - "parentSpanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "fab84e1a656e4701", + "parentSpanId": "8cd0c55cbce40a39", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878199137000000", - "endTimeUnixNano": "1771878199137000000", + "startTimeUnixNano": "1769811589170000000", + "endTimeUnixNano": "1769811589170000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1682,12 +1610,6 @@ "value": { "boolValue": true } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1695,49 +1617,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878199137000000", + "timeUnixNano": "1769811589170000000", "droppedAttributesCount": 0 } ], @@ -1750,17 +1672,17 @@ "flags": 257 }, { - "traceId": "12f5141f0675e79bbe3fefb188da4f2a", - "spanId": "808a9250005fc4ad", + "traceId": "01c3841e86cd76b185b3a5b3efa86874", + "spanId": "8cd0c55cbce40a39", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878198992000000", - "endTimeUnixNano": "1771878199278000000", + "startTimeUnixNano": "1769811589151000000", + "endTimeUnixNano": "1769811589249000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "6DBB4A730CDB510D282AF4E6D9036F05" + "stringValue": "7F48245BEF609BA22EBCA0D6073A62B0" } }, { @@ -1778,13 +1700,7 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } } ], @@ -1793,49 +1709,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878198992000000", + "timeUnixNano": "1769811589151000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878199210000000", + "timeUnixNano": "1769811589199000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878199210000000", + "timeUnixNano": "1769811589210000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878199211000000", + "timeUnixNano": "1769811589211000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878199278000000", + "timeUnixNano": "1769811589249000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878199278000000", + "timeUnixNano": "1769811589249000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878199278000000", + "timeUnixNano": "1769811589249000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878199227000000", + "timeUnixNano": "1769811589213000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json index 228d54951..d6f55254e 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" + "stringValue": "05F145236AEE11595B87C5969BF02654" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878225664000000", - "observedTimeUnixNano": "1771878225665000000", + "timeUnixNano": "1769811596595000000", + "observedTimeUnixNano": "1769811596596000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870\nmessage@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:51\n" + "stringValue": "message@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660\nmessage@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:51\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\\n\":\"76b5dab0e72069584d89e0b302279695\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\\n\":\"9ab215c57ab24f3f73f40b0053e5b8b9\",\"@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\\n\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\\n\":\"d035e6671d0c3186ab8408ec8453b89d\",\"@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\\n\":\"166e3b7993ce96be2e298450dca31ca8\",\"@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\\n\":\"e2f6858a89ef8eeb481256284771da3c\"}" + "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\\n\":\"f27043cc7214fdbab0262293a0060a16\",\"@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\\n\":\"db0d46c3ca28c53466d447f145d3d31f\",\"@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\\n\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\\n\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\\n\":\"ae15458582b5d5019a30fa307e376b50\",\"@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\\n\":\"9040bed901f1ec37d64a729e40eb25e5\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "847F4C283C2D5FA8221AFB7FF3DF40CE" + "stringValue": "4B4CBC598D321BD270B5ACCF4AD8288C" } }, { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "25285CE2CB42907C0553870FA234A416" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3012/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json index c78d8ad06..56b915cd3 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" + "stringValue": "65F652AF3A833A59777F4B208A3C5891" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "63db902f441a710a59a543009074c15a", - "spanId": "274f3e2ca248a0ff", + "traceId": "0fc8dc60f9352e75489c3e71645b1b25", + "spanId": "c45e863bd97de062", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878224442000000", - "endTimeUnixNano": "1771878225861000000", + "startTimeUnixNano": "1771374171069000000", + "endTimeUnixNano": "1771374171724000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "E2BE347B0C0F92EF6898E9287EAC60DF" + "stringValue": "CB3693CE97187B7A40F4DE1DF113E672" } }, { "key": "emb.tab_id", "value": { - "stringValue": "7B65AC163FC09002D4B1AEE50A7BCC1F" + "stringValue": "65F652AF3A833A59777F4B208A3C5891" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 86 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 6 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878224962000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878224444-9278207187306" + "stringValue": "v5-1771374171070-8539097792451" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 655 + "intValue": 55 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 655 + "intValue": 55 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 55 + "intValue": 8 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 600 + "intValue": 47 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878224968000000", + "timeUnixNano": "1771374171232000000", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878225663000000", + "timeUnixNano": "1771374171665000000", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "95da3f87c2900732", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "bbf98dcb95bfd2ce", + "parentSpanId": "ccfca9d6eb3991b2", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878223490000000", - "endTimeUnixNano": "1771878223568000000", + "startTimeUnixNano": "1771374170995000000", + "endTimeUnixNano": "1771374171004000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -343,7 +337,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2054 + "intValue": 2055 } }, { @@ -351,12 +345,6 @@ "value": { "intValue": 6204 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223490000000", + "timeUnixNano": "1771374170995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223505000000", + "timeUnixNano": "1771374171001000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223505000000", + "timeUnixNano": "1771374171001000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223505000000", + "timeUnixNano": "1771374171001000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878223505000000", + "timeUnixNano": "1771374170995000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223506000000", + "timeUnixNano": "1771374171001000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878223506000000", + "timeUnixNano": "1771374171001000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878223560000000", + "timeUnixNano": "1771374171003000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878223568000000", + "timeUnixNano": "1771374171004000000", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "2066903e30352383", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "1a2e88099fdbc044", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224003000000", + "startTimeUnixNano": "1771374171008000000", + "endTimeUnixNano": "1771374171028000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -486,12 +474,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878223993000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224003000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224003000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 } ], @@ -554,18 +536,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "810c674c6e0db905", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "7e76aff6d847e2b1", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223607000000", - "endTimeUnixNano": "1771878224004000000", + "startTimeUnixNano": "1771374171008000000", + "endTimeUnixNano": "1771374171029000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -615,12 +597,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -628,49 +604,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223995000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223995000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223995000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223995000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878223995000000", + "timeUnixNano": "1771374171027000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224004000000", + "timeUnixNano": "1771374171029000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224004000000", + "timeUnixNano": "1771374171029000000", "droppedAttributesCount": 0 } ], @@ -683,18 +659,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "b56a6e2dea330cd9", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "18e6ffe4f9967669", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224060000000", + "startTimeUnixNano": "1771374171008000000", + "endTimeUnixNano": "1771374171029000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -750,12 +726,6 @@ "value": { "intValue": 2903 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -763,49 +733,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224059000000", + "timeUnixNano": "1771374171028000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224060000000", + "timeUnixNano": "1771374171029000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224060000000", + "timeUnixNano": "1771374171029000000", "droppedAttributesCount": 0 } ], @@ -818,18 +788,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "d8ceea116d92173e", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "bb20c0b785ed0751", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223607000000", - "endTimeUnixNano": "1771878224059000000", + "startTimeUnixNano": "1771374171009000000", + "endTimeUnixNano": "1771374171032000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -841,25 +811,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 3567 + "intValue": 795 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -871,25 +835,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 795 } } ], @@ -898,49 +856,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223607000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224058000000", + "timeUnixNano": "1771374171031000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224059000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224059000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 } ], @@ -953,18 +911,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "9d187da252e9d9a3", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "48be2b905285890d", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224075000000", + "startTimeUnixNano": "1771374171009000000", + "endTimeUnixNano": "1771374171031000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -976,25 +934,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 + "intValue": 1841 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 173257 + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -1006,25 +964,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 3567 } } ], @@ -1033,49 +985,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224060000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224062000000", + "timeUnixNano": "1771374171031000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224075000000", + "timeUnixNano": "1771374171031000000", "droppedAttributesCount": 0 } ], @@ -1088,18 +1040,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "71a56997d82899ac", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "1e4fe8b0c8383f10", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224075000000", + "startTimeUnixNano": "1771374171009000000", + "endTimeUnixNano": "1771374171036000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1155,12 +1107,6 @@ "value": { "intValue": 172733 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1168,49 +1114,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171009000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224061000000", + "timeUnixNano": "1771374171030000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224068000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224075000000", + "timeUnixNano": "1771374171036000000", "droppedAttributesCount": 0 } ], @@ -1223,18 +1169,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "e46e346a1a654cad", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "dd336ef3cfd7c058", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224074000000", + "startTimeUnixNano": "1771374171008000000", + "endTimeUnixNano": "1771374171036000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1246,13 +1192,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 54541 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 173257 } }, { @@ -1270,25 +1222,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 173257 } } ], @@ -1297,49 +1243,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878224061000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878224061000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878224061000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878224062000000", + "timeUnixNano": "1771374171008000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224062000000", + "timeUnixNano": "1771374171029000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224074000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224074000000", + "timeUnixNano": "1771374171036000000", "droppedAttributesCount": 0 } ], @@ -1352,18 +1298,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "209cc2f16e0ebecf", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "f77ab144533400a2", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223609000000", - "endTimeUnixNano": "1771878224082000000", + "startTimeUnixNano": "1771374171010000000", + "endTimeUnixNano": "1771374171032000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1413,12 +1359,6 @@ "value": { "intValue": 564 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1426,49 +1366,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224080000000", + "timeUnixNano": "1771374171031000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224082000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224082000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 } ], @@ -1481,18 +1421,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "7a1a6db24c281945", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "ae76fd5b0080c4d0", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223609000000", - "endTimeUnixNano": "1771878224097000000", + "startTimeUnixNano": "1771374171010000000", + "endTimeUnixNano": "1771374171036000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1548,12 +1488,6 @@ "value": { "intValue": 121417 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1561,49 +1495,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224085000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224090000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224097000000", + "timeUnixNano": "1771374171036000000", "droppedAttributesCount": 0 } ], @@ -1616,18 +1550,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "68921880756fb08e", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "248ee1c00d09d32d", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223609000000", - "endTimeUnixNano": "1771878224128000000", + "startTimeUnixNano": "1771374171010000000", + "endTimeUnixNano": "1771374171035000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1639,13 +1573,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-efb5c652168403df.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 20484 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 75206 } }, { @@ -1663,25 +1603,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 20484 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 20784 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 75206 } } ], @@ -1690,49 +1624,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224125000000", + "timeUnixNano": "1771374171032000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224128000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224128000000", + "timeUnixNano": "1771374171035000000", "droppedAttributesCount": 0 } ], @@ -1745,18 +1679,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "04bab0e5220ae7cf", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "47d2ab746a3cb264", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223608000000", - "endTimeUnixNano": "1771878224108000000", + "startTimeUnixNano": "1771374171010000000", + "endTimeUnixNano": "1771374171035000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1768,19 +1702,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-2a4174a4007a9a69.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20675 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 76090 + "intValue": 876 } }, { @@ -1798,25 +1726,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 20675 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 20975 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 76090 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 876 } } ], @@ -1825,49 +1747,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171033000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171033000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171033000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223608000000", + "timeUnixNano": "1771374171033000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224101000000", + "timeUnixNano": "1771374171033000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224105000000", + "timeUnixNano": "1771374171035000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224108000000", + "timeUnixNano": "1771374171035000000", "droppedAttributesCount": 0 } ], @@ -1880,18 +1802,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "b7bd1a4506675216", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "3a69219a28db760a", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223609000000", - "endTimeUnixNano": "1771878224130000000", + "startTimeUnixNano": "1771374171010000000", + "endTimeUnixNano": "1771374171035000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -1903,13 +1825,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-5334fee99ab53793.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 + "intValue": 656 } }, { @@ -1933,13 +1855,13 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 656 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 956 } }, { @@ -1947,12 +1869,6 @@ "value": { "intValue": 1033 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1960,49 +1876,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171010000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223609000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224127000000", + "timeUnixNano": "1771374171034000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224130000000", + "timeUnixNano": "1771374171035000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224130000000", + "timeUnixNano": "1771374171035000000", "droppedAttributesCount": 0 } ], @@ -2015,18 +1931,18 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "2c91b4133e1d41e8", - "parentSpanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "b3751d53a873abdb", + "parentSpanId": "ccfca9d6eb3991b2", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878223634000000", - "endTimeUnixNano": "1771878223634000000", + "startTimeUnixNano": "1771374171013000000", + "endTimeUnixNano": "1771374171013000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -2076,12 +1992,6 @@ "value": { "boolValue": true } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2089,49 +1999,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878223634000000", + "timeUnixNano": "1771374171013000000", "droppedAttributesCount": 0 } ], @@ -2144,17 +2054,17 @@ "flags": 257 }, { - "traceId": "f2fefc9f99b0f437b7474e45b3e1ca45", - "spanId": "cdecb2d64a4e50a8", + "traceId": "c15ebe81e074c5e4c4748e3fe80ffe8b", + "spanId": "ccfca9d6eb3991b2", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878223490000000", - "endTimeUnixNano": "1771878224497000000", + "startTimeUnixNano": "1771374170994000000", + "endTimeUnixNano": "1771374171071000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -2174,62 +2084,50 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878223490000000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878224156000000", + "timeUnixNano": "1771374171037000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878224159000000", + "timeUnixNano": "1771374171037000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878224160000000", + "timeUnixNano": "1771374171037000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878224496000000", + "timeUnixNano": "1771374171071000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878224496000000", + "timeUnixNano": "1771374171071000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878224497000000", + "timeUnixNano": "1771374171071000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878224160000000", + "timeUnixNano": "1771374171049000000", "droppedAttributesCount": 0 } ], @@ -2250,12 +2148,12 @@ }, "spans": [ { - "traceId": "5c8b0c4ec87270d4634d85ef67f28a41", - "spanId": "06561bb9296c8172", + "traceId": "305b45952d925822ffc908d0544e22a0", + "spanId": "25b326bd71171d00", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878224966000000", - "endTimeUnixNano": "1771878225041000000", + "startTimeUnixNano": "1771374171229000000", + "endTimeUnixNano": "1771374171233000000", "attributes": [ { "key": "component", @@ -2278,7 +2176,7 @@ { "key": "session.id", "value": { - "stringValue": "2879B1F22D88217EEC1220A948C5A358" + "stringValue": "8ECACF3B3AA48B134CF21622A15BA839" } }, { @@ -2350,12 +2248,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2363,49 +2255,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878224967000000", + "timeUnixNano": "1771374171229000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json index ceb0bead1..060982b63 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "542F1189D851C2A3DAF886C4CD85654C" + "stringValue": "C18AD6D7C2535F1503B61EF76AA393E0" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878203343000000", - "observedTimeUnixNano": "1771878203344000000", + "timeUnixNano": "1769811591199000000", + "observedTimeUnixNano": "1769811591200000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:14870\nmessage@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:1:51\n" + "stringValue": "message@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:14660\nmessage@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2649\n6358/i/get/<@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:1:2172\nn@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:1:302\ni8@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135364\n9248/sn/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:141451\nnz@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:19197\nsn@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136598\ncc@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163600\nci@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:163420\nEventListener.handleEvent*se@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:136161\ni5@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135560\n9248/i7/<@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135726\ni7@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:135671\n9248/n.hydrateRoot@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:1:172955\n9781/U/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170939\n1426/t.startTransition@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:20183\nU@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:170908\n1666/<@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22912\nr@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55002\nu@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:55341\n1666@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:22867\nr@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:127\ns@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:497\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:1:527\nr.O@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:504\nt@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:1:3206\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:1:51\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js:3:126\\n\":\"76b5dab0e72069584d89e0b302279695\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js:3:126\\n\":\"d035e6671d0c3186ab8408ec8453b89d\",\"@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js:3:126\\n\":\"166e3b7993ce96be2e298450dca31ca8\",\"@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:33\\n@http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js:3:126\\n\":\"b7fea7267af0d3b2cb9596810dd712f0\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js:3:126\\n\":\"e2f6858a89ef8eeb481256284771da3c\",\"@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js:3:126\\n\":\"9ab215c57ab24f3f73f40b0053e5b8b9\"}" + "stringValue": "{\"@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:33\\n@http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js:3:126\\n\":\"cffac8a720a54e1f6ab80b6bed967c72\",\"@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:33\\n@http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js:3:126\\n\":\"db0d46c3ca28c53466d447f145d3d31f\",\"@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:33\\n@http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js:3:126\\n\":\"ecc0cfea7e89a0b7fe3581249bdf7179\",\"@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js:3:126\\n\":\"f27043cc7214fdbab0262293a0060a16\",\"@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:33\\n@http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js:3:126\\n\":\"bd60279bae209a6a8d68c1c3d4e2ef13\",\"@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:33\\n@http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js:3:126\\n\":\"92a0786aa02064eab9fc6621c2b5fc41\",\"@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:33\\n@http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js:3:126\\n\":\"386cfc75819760e1ef3a10ca0c340f52\",\"@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:33\\n@http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js:3:126\\n\":\"ae15458582b5d5019a30fa307e376b50\",\"@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:33\\n@http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js:3:126\\n\":\"9040bed901f1ec37d64a729e40eb25e5\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "EF61605F0587A76A9000CEC46AE69377" + "stringValue": "C13C5148894A5D1E13D52997CAA2ABBB" } }, { "key": "session.id", "value": { - "stringValue": "71CAE1ACBA3653111C049DD1A311D5B3" + "stringValue": "92C1FD3792326A691B1E721FAEC5E963" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3012/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json index 078c0aac2..876eb18e7 100644 --- a/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-15-webpack-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "1AF2EB88958E51AD8F301775A1440944" + "stringValue": "1B6612F1A6291978F213933B6F2CD679" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "e61410e03b877a92c53c50267aac9226", - "spanId": "0d0e9985fe4164cb", + "traceId": "da00aeccf0680a60cedb276c2a72f78e", + "spanId": "9ea3a3c9ec56ee34", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878200470000000", - "endTimeUnixNano": "1771878200855000000", + "startTimeUnixNano": "1769811590516000000", + "endTimeUnixNano": "1769811590684000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "60681E2D62DDFA7611EBD8039E9575E3" + "stringValue": "A85202F12BB6F474CF26F5B883630673" } }, { "key": "emb.tab_id", "value": { - "stringValue": "1AF2EB88958E51AD8F301775A1440944" + "stringValue": "1B6612F1A6291978F213933B6F2CD679" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 10 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 14 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "49adbf455957cfc3", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "c368e6e0428cac17", + "parentSpanId": "8136bf80c85ad924", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878200040000000", - "endTimeUnixNano": "1771878200077000000", + "startTimeUnixNano": "1769811590401000000", + "endTimeUnixNano": "1769811590410000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -207,7 +201,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 2054 + "intValue": 2055 } }, { @@ -215,12 +209,6 @@ "value": { "intValue": 6204 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200040000000", + "timeUnixNano": "1769811590401000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200052000000", + "timeUnixNano": "1769811590407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200052000000", + "timeUnixNano": "1769811590407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200052000000", + "timeUnixNano": "1769811590407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878200047000000", + "timeUnixNano": "1769811590401000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200052000000", + "timeUnixNano": "1769811590407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200052000000", + "timeUnixNano": "1769811590407000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200076000000", + "timeUnixNano": "1769811590410000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200077000000", + "timeUnixNano": "1769811590410000000", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "e5693d8382fdad1b", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "7e8359c4bfb12fe5", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200284000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590441000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -350,12 +338,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200277000000", + "timeUnixNano": "1769811590438000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 } ], @@ -418,18 +400,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "1452232cece92cf7", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "a1416c598640baab", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200148000000", - "endTimeUnixNano": "1771878200284000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590444000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -479,12 +461,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -492,49 +468,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590444000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590444000000", "droppedAttributesCount": 0 } ], @@ -547,18 +523,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "d50c690830e33442", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "116d0445a93fcaad", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200148000000", - "endTimeUnixNano": "1771878200284000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590446000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -614,12 +590,6 @@ "value": { "intValue": 2903 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -627,49 +597,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200278000000", + "timeUnixNano": "1769811590440000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590445000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200284000000", + "timeUnixNano": "1769811590446000000", "droppedAttributesCount": 0 } ], @@ -682,18 +652,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "092430459e2bb41a", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "9ecf9ac30e0125dc", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200288000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590446000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -705,25 +675,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 1841 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 3567 + "intValue": 564 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "link" + "stringValue": "script" } }, { @@ -735,25 +699,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 1841 + "intValue": 564 } }, { "key": "http.response.size", "value": { - "intValue": 2141 + "intValue": 864 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 3567 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 564 } } ], @@ -762,49 +720,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590442000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590442000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200286000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200288000000", + "timeUnixNano": "1769811590446000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200288000000", + "timeUnixNano": "1769811590446000000", "droppedAttributesCount": 0 } ], @@ -817,18 +775,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "c5d751fa144db9ed", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "189edbe6f87ecdcc", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200148000000", - "endTimeUnixNano": "1771878200302000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590447000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -840,19 +798,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/255-3beb2365eacc9839.js" + "stringValue": "http://localhost:3012/_next/static/chunks/main-app-eeeb3e6eb82d9ff3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 46245 - } - }, - { - "key": "http.response_content_length_uncompressed", - "value": { - "intValue": 172733 + "intValue": 795 } }, { @@ -870,25 +822,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 46245 + "intValue": 795 } }, { "key": "http.response.size", "value": { - "intValue": 46545 + "intValue": 1095 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 172733 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 795 } } ], @@ -897,49 +843,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590444000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590444000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200293000000", + "timeUnixNano": "1769811590444000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200298000000", + "timeUnixNano": "1769811590447000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200302000000", + "timeUnixNano": "1769811590447000000", "droppedAttributesCount": 0 } ], @@ -952,18 +898,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "a4ba5b21ae1fb794", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "4c92d892851630a0", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200302000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590449000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -975,13 +921,13 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/main-app-29b82fc40b910c58.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-402e4ac9f911ee39.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 795 + "intValue": 876 } }, { @@ -999,25 +945,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 795 + "intValue": 876 } }, { "key": "http.response.size", "value": { - "intValue": 1095 + "intValue": 1176 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 795 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 876 } } ], @@ -1026,49 +966,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200301000000", + "timeUnixNano": "1769811590446000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200302000000", + "timeUnixNano": "1769811590449000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200302000000", + "timeUnixNano": "1769811590449000000", "droppedAttributesCount": 0 } ], @@ -1081,18 +1021,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "c847560916554121", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "6f7df2a9cfe1870e", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200311000000", + "startTimeUnixNano": "1769811590417000000", + "endTimeUnixNano": "1769811590452000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1104,13 +1044,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4f9414d9-10f0cea5f8b7d11d.js" + "stringValue": "http://localhost:3012/_next/static/chunks/app/page-a33b085a33fd811c.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 564 + "intValue": 658 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 1033 } }, { @@ -1128,25 +1074,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 564 + "intValue": 658 } }, { "key": "http.response.size", "value": { - "intValue": 864 + "intValue": 958 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 564 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1033 } } ], @@ -1155,49 +1095,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590417000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200309000000", + "timeUnixNano": "1769811590446000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200311000000", + "timeUnixNano": "1769811590451000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200311000000", + "timeUnixNano": "1769811590452000000", "droppedAttributesCount": 0 } ], @@ -1210,18 +1150,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "1ce2c80de0c18a22", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "2ed5ab88ecd4db2f", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200329000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590453000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1233,13 +1173,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/layout-6569c6f4837fd333.js" + "stringValue": "http://localhost:3012/_next/static/chunks/812-aaa90a434726543f.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 876 + "intValue": 30021 + } + }, + { + "key": "http.response_content_length_uncompressed", + "value": { + "intValue": 98221 } }, { @@ -1257,25 +1203,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 876 + "intValue": 30021 } }, { "key": "http.response.size", "value": { - "intValue": 1176 + "intValue": 30321 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 876 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 98221 } } ], @@ -1284,49 +1224,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200318000000", + "timeUnixNano": "1769811590445000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200329000000", + "timeUnixNano": "1769811590449000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200329000000", + "timeUnixNano": "1769811590453000000", "droppedAttributesCount": 0 } ], @@ -1339,18 +1279,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "1da9c39aa119b430", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "a720926ff4ee6842", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200148000000", - "endTimeUnixNano": "1771878200303000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590455000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1362,19 +1302,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" + "stringValue": "http://localhost:3012/_next/static/chunks/153-6ea6b43a9e4579f8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54541 + "intValue": 20593 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 173257 + "intValue": 75431 } }, { @@ -1392,25 +1332,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54541 + "intValue": 20593 } }, { "key": "http.response.size", "value": { - "intValue": 54841 + "intValue": 20893 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 173257 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 75431 } } ], @@ -1419,49 +1353,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200292000000", + "timeUnixNano": "1769811590447000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200299000000", + "timeUnixNano": "1769811590452000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200303000000", + "timeUnixNano": "1769811590455000000", "droppedAttributesCount": 0 } ], @@ -1474,18 +1408,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "3d6ae8a96a2b846a", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "90b6f1f00fccc876", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200147000000", - "endTimeUnixNano": "1771878200336000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590455000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1497,19 +1431,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/153-16a87165dbf3d142.js" + "stringValue": "http://localhost:3012/_next/static/chunks/255-cb9f19212efa20a3.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 20675 + "intValue": 46245 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 76090 + "intValue": 172733 } }, { @@ -1527,25 +1461,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 20675 + "intValue": 46245 } }, { "key": "http.response.size", "value": { - "intValue": 20975 + "intValue": 46545 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 76090 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 172733 } } ], @@ -1554,49 +1482,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200147000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200318000000", + "timeUnixNano": "1769811590443000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200334000000", + "timeUnixNano": "1769811590448000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200336000000", + "timeUnixNano": "1769811590455000000", "droppedAttributesCount": 0 } ], @@ -1609,18 +1537,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "1364b227ce3774be", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "82e0c44fd8f3969a", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200148000000", - "endTimeUnixNano": "1771878200338000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590456000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1632,19 +1560,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/148-017f10f715dcef02.js" + "stringValue": "http://localhost:3012/_next/static/chunks/4bd1b696-ec67ac596534aad8.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 37762 + "intValue": 54541 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 121417 + "intValue": 173257 } }, { @@ -1662,25 +1590,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 37762 + "intValue": 54541 } }, { "key": "http.response.size", "value": { - "intValue": 38062 + "intValue": 54841 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 121417 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 173257 } } ], @@ -1689,49 +1611,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200148000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200318000000", + "timeUnixNano": "1769811590441000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200334000000", + "timeUnixNano": "1769811590447000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200338000000", + "timeUnixNano": "1769811590456000000", "droppedAttributesCount": 0 } ], @@ -1744,18 +1666,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "e73a8d3dc36dcb77", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "72259fc08625f021", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200149000000", - "endTimeUnixNano": "1771878200337000000", + "startTimeUnixNano": "1769811590418000000", + "endTimeUnixNano": "1769811590455000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1767,25 +1689,25 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3012/_next/static/chunks/app/page-ea7433e4eb699638.js" + "stringValue": "http://localhost:3012/_next/static/chunks/webpack-d50f2e51860d1852.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 658 + "intValue": 1841 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1033 + "intValue": 3567 } }, { "key": "http.request.initiator_type", "value": { - "stringValue": "script" + "stringValue": "link" } }, { @@ -1797,25 +1719,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 658 + "intValue": 1841 } }, { "key": "http.response.size", "value": { - "intValue": 958 + "intValue": 2141 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1033 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 3567 } } ], @@ -1824,49 +1740,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200149000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200319000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200319000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200319000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200320000000", + "timeUnixNano": "1769811590418000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200320000000", + "timeUnixNano": "1769811590450000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200337000000", + "timeUnixNano": "1769811590455000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200337000000", + "timeUnixNano": "1769811590455000000", "droppedAttributesCount": 0 } ], @@ -1879,18 +1795,18 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "9c98ef570eb26cac", - "parentSpanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "f320721c9ad0fb0b", + "parentSpanId": "8136bf80c85ad924", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878200154000000", - "endTimeUnixNano": "1771878200154000000", + "startTimeUnixNano": "1769811590421000000", + "endTimeUnixNano": "1769811590421000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -1940,12 +1856,6 @@ "value": { "boolValue": true } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1953,49 +1863,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878200154000000", + "timeUnixNano": "1769811590421000000", "droppedAttributesCount": 0 } ], @@ -2008,17 +1918,17 @@ "flags": 257 }, { - "traceId": "85fb8789283e7c1f150dec33fe98fd18", - "spanId": "aeecfc834a2c56c1", + "traceId": "cc5b4075c8cc400a828201d37534c144", + "spanId": "8136bf80c85ad924", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878200039000000", - "endTimeUnixNano": "1771878200507000000", + "startTimeUnixNano": "1769811590401000000", + "endTimeUnixNano": "1769811590522000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "2A5F27E71784114C218C723BD55D2F7C" + "stringValue": "614CB947F1661B2FD285EE85D7418395" } }, { @@ -2036,64 +1946,52 @@ { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878200039000000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878200357000000", + "timeUnixNano": "1769811590455000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878200389000000", + "timeUnixNano": "1769811590456000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878200393000000", + "timeUnixNano": "1769811590456000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878200483000000", + "timeUnixNano": "1769811590521000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878200483000000", + "timeUnixNano": "1769811590521000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878200507000000", + "timeUnixNano": "1769811590522000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878200393000000", + "timeUnixNano": "1769811590454000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json index af38a5ae1..97adb8488 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" + "stringValue": "3D3889001BC00198D5B774F3B4BA0AF7" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878239983000000", - "observedTimeUnixNano": "1771878239984000000", + "timeUnixNano": "1769811599135000000", + "observedTimeUnixNano": "1769811599135000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918\nmessage@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942\nt/get/<@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459\na@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528\nsY@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223938\nM@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:1:9806\nA@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223907\nasync*@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224415\nn@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2295\na@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2618\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224383\nq@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3696\n" + "stringValue": "message@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103\nmessage@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948\nt/get/<@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465\na@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529\nsY@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223932\nM@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:1:9786\nA@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223901\nasync*@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224409\nn@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2295\na@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2618\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224377\nq@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3696\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\\n\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\\n\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\\n\":\"15b8645cace346d9e6ceba56f882762f\",\"@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\\n\":\"9949ad0f7ff24b0affc3f595090658d9\",\"@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\\n\":\"4fb973c036e18b810ee3da31e51cd097\",\"@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\\n\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\",\"@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\\n\":\"8965f2228d245fa9a1ea8196a2783196\"}" + "stringValue": "{\"@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\\n\":\"1d128b39b01355ec232666eb51ed9fdb\",\"@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\\n\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\\n\":\"064fbb708a69758b5a0ab80f376cb08a\",\"@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\\n\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\\n\":\"5abe9f02e7f14cba35bf7920024817dc\",\"@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\\n\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\\n\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "D7A49BD72FC502D3FF108AFF2A3C3EFC" + "stringValue": "4DA785C557E697A0EF81126A26150526" } }, { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "C15B600A327810F939F7BCD9B9A2982D" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3014/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json index 5fd0cdf0f..481c2084d 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-handle-204-with-body-session.json @@ -60,7 +60,7 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" + "stringValue": "7BF8F624FD5FEBA4E35C90E7E2DCFB4D" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "b842c623ddf1eda82a4a1238301b960e", - "spanId": "5f6d64551abc14b2", + "traceId": "e348c39367f9e20c9649508af22f05ab", + "spanId": "eef6bdc63fbfaefc", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878238792000000", - "endTimeUnixNano": "1771878240176000000", + "startTimeUnixNano": "1771374173648000000", + "endTimeUnixNano": "1771374174271000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "245B46B2940CAC84E82A415B1942FBBF" + "stringValue": "A21CFCDD1BBE5C875B8FCF2D0C51694C" } }, { "key": "emb.tab_id", "value": { - "stringValue": "45B0A22F47C16BD81E5F17629872ACF4" + "stringValue": "7BF8F624FD5FEBA4E35C90E7E2DCFB4D" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 76 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 5 } } ], @@ -189,7 +183,7 @@ } ], "name": "click", - "timeUnixNano": "1771878239378000000", + "timeUnixNano": "1771374173801000000", "droppedAttributesCount": 0 }, { @@ -227,19 +221,19 @@ { "key": "emb.web_vital.id", "value": { - "stringValue": "v5-1771878238795-2784258440707" + "stringValue": "v5-1771374173649-7976689934426" } }, { "key": "emb.web_vital.delta", "value": { - "intValue": 322 + "intValue": 46 } }, { "key": "emb.web_vital.value", "value": { - "intValue": 322 + "intValue": 46 } }, { @@ -251,7 +245,7 @@ { "key": "emb.web_vital.attribution.timeToFirstByte", "value": { - "intValue": 46 + "intValue": 4 } }, { @@ -269,12 +263,12 @@ { "key": "emb.web_vital.attribution.elementRenderDelay", "value": { - "intValue": 276 + "intValue": 42 } } ], "name": "emb-web-vitals-report-LCP", - "timeUnixNano": "1771878239388000000", + "timeUnixNano": "1771374173805000000", "droppedAttributesCount": 0 }, { @@ -299,7 +293,7 @@ } ], "name": "click", - "timeUnixNano": "1771878239981000000", + "timeUnixNano": "1771374174232000000", "droppedAttributesCount": 0 } ], @@ -320,18 +314,18 @@ }, "spans": [ { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "4babdfb143f0d959", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "00aa9f9d4e929124", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878238405000000", - "endTimeUnixNano": "1771878238453000000", + "startTimeUnixNano": "1771374173580000000", + "endTimeUnixNano": "1771374173584000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -343,7 +337,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1963 + "intValue": 1970 } }, { @@ -351,12 +345,6 @@ "value": { "intValue": 6239 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -364,55 +352,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238405000000", + "timeUnixNano": "1771374173580000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238421000000", + "timeUnixNano": "1771374173582000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238421000000", + "timeUnixNano": "1771374173582000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238421000000", + "timeUnixNano": "1771374173582000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878238407000000", + "timeUnixNano": "1771374173580000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238421000000", + "timeUnixNano": "1771374173582000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238421000000", + "timeUnixNano": "1771374173582000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238453000000", + "timeUnixNano": "1771374173584000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238453000000", + "timeUnixNano": "1771374173584000000", "droppedAttributesCount": 0 } ], @@ -425,18 +413,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "d49aec762b8240b4", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "b6851ed6ce010590", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238469000000", - "endTimeUnixNano": "1771878238595000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173604000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -486,12 +474,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -499,49 +481,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238595000000", + "timeUnixNano": "1771374173603000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238595000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 } ], @@ -554,18 +536,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "12920c2ce4f0553c", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "90bba8a0a24b0fa0", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238469000000", - "endTimeUnixNano": "1771878238602000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173604000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -615,12 +597,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -628,49 +604,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173602000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238592000000", + "timeUnixNano": "1771374173603000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238602000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238602000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 } ], @@ -683,18 +659,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "127db2c40f753d1c", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "fb8e22770354ba41", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238469000000", - "endTimeUnixNano": "1771878238620000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173605000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -706,7 +682,7 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" + "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" } }, { @@ -750,12 +726,6 @@ "value": { "intValue": 2961 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -763,49 +733,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238469000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238591000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238591000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238591000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238591000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238591000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238619000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238620000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 } ], @@ -818,18 +788,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "063d3994f6eb644e", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "8052c30ebb96880d", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238471000000", - "endTimeUnixNano": "1771878238626000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173605000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -841,19 +811,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" + "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13566 + "intValue": 13546 } }, { @@ -871,25 +841,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 5048 + "intValue": 5032 } }, { "key": "http.response.size", "value": { - "intValue": 5348 + "intValue": 5332 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13566 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 13546 } } ], @@ -898,49 +862,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238594000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238594000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238622000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238626000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 } ], @@ -953,18 +917,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "d555fe54b1c901dd", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "dba2bfa0115824fd", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238471000000", - "endTimeUnixNano": "1771878238637000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173606000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -976,19 +940,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7636 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31075 + "intValue": 10426 } }, { @@ -1006,25 +970,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7636 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 7936 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31075 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10426 } } ], @@ -1033,49 +991,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238621000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238635000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238637000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 } ], @@ -1088,18 +1046,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "643ecf1fc29f236c", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "9ba42eaec8b448b3", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238471000000", - "endTimeUnixNano": "1771878238640000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173607000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1111,19 +1069,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" + "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 807 + "intValue": 7625 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1341 + "intValue": 31076 } }, { @@ -1141,25 +1099,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 807 + "intValue": 7625 } }, { "key": "http.response.size", "value": { - "intValue": 1107 + "intValue": 7925 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1341 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 31076 } } ], @@ -1168,49 +1120,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238625000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238637000000", + "timeUnixNano": "1771374173607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238640000000", + "timeUnixNano": "1771374173607000000", "droppedAttributesCount": 0 } ], @@ -1223,18 +1175,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "293449d1de621df9", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "19bab2f35947310b", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238471000000", - "endTimeUnixNano": "1771878238640000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173610000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1246,19 +1198,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" + "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41491 + "intValue": 41469 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162134 + "intValue": 162152 } }, { @@ -1276,25 +1228,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 41491 + "intValue": 41469 } }, { "key": "http.response.size", "value": { - "intValue": 41791 + "intValue": 41769 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162134 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 162152 } } ], @@ -1303,49 +1249,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238611000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238630000000", + "timeUnixNano": "1771374173607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238640000000", + "timeUnixNano": "1771374173610000000", "droppedAttributesCount": 0 } ], @@ -1358,18 +1304,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "f14aaa9281783179", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "f7fd3bb1b4012a21", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238470000000", - "endTimeUnixNano": "1771878238631000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173611000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1381,19 +1327,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/49c2078e705461b0.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 54464 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 191607 } }, { @@ -1411,25 +1357,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 54464 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 54764 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 191607 } } ], @@ -1438,49 +1378,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238612000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238630000000", + "timeUnixNano": "1771374173607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238631000000", + "timeUnixNano": "1771374173611000000", "droppedAttributesCount": 0 } ], @@ -1493,18 +1433,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "38fc4ff27a0568ee", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "2d3eb5441cc4b93f", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238471000000", - "endTimeUnixNano": "1771878238643000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173613000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1516,19 +1456,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" + "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70322 + "intValue": 70316 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224870 + "intValue": 224864 } }, { @@ -1546,25 +1486,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 70322 + "intValue": 70316 } }, { "key": "http.response.size", "value": { - "intValue": 70622 + "intValue": 70616 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224870 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 224864 } } ], @@ -1573,49 +1507,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238471000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238593000000", + "timeUnixNano": "1771374173604000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238594000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238594000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238625000000", + "timeUnixNano": "1771374173607000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238643000000", + "timeUnixNano": "1771374173613000000", "droppedAttributesCount": 0 } ], @@ -1628,18 +1562,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "5b6102f7621e9010", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "f3b4748c9202383f", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238470000000", - "endTimeUnixNano": "1771878238647000000", + "startTimeUnixNano": "1771374173589000000", + "endTimeUnixNano": "1771374173606000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1651,19 +1585,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54690 + "intValue": 810 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 192543 + "intValue": 1342 } }, { @@ -1681,25 +1615,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54690 + "intValue": 810 } }, { "key": "http.response.size", "value": { - "intValue": 54990 + "intValue": 1110 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 192543 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1342 } } ], @@ -1708,49 +1636,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238470000000", + "timeUnixNano": "1771374173589000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238612000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238612000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238612000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238613000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238613000000", + "timeUnixNano": "1771374173605000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238641000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238647000000", + "timeUnixNano": "1771374173606000000", "droppedAttributesCount": 0 } ], @@ -1763,18 +1691,18 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "e9c1113898ddf2c3", - "parentSpanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "8faf36db43b52286", + "parentSpanId": "a0a2c3c6cfc076b3", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878238492000000", - "endTimeUnixNano": "1771878238492000000", + "startTimeUnixNano": "1771374173592000000", + "endTimeUnixNano": "1771374173592000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1824,12 +1752,6 @@ "value": { "boolValue": true } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -1837,49 +1759,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878238492000000", + "timeUnixNano": "1771374173592000000", "droppedAttributesCount": 0 } ], @@ -1892,17 +1814,17 @@ "flags": 257 }, { - "traceId": "130b4925eb447acf950493b3761b7b77", - "spanId": "1796396d59c346e7", + "traceId": "a8f387dfdd4af91573aebc5ad1a58a2b", + "spanId": "a0a2c3c6cfc076b3", "name": "documentLoad", "kind": 1, - "startTimeUnixNano": "1771878238405000000", - "endTimeUnixNano": "1771878238836000000", + "startTimeUnixNano": "1771374173580000000", + "endTimeUnixNano": "1771374173650000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -1922,62 +1844,50 @@ "value": { "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, "events": [ - { - "attributes": [], - "name": "fetchStart", - "timeUnixNano": "1771878238405000000", - "droppedAttributesCount": 0 - }, { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878238699000000", + "timeUnixNano": "1771374173610000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878238752000000", + "timeUnixNano": "1771374173617000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878238752000000", + "timeUnixNano": "1771374173618000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878238835000000", + "timeUnixNano": "1771374173650000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878238835000000", + "timeUnixNano": "1771374173650000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878238836000000", + "timeUnixNano": "1771374173650000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878238729000000", + "timeUnixNano": "1771374173626000000", "droppedAttributesCount": 0 } ], @@ -1998,12 +1908,12 @@ }, "spans": [ { - "traceId": "95babc3aa1dc7b0efc52e629393ef17d", - "spanId": "0c43505006b213af", + "traceId": "ad6bb35a4e25e95c999c14b41a5b754a", + "spanId": "dc3f26ac0e14269c", "name": "HTTP GET", "kind": 3, - "startTimeUnixNano": "1771878239381000000", - "endTimeUnixNano": "1771878239406000000", + "startTimeUnixNano": "1771374173802000000", + "endTimeUnixNano": "1771374173807000000", "attributes": [ { "key": "component", @@ -2026,7 +1936,7 @@ { "key": "session.id", "value": { - "stringValue": "09B8F949B63E84D57433E383A6990A48" + "stringValue": "4B7574461E1B70E682E6A576873F2DA7" } }, { @@ -2098,12 +2008,6 @@ { "key": "http.request.body.size", "value": {} - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -2111,49 +2015,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878239381000000", + "timeUnixNano": "1771374173802000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json b/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json index 49d61392d..24c3148ec 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-send-log.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "98A1AD74B15B43E83D9EE02C98DC4E55" + "stringValue": "4F5918D5F317516E35677C3B30570C75" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878223131000000", - "observedTimeUnixNano": "1771878223132000000", + "timeUnixNano": "1769811594453000000", + "observedTimeUnixNano": "1769811594454000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:47918\nmessage@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3942\nt/get/<@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:1:3459\na@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:1:528\nsY@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223938\nM@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:1:9806\nA@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:223907\nasync*@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224415\nn@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2295\na@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:2618\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:1:224383\nq@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:4:3696\n" + "stringValue": "message@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:25103\nmessage@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3948\nt/get/<@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:1:3465\na@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:1:529\nsY@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161802\ns3/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:167691\ntD@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:30296\ns3@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:163036\nfC@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:199002\nfP@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:198822\nEventListener.handleEvent*s2@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162599\nsZ@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:161998\ns1/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162164\ns1@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:162109\nn.hydrateRoot@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:208348\nA/<@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223932\nM@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:1:9786\nA@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:223901\nasync*@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224409\nn@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2295\na@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:2618\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:1:224377\nq@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:940\nregisterChunk/<@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2189\nregisterChunk@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:2205\nasync*I@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:1682\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3684\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:4:3696\n" } }, { "key": "emb.js_file_bundle_ids", "value": { - "stringValue": "{\"@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:33\\n@http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js:4:126\\n\":\"0a378135be3d7ab847897e6b16fcaf9b\",\"@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:33\\n@http://localhost:3014/_next/static/chunks/05a277818cec3897.js:4:126\\n\":\"2f4eac69f9bba3d8890b6a982cfd89b2\",\"@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:33\\n@http://localhost:3014/_next/static/chunks/a212074f4223a562.js:4:126\\n\":\"15b8645cace346d9e6ceba56f882762f\",\"@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js:7:126\\n\":\"9949ad0f7ff24b0affc3f595090658d9\",\"@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:33\\n@http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js:8:126\\n\":\"4fb973c036e18b810ee3da31e51cd097\",\"@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:33\\n@http://localhost:3014/_next/static/chunks/6754bed9882942fe.js:4:126\\n\":\"540ee9cc33e8b8bcbe186e7e87c6ded6\",\"@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:33\\n@http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js:4:126\\n\":\"8965f2228d245fa9a1ea8196a2783196\"}" + "stringValue": "{\"@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:33\\n@http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js:4:126\\n\":\"1d128b39b01355ec232666eb51ed9fdb\",\"@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:33\\n@http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js:7:126\\n\":\"064fbb708a69758b5a0ab80f376cb08a\",\"@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:33\\n@http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js:8:126\\n\":\"5abe9f02e7f14cba35bf7920024817dc\",\"@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:33\\n@http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js:4:126\\n\":\"2a24f3120f67b4ae6fcb8f65c923f9b4\",\"@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:33\\n@http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js:4:126\\n\":\"3fc2c6a44ad1a88797fec086cb7aa53b\",\"@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:33\\n@http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js:4:126\\n\":\"a49e7d4dc2df893df4b3965e8a8b9f9b\",\"@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:33\\n@http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js:4:126\\n\":\"c1bc6ade880be1e4e9425eee88f20f98\"}" } }, { @@ -120,13 +120,13 @@ { "key": "log.record.uid", "value": { - "stringValue": "5EB5B3EE7740E96E4529D24B9B540F25" + "stringValue": "44B08159B006816646216379EC295DEB" } }, { "key": "session.id", "value": { - "stringValue": "D4E48D82A0227645CC5149D8F93E0955" + "stringValue": "4D1C864E351EE5B1317B63BD6F8CF0F9" } }, { @@ -138,12 +138,6 @@ "value": { "stringValue": "http://localhost:3014/" } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 1 diff --git a/tests/integration/tests/__golden__/firefox-next-16-app-session.json b/tests/integration/tests/__golden__/firefox-next-16-app-session.json index 0db6c1d2f..12c79ba70 100644 --- a/tests/integration/tests/__golden__/firefox-next-16-app-session.json +++ b/tests/integration/tests/__golden__/firefox-next-16-app-session.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "6EB5DFBB836153B5FCC48C9F8DDD04DF" + "stringValue": "1906F082A96CC0173969475D3F99342B" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,12 +85,12 @@ }, "spans": [ { - "traceId": "138165f6ac754c2fae9f721579626016", - "spanId": "2ed52230c6fb20f6", + "traceId": "b4d1553754c73282b8b0c5108d471e56", + "spanId": "69975f8295fbdc06", "name": "emb-session", "kind": 1, - "startTimeUnixNano": "1771878219336000000", - "endTimeUnixNano": "1771878220374000000", + "startTimeUnixNano": "1769811593634000000", + "endTimeUnixNano": "1769811593825000000", "attributes": [ { "key": "emb.type", @@ -107,7 +107,7 @@ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -125,13 +125,13 @@ { "key": "emb.experience_id", "value": { - "stringValue": "21BB0431CFACDEF80F0EC187C0015439" + "stringValue": "C00CCABCE17940B34D706D759AF7856A" } }, { "key": "emb.tab_id", "value": { - "stringValue": "6EB5DFBB836153B5FCC48C9F8DDD04DF" + "stringValue": "1906F082A96CC0173969475D3F99342B" } }, { @@ -155,13 +155,7 @@ { "key": "emb.sdk_startup_duration", "value": { - "intValue": 30 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 12 } } ], @@ -184,18 +178,18 @@ }, "spans": [ { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "b9de8d8fbc82a815", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "66694c383f01c967", + "parentSpanId": "52bc180ec96d5030", "name": "documentFetch", "kind": 1, - "startTimeUnixNano": "1771878218630000000", - "endTimeUnixNano": "1771878218855000000", + "startTimeUnixNano": "1769811593537000000", + "endTimeUnixNano": "1769811593549000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -207,7 +201,7 @@ { "key": "http.response_content_length", "value": { - "intValue": 1963 + "intValue": 1969 } }, { @@ -215,12 +209,6 @@ "value": { "intValue": 6239 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -228,55 +216,55 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218630000000", + "timeUnixNano": "1769811593537000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218825000000", + "timeUnixNano": "1769811593545000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218825000000", + "timeUnixNano": "1769811593545000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218825000000", + "timeUnixNano": "1769811593545000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "secureConnectionStart", - "timeUnixNano": "1771878218631000000", + "timeUnixNano": "1769811593537000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218827000000", + "timeUnixNano": "1769811593546000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878218827000000", + "timeUnixNano": "1769811593546000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878218854000000", + "timeUnixNano": "1769811593549000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878218855000000", + "timeUnixNano": "1769811593549000000", "droppedAttributesCount": 0 } ], @@ -289,18 +277,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "fc4570b89e1f3ced", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "ebc731807f52e344", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218912000000", - "endTimeUnixNano": "1771878219148000000", + "startTimeUnixNano": "1769811593556000000", + "endTimeUnixNano": "1769811593571000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -350,12 +338,6 @@ "value": { "intValue": 31288 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -363,49 +345,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219141000000", + "timeUnixNano": "1769811593570000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 } ], @@ -418,18 +400,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "852fd71a14756cd8", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "038d86748742bb25", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218913000000", - "endTimeUnixNano": "1771878219155000000", + "startTimeUnixNano": "1769811593556000000", + "endTimeUnixNano": "1769811593572000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -479,12 +461,6 @@ "value": { "intValue": 28388 } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" - } } ], "droppedAttributesCount": 0, @@ -492,49 +468,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219153000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219155000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 } ], @@ -547,18 +523,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "d57d76b0871a781a", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "a9d883cf421b94be", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218912000000", - "endTimeUnixNano": "1771878219158000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593571000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -570,19 +546,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/bbce354b5dfb5c4b.js" + "stringValue": "http://localhost:3014/_next/static/chunks/01b526bed3a9283d.css" } }, { "key": "http.response_content_length", "value": { - "intValue": 5048 + "intValue": 984 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 13566 + "intValue": 2961 } }, { @@ -600,25 +576,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 5048 + "intValue": 984 } }, { "key": "http.response.size", "value": { - "intValue": 5348 + "intValue": 1284 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 13566 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 2961 } } ], @@ -627,49 +597,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218912000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878219142000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878219145000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878219146000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593570000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219155000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219158000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 } ], @@ -682,18 +652,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "9986690cc78c8a5d", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "a88666b41e8ad9d2", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218913000000", - "endTimeUnixNano": "1771878219159000000", + "startTimeUnixNano": "1769811593556000000", + "endTimeUnixNano": "1769811593574000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -705,19 +675,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/2b9bfe9ac4b260a2.css" + "stringValue": "http://localhost:3014/_next/static/chunks/b2f16cac215c9526.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 984 + "intValue": 5032 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 2961 + "intValue": 13546 } }, { @@ -735,25 +705,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 984 + "intValue": 5032 } }, { "key": "http.response.size", "value": { - "intValue": 1284 + "intValue": 5332 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 2961 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 13546 } } ], @@ -762,49 +726,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878219141000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878219146000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878219147000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878219149000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219149000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219156000000", + "timeUnixNano": "1769811593574000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219159000000", + "timeUnixNano": "1769811593574000000", "droppedAttributesCount": 0 } ], @@ -817,18 +781,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "5ebf317086416ed7", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "135708521405c35d", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218913000000", - "endTimeUnixNano": "1771878219187000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593573000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -840,19 +804,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/6754bed9882942fe.js" + "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-313aa68692428cd9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 70322 + "intValue": 4162 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 224870 + "intValue": 10426 } }, { @@ -870,25 +834,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 70322 + "intValue": 4162 } }, { "key": "http.response.size", "value": { - "intValue": 70622 + "intValue": 4462 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 224870 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 10426 } } ], @@ -897,49 +855,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878219143000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878219146000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878219147000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878219149000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219149000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219156000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219187000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 } ], @@ -952,18 +910,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "39d9766feb8512d7", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "8a4d688fd5ea4910", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218913000000", - "endTimeUnixNano": "1771878219164000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593580000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -975,19 +933,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/f9f648d385f8b58a.js" + "stringValue": "http://localhost:3014/_next/static/chunks/1a40107c8f81cf89.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 41491 + "intValue": 7625 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 162134 + "intValue": 31076 } }, { @@ -1005,25 +963,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 41491 + "intValue": 7625 } }, { "key": "http.response.size", "value": { - "intValue": 41791 + "intValue": 7925 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 162134 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 31076 } } ], @@ -1032,49 +984,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878219143000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878219145000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878219146000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219148000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219155000000", + "timeUnixNano": "1769811593579000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219164000000", + "timeUnixNano": "1769811593580000000", "droppedAttributesCount": 0 } ], @@ -1087,18 +1039,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "07b7afeb0bdc28da", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "97568704e764f274", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218914000000", - "endTimeUnixNano": "1771878219159000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593582000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -1110,19 +1062,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/turbopack-5e3d2fd1914d9ec5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/80a1d7792d6b8a63.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 4162 + "intValue": 47298 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 10426 + "intValue": 169109 } }, { @@ -1140,25 +1092,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 4162 + "intValue": 47298 } }, { "key": "http.response.size", "value": { - "intValue": 4462 + "intValue": 47598 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 10426 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 169109 } } ], @@ -1167,49 +1113,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219149000000", + "timeUnixNano": "1769811593573000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219156000000", + "timeUnixNano": "1769811593577000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219159000000", + "timeUnixNano": "1769811593582000000", "droppedAttributesCount": 0 } ], @@ -1222,18 +1168,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "e8d1900650109202", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "53708f805de9aceb", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218914000000", - "endTimeUnixNano": "1771878219168000000", + "startTimeUnixNano": "1769811593556000000", + "endTimeUnixNano": "1769811593580000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -1245,19 +1191,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/a212074f4223a562.js" + "stringValue": "http://localhost:3014/_next/static/chunks/5f99eef3dd887119.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 7636 + "intValue": 810 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 31075 + "intValue": 1342 } }, { @@ -1275,25 +1221,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 7636 + "intValue": 810 } }, { "key": "http.response.size", "value": { - "intValue": 7936 + "intValue": 1110 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 31075 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 1342 } } ], @@ -1302,49 +1242,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593556000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219159000000", + "timeUnixNano": "1769811593576000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219168000000", + "timeUnixNano": "1769811593580000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219168000000", + "timeUnixNano": "1769811593580000000", "droppedAttributesCount": 0 } ], @@ -1357,18 +1297,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "615bdefde731e0cf", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "3783419819a20ba9", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218913000000", - "endTimeUnixNano": "1771878219167000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593581000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -1380,19 +1320,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/05a277818cec3897.js" + "stringValue": "http://localhost:3014/_next/static/chunks/4e441fcf341c9f93.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 807 + "intValue": 41469 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 1341 + "intValue": 162152 } }, { @@ -1410,25 +1350,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 807 + "intValue": 41469 } }, { "key": "http.response.size", "value": { - "intValue": 1107 + "intValue": 41769 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 1341 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 162152 } } ], @@ -1437,49 +1371,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218913000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219160000000", + "timeUnixNano": "1769811593572000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219167000000", + "timeUnixNano": "1769811593575000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219167000000", + "timeUnixNano": "1769811593581000000", "droppedAttributesCount": 0 } ], @@ -1492,18 +1426,18 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "ed89aded4e914916", - "parentSpanId": "c97476a1ee3e5913", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "c375fd936d53c8a9", + "parentSpanId": "52bc180ec96d5030", "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218914000000", - "endTimeUnixNano": "1771878219205000000", + "startTimeUnixNano": "1769811593555000000", + "endTimeUnixNano": "1769811593583000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { @@ -1515,19 +1449,19 @@ { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/_next/static/chunks/49cc7d37b1dd81a5.js" + "stringValue": "http://localhost:3014/_next/static/chunks/91dfa5dbb6135bb9.js" } }, { "key": "http.response_content_length", "value": { - "intValue": 54690 + "intValue": 70316 } }, { "key": "http.response_content_length_uncompressed", "value": { - "intValue": 192543 + "intValue": 224864 } }, { @@ -1545,25 +1479,19 @@ { "key": "http.response.body.size", "value": { - "intValue": 54690 + "intValue": 70316 } }, { "key": "http.response.size", "value": { - "intValue": 54990 + "intValue": 70616 } }, { "key": "http.response.decoded_body_size", "value": { - "intValue": 192543 - } - }, - { - "key": "app.surface.label", - "value": { - "stringValue": "Create Next App" + "intValue": 224864 } } ], @@ -1572,49 +1500,49 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593555000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domainLookupEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectStart", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "connectEnd", - "timeUnixNano": "1771878218914000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "requestStart", - "timeUnixNano": "1771878219155000000", + "timeUnixNano": "1769811593571000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseStart", - "timeUnixNano": "1771878219168000000", + "timeUnixNano": "1769811593575000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "responseEnd", - "timeUnixNano": "1771878219205000000", + "timeUnixNano": "1769811593583000000", "droppedAttributesCount": 0 } ], @@ -1627,41 +1555,66 @@ "flags": 257 }, { - "traceId": "c9b37ce54e4a6d161e075e218aa618c1", - "spanId": "c97476a1ee3e5913", - "name": "documentLoad", + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "0ab0257625ad03c3", + "parentSpanId": "52bc180ec96d5030", + "name": "resourceFetch", "kind": 1, - "startTimeUnixNano": "1771878218630000000", - "endTimeUnixNano": "1771878219344000000", + "startTimeUnixNano": "1769811593559000000", + "endTimeUnixNano": "1769811593559000000", "attributes": [ { "key": "session.id", "value": { - "stringValue": "8BD5E6E13208E1E7A9B1E5AF7C875B73" + "stringValue": "2491C77D03A19600914E00E39034EBBB" } }, { "key": "emb.type", "value": { - "stringValue": "ux.document_load" + "stringValue": "ux.resource_fetch" } }, { "key": "url.full", "value": { - "stringValue": "http://localhost:3014/" + "stringValue": "http://localhost:3014/favicon.ico" } }, { - "key": "user_agent.original", + "key": "http.response_content_length", + "value": { + "intValue": 0 + } + }, + { + "key": "http.request.initiator_type", + "value": { + "stringValue": "other" + } + }, + { + "key": "http.response.body.size", + "value": { + "intValue": 0 + } + }, + { + "key": "http.response.size", + "value": { + "intValue": 0 + } + }, + { + "key": "http.response.decoded_body_size", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "intValue": 0 } }, { - "key": "app.surface.label", + "key": "http.response.cors_opaque", "value": { - "stringValue": "Create Next App" + "boolValue": true } } ], @@ -1670,49 +1623,135 @@ { "attributes": [], "name": "fetchStart", - "timeUnixNano": "1771878218630000000", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "domainLookupStart", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "domainLookupEnd", + "timeUnixNano": "1769811593559000000", "droppedAttributesCount": 0 }, + { + "attributes": [], + "name": "connectStart", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "connectEnd", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "requestStart", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "responseStart", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + }, + { + "attributes": [], + "name": "responseEnd", + "timeUnixNano": "1769811593559000000", + "droppedAttributesCount": 0 + } + ], + "droppedEventsCount": 0, + "status": { + "code": 0 + }, + "links": [], + "droppedLinksCount": 0, + "flags": 257 + }, + { + "traceId": "e1ffc283f6a313279f380ba36c5671f8", + "spanId": "52bc180ec96d5030", + "name": "documentLoad", + "kind": 1, + "startTimeUnixNano": "1769811593537000000", + "endTimeUnixNano": "1769811593637000000", + "attributes": [ + { + "key": "session.id", + "value": { + "stringValue": "2491C77D03A19600914E00E39034EBBB" + } + }, + { + "key": "emb.type", + "value": { + "stringValue": "ux.document_load" + } + }, + { + "key": "url.full", + "value": { + "stringValue": "http://localhost:3014/" + } + }, + { + "key": "user_agent.original", + "value": { + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" + } + } + ], + "droppedAttributesCount": 0, + "events": [ { "attributes": [], "name": "domInteractive", - "timeUnixNano": "1771878219222000000", + "timeUnixNano": "1769811593594000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventStart", - "timeUnixNano": "1771878219235000000", + "timeUnixNano": "1769811593596000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domContentLoadedEventEnd", - "timeUnixNano": "1771878219236000000", + "timeUnixNano": "1769811593596000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "domComplete", - "timeUnixNano": "1771878219343000000", + "timeUnixNano": "1769811593636000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventStart", - "timeUnixNano": "1771878219343000000", + "timeUnixNano": "1769811593636000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "loadEventEnd", - "timeUnixNano": "1771878219344000000", + "timeUnixNano": "1769811593637000000", "droppedAttributesCount": 0 }, { "attributes": [], "name": "firstContentfulPaint", - "timeUnixNano": "1771878219241000000", + "timeUnixNano": "1769811593589000000", "droppedAttributesCount": 0 } ], diff --git a/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json b/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json index 0d758f0b4..a4843aa06 100644 --- a/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json +++ b/tests/integration/tests/__golden__/firefox-vite-6-es2015-handle-204-with-body-logs.json @@ -60,13 +60,13 @@ { "key": "emb.app_instance_id", "value": { - "stringValue": "23640AF6ADE34473173F31762FBC79A9" + "stringValue": "075583299F15724CD4D4E8D68F54A530" } }, { "key": "user_agent.original", "value": { - "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0.1) Gecko/20100101 Firefox/146.0.1" + "stringValue": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:144.0.2) Gecko/20100101 Firefox/144.0.2" } }, { @@ -85,8 +85,8 @@ }, "logRecords": [ { - "timeUnixNano": "1771878247963000000", - "observedTimeUnixNano": "1771878247964000000", + "timeUnixNano": "1769811602185000000", + "observedTimeUnixNano": "1769811602186000000", "severityNumber": 13, "severityText": "WARNING", "body": { @@ -102,13 +102,13 @@ { "key": "emb.stacktrace.js", "value": { - "stringValue": "message@http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:85335\nmessage@http://localhost:3001/platforms/vite-6/es2015/assets/index-IGwrUTJU.js:49:38095\nTO Date: Fri, 27 Feb 2026 13:35:32 -0300 Subject: [PATCH 5/6] chore: remove early return when page attributes are present --- .../PageLogRecordProcessor.ts | 26 +++++++++---------- .../PageSpanProcessor/PageSpanProcessor.ts | 20 +++++++------- 2 files changed, 21 insertions(+), 25 deletions(-) diff --git a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts index 7ba9e6fea..5d3ffbdf5 100644 --- a/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts +++ b/packages/web-sdk/src/processors/PageLogRecordProcessor/PageLogRecordProcessor.ts @@ -20,22 +20,20 @@ export class PageLogRecordProcessor implements LogRecordProcessor { } public onEmit(logRecord: SdkLogRecord): void { + // If the log already has page attributes, do not override them if ( - logRecord.attributes[KEY_EMB_PAGE_PATH] || - logRecord.attributes[KEY_EMB_PAGE_ID] + !logRecord.attributes[KEY_EMB_PAGE_PATH] || + !logRecord.attributes[KEY_EMB_PAGE_ID] ) { - // If the log already has page attributes, do not override them - return; - } - - const currentRoute = this._pageManager.getCurrentRoute(); - - if (currentRoute) { - logRecord.setAttribute(KEY_EMB_PAGE_PATH, currentRoute.path); - logRecord.setAttribute( - KEY_EMB_PAGE_ID, - this._pageManager.getCurrentPageId(), - ); + const currentRoute = this._pageManager.getCurrentRoute(); + + if (currentRoute) { + logRecord.setAttribute(KEY_EMB_PAGE_PATH, currentRoute.path); + logRecord.setAttribute( + KEY_EMB_PAGE_ID, + this._pageManager.getCurrentPageId(), + ); + } } const appSurfaceLabel = this._pageManager.getPageLabel(); diff --git a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts index 603b4fdc9..525e308cc 100644 --- a/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts +++ b/packages/web-sdk/src/processors/PageSpanProcessor/PageSpanProcessor.ts @@ -20,20 +20,18 @@ export class PageSpanProcessor implements SpanProcessor { // Attach page attributes at span end to capture the page where the span completed public onEnd(span: ReadableSpan): void { + // If the span already has page attributes, do not override them if ( - span.attributes[KEY_EMB_PAGE_PATH] || - span.attributes[KEY_EMB_PAGE_ID] + !span.attributes[KEY_EMB_PAGE_PATH] || + !span.attributes[KEY_EMB_PAGE_ID] ) { - // If the span already has page attributes, do not override them - return; - } - - const currentRoute = this._pageManager.getCurrentRoute(); - const currentPageId = this._pageManager.getCurrentPageId(); + const currentRoute = this._pageManager.getCurrentRoute(); + const currentPageId = this._pageManager.getCurrentPageId(); - if (currentRoute && currentPageId) { - span.attributes[KEY_EMB_PAGE_PATH] = currentRoute.path; - span.attributes[KEY_EMB_PAGE_ID] = currentPageId; + if (currentRoute && currentPageId) { + span.attributes[KEY_EMB_PAGE_PATH] = currentRoute.path; + span.attributes[KEY_EMB_PAGE_ID] = currentPageId; + } } const appSurfaceLabel = this._pageManager.getPageLabel(); From 12d9a4637fe36e1d639ecd6548dc13a283020a55 Mon Sep 17 00:00:00 2001 From: joaquin-diaz Date: Mon, 2 Mar 2026 11:32:28 -0300 Subject: [PATCH 6/6] chore: clear page label if none is set when the route changes --- .../src/managers/EmbracePageManager/EmbracePageManager.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts index 086303d4d..4bc98821c 100644 --- a/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts +++ b/packages/web-sdk/src/managers/EmbracePageManager/EmbracePageManager.ts @@ -44,6 +44,8 @@ export class EmbracePageManager implements PageManager { if (route.label) { this._pageLabel = route.label; + } else { + this._pageLabel = null; } };