Reputation: 13367
I have set up new relic in azure (Web Sites > My App > Configuration > Monitoring Tools > Custom) and I have also installed the NuGet package: NewRelic.Azure.Websites. Then I changed my web config app settings to this:
<add key="NewRelic.AppName" value="My Website" />
and in the new relic config file, I changed this:
<application />
to this:
<application>
<name>My Website</name>
</application>
I have disabled Always On and still I do not get any data. Does anyone know why?
Upvotes: 1
Views: 206
Reputation: 13367
It was due to installing the 32bit through NuGet instead of the 64bit
Upvotes: 0
Reputation: 15603
Did you add the Application Settings according to the NewRelic documentation?
Remember that if you are using ASPNet 5 /Core 1.0, NewRelic is not yet supported.
Upvotes: 1