@@ -91,7 +91,6 @@ function _trackLCP(reportAllChanges: boolean): void {
91
91
const startTime = msToSec ( entry . startTime ) ;
92
92
__DEBUG_BUILD__ && logger . log ( '[Measurements] Adding LCP' ) ;
93
93
_measurements [ 'lcp' ] = { value : metric . value , unit : 'millisecond' } ;
94
- _measurements [ 'mark.lcp' ] = { value : timeOrigin + startTime , unit : 'second' } ;
95
94
_lcpEntry = entry as LargestContentfulPaint ;
96
95
} , reportAllChanges ) ;
97
96
}
@@ -108,7 +107,6 @@ function _trackFID(): void {
108
107
const startTime = msToSec ( entry . startTime ) ;
109
108
__DEBUG_BUILD__ && logger . log ( '[Measurements] Adding FID' ) ;
110
109
_measurements [ 'fid' ] = { value : metric . value , unit : 'millisecond' } ;
111
- _measurements [ 'mark.fid' ] = { value : timeOrigin + startTime , unit : 'second' } ;
112
110
} ) ;
113
111
}
114
112
@@ -157,12 +155,10 @@ export function addPerformanceEntries(transaction: Transaction): void {
157
155
if ( entry . name === 'first-paint' && shouldRecord ) {
158
156
__DEBUG_BUILD__ && logger . log ( '[Measurements] Adding FP' ) ;
159
157
_measurements [ 'fp' ] = { value : entry . startTime , unit : 'millisecond' } ;
160
- _measurements [ 'mark.fp' ] = { value : startTimestamp , unit : 'second' } ;
161
158
}
162
159
if ( entry . name === 'first-contentful-paint' && shouldRecord ) {
163
160
__DEBUG_BUILD__ && logger . log ( '[Measurements] Adding FCP' ) ;
164
161
_measurements [ 'fcp' ] = { value : entry . startTime , unit : 'millisecond' } ;
165
- _measurements [ 'mark.fcp' ] = { value : startTimestamp , unit : 'second' } ;
166
162
}
167
163
break ;
168
164
}
0 commit comments