File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
packages/integrations/src Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ const BROWSER_TRACING_GETTER = ({
19
19
id : 'BrowserTracing' ,
20
20
} as any ) as IntegrationClass < Integration > ;
21
21
22
+ const VUE_OP = 'ui.vue' ;
23
+
22
24
/** Global Vue object limited to the methods/attributes we require */
23
25
interface VueInstance {
24
26
config : {
@@ -268,7 +270,7 @@ export class Vue implements Integration {
268
270
if ( transaction ) {
269
271
this . _rootSpan = transaction . startChild ( {
270
272
description : 'Application Render' ,
271
- op : 'vue' ,
273
+ op : VUE_OP ,
272
274
} ) ;
273
275
}
274
276
// Use functionality from @sentry /tracing
@@ -277,7 +279,7 @@ export class Vue implements Integration {
277
279
if ( activeTransaction ) {
278
280
this . _rootSpan = activeTransaction . startChild ( {
279
281
description : 'Application Render' ,
280
- op : 'vue' ,
282
+ op : VUE_OP ,
281
283
} ) ;
282
284
}
283
285
}
@@ -309,7 +311,7 @@ export class Vue implements Integration {
309
311
if ( this . _rootSpan ) {
310
312
spans [ operation ] = this . _rootSpan . startChild ( {
311
313
description : `Vue <${ name } >` ,
312
- op : operation ,
314
+ op : ` ${ VUE_OP } . ${ operation } ` ,
313
315
} ) ;
314
316
}
315
317
} ) ;
You can’t perform that action at this time.
0 commit comments