@@ -149,7 +149,7 @@ public void Test_SimpleInvocationMode()
149
149
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "cloud.resource_id" , out var cloudResourceIdValue ) ) ;
150
150
Assert . Equal ( "/subscriptions/subscription_id/resourceGroups/my_resource_group/providers/Microsoft.Web/sites/IntegrationTestAppName/functions/HttpTriggerFunctionUsingSimpleInvocation" , cloudResourceIdValue ) ;
151
151
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "faas.name" , out var faasNameValue ) ) ;
152
- Assert . Equal ( "HttpTriggerFunctionUsingSimpleInvocation" , faasNameValue ) ;
152
+ Assert . Equal ( "IntegrationTestAppName/ HttpTriggerFunctionUsingSimpleInvocation" , faasNameValue ) ;
153
153
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "faas.trigger" , out var faasTriggerValue ) ) ;
154
154
Assert . Equal ( "http" , faasTriggerValue ) ;
155
155
@@ -284,7 +284,7 @@ public void Test_PipelineMode()
284
284
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "cloud.resource_id" , out var cloudResourceIdValue ) ) ;
285
285
Assert . Equal ( "/subscriptions/subscription_id/resourceGroups/my_resource_group/providers/Microsoft.Web/sites/IntegrationTestAppName/functions/HttpTriggerFunctionUsingAspNetCorePipeline" , cloudResourceIdValue ) ;
286
286
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "faas.name" , out var faasNameValue ) ) ;
287
- Assert . Equal ( "HttpTriggerFunctionUsingAspNetCorePipeline" , faasNameValue ) ;
287
+ Assert . Equal ( "IntegrationTestAppName/ HttpTriggerFunctionUsingAspNetCorePipeline" , faasNameValue ) ;
288
288
Assert . True ( firstTransaction . IntrinsicAttributes . TryGetValue ( "faas.trigger" , out var faasTriggerValue ) ) ;
289
289
Assert . Equal ( "http" , faasTriggerValue ) ;
290
290
0 commit comments