title | category | tags |
---|---|---|
Manage Application Performance with New Relic |
Monitoring & Troubleshooting |
To ensure your applications run smoothly, they need to be actively monitored so that the information is available in order to do the following:
- Avoid performance problems
- Diagnose performance problems when they occur
New Relic is a flexible application performance management tool that provides information to help you achieve the above goals.
After using this how-to, you will know how to do the following:
- How to set up application performance management for your Mendix application on New Relic
Before starting with this how-to, make sure you have completed the following prerequisite:
- Create a New Relic account by signing up here: https://newrelic.com/signup
In this section, we will walk through all the steps to configure New Relic so that it can be used for application performance monitoring of your Mendix application.
The following steps are only relevant for on-premises deployments (skip to 2.2.1 Cloud Foundry if you are deploying your Mendix application to Cloud Foundry).
-
Log in to New Relic and create a new application:
-
Select Java:
-
Download the Java agent archive and save your license key:
-
Add your license key to the newrelic.yml file from the downloaded archive as described here: https://docs.newrelic.com/docs/agents/java-agent/installation/java-agent-manual-installation#h2-download-files.
Follow these build pack instructions to set up New Relic for Cloud Foundry deployments: https://github.com/mendix/cf-mendix-buildpack#new-relic.
To the javaopts
list in your m2ee.yaml file, add "-javaagent:javaagent.jar". For example:
javaopts: [
"-Dfile.encoding=UTF-8", "-XX:MaxPermSize=128M", "-Xmx512M", "-Xms512M",
"-Djava.io.tmpdir=/srv/mendix/data/tmp",
"-javaagent:/opt/newrelic/javaagent.jar"
]
-
Open your Mendix application, and click on Settings in the Project Explorer:
-
Open a configuration:
-
In the Extra JVM parameters field on the Server tab, add "-javaagent:javaagent.jar":
After completing the steps described above, all the requests handled by your Mendix application should become visible together with various graphs and statistics:
Your database calls and queries will now be visible on the database page:
For more information on New Relic, see the New Relic documentation here: https://docs.newrelic.com/.