This assumes you already have a NewRelic license key handy to use in your configuration. There are a few entries that you will need to change/add to allow for complete coverage of New Relic for Integrify. Make sure you adhere to each particular file's syntax when making the changes.:
- \integrify\app\webserver\server-config.json
"new_relic_license_key": "YOUR_LICENSE_KEY_HERE",
"new_relic_app_name": "Integrify",
"new_relic_agent_enabled":true - \integrify\app\weberver\web.config
<configuration>
<appSettings>
<add key="NewRelic.agentEnabled" value="true" />
<add key="NewRelic.AppName" value="Integrify" />
</appSettings>
</configuration> - \integrify\app\settings\settings.config
<appSettings>
<add key="NewRelic.agentEnabled" value="true" />
<add key="NewRelic.AppName" value="Integrify"/>
</appSettings>
In addition, you will need to run the .net NewRelic Installer: https://download.newrelic.com/dot_net_agent/latest_release/ as well as the node.js agent, whcih can be done from an administrative command prompt in the integirfy\app\webserver directory, with 'npm install newrelic'. For troubleshooting the NewRelic agent installations, see their respective documentation: https://docs.newrelic.com/docs/agents/net-agent and https://www.npmjs.com/package/newrelic
Comments
0 comments
Please sign in to leave a comment.