Azure function New Relic APM Service Not Creating after publish

Vijay Pratap Singh 0 Reputation points
2024-11-22T11:23:58.94+00:00

I have implemented new relic into azure function. It is working fine in local environment. I am getting logs and traces in APM service but after the deployment to the function app in azure. APM service is not getting created or working.
One more thing is that azure function is creating bin folder inside bin, is this because of this dual folder or anything else?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,414 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Abiola Akinbade 23,135 Reputation points
    2024-11-23T05:07:01.26+00:00

    Can you maybe check your app settings?

    I saw a similar issue answered here in this thread: https://learn.microsoft.com/en-us/answers/questions/2120309/azure-function-new-relic-apm-service-not-creating

    See: Azure Functions monitoring integration

    For the nested bin is likely due to your project configuration. Check your csproj

    <PropertyGroup>
        <OutputPath>bin\</OutputPath>
          #Remove duplicate path settings
    </PropertyGroup>
    

    You can mark it 'Accept Answer' and 'Upvote' if this helped you

    Regards,

    Abiola


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.