Manage App Performance with New Relic

Last modified: February 19, 2024

1 Introduction

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.

This how-to teaches you how to do the following:

  • Set up application performance management for your Mendix application on New Relic

2 Prerequisite

Before starting with this how-to, make sure you have completed the following prerequisite:

3 Setting Up

In this section, we will walk through all the steps to configure New Relic so that it can be used for the application performance diagnostics of your Mendix application.

3.1 Setting Up New Relic (On-Premises Only)

The following steps are only relevant for on-premises deployments (if you are deploying your Mendix application to Cloud Foundry, skip to the Cloud Foundry section below).

  1. Sign in to New Relic and create a new application:

  2. Select Java:

  3. Download the Java agent archive and save your license key:

  4. 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.

3.2 Setting Up Your Mendix Deployment

3.2.1 Cloud Foundry

Follow these buildpack instructions to set up New Relic for Cloud Foundry deployments: https://github.com/mendix/cf-mendix-buildpack#new-relic.

3.2.2 On-PremiseS Linux and Windows Service Console

To the javaopts list in your m2ee.yaml file, add “-javaagent:javaagent.jar”. For example:

1
2
3
4
5
 javaopts: [
   "-Dfile.encoding=UTF-8", "-Xmx512M", "-Xms512M",
   "-Djava.io.tmpdir=/srv/mendix/data/tmp",
   "-javaagent:/opt/newrelic/javaagent.jar"
 ]

3.2.3 Mendix Studio Pro (Development Mode Only)

  1. Open your Mendix application, and click Settings in the App Explorer.

  2. Open a configuration:

  3. In the Extra JVM parameters field on the Server tab, add: -javaagent:<path-to-javaagent>javaagent.jar:

4 Transactions

After completing the steps described above, all the requests handled by your Mendix application should become visible together with various graphs and statistics:

5 Databases

Your database calls and queries will now be visible on the database page:

6 Further Documentation

For more information on New Relic, see the New Relic documentation.

7 Read More