r3plica
r3plica

Reputation: 13367

New Relic, Azure Web, c# Web API - no data

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

Answers (2)

r3plica
r3plica

Reputation: 13367

It was due to installing the 32bit through NuGet instead of the 64bit

Upvotes: 0

Matias Quaranta
Matias Quaranta

Reputation: 15603

Did you add the Application Settings according to the NewRelic documentation?

enter image description here

Remember that if you are using ASPNet 5 /Core 1.0, NewRelic is not yet supported.

Upvotes: 1

Related Questions