WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by 10up v1.3.3

New Relic Reporting for WordPress

New Relic APM reports for WordPress.

New Relic Reporting for WordPress

The facts

Rating
5★ from 4
Active installs
600+
Price
Free
Last updated
11 Aug 2025
Added
Dec 2016
Requires WP
6.3
Tested up to
WP 6.8.8
Requires PHP
8.0
Downloads
134,984

Our analysis

AI-assisted

New Relic Reporting for WordPress is a plugin that integrates with New Relic APM to enhance performance monitoring by adding WordPress-specific metrics. It captures valuable details such as templates, user information, request types, and transaction names, which can be queried in New Relic Insights. The plugin is suitable for users who want to gain deeper insights into their WordPress site's performance and user interactions.

After activation, the plugin adds a New Relic option under the Tools menu in the WordPress Dashboard, allowing users to configure settings such as capturing URL parameters and custom attributes. It supports various transaction queries, enabling detailed reporting based on user status, post IDs, templates, themes, and request types.

Best for: This plugin suits WordPress site administrators looking to monitor and analyse site performance through New Relic.

What it does well

  • Integrates with New Relic APM for enhanced performance monitoring
  • Captures WordPress-specific metrics like templates and user details
  • Allows querying of transactions in New Relic Insights
  • Includes options for custom error logging

Where it falls short

  • Limited information on specific features and configurations

Verdict

New Relic Reporting for WordPress provides useful metrics for performance analysis, particularly for those already using New Relic APM.

From the developer

10up's own description of New Relic Reporting for WordPress, lightly tidied.

WP New Relic (WPNR) is designed to use with New Relic APM which uses New Relic PHP Agent API to properly augment existing metrics with valuable WordPress details such as templates, users, request type, transaction names etc. This plugin is tested with PHP Agent 10.19.0.9.

New Relic is a trademark of New Relic, Inc.

Admin Settings

After activating the plugin, You will see a new option named New Relic under the Tools menu in your WordPress Dashboard. If you are running WordPress in Network Mode, the settings page will be found in your Network Dashboard.

Capture URL Parameters: If Capture URLs setting is enabled, it will capture URL parameters for displaying in transaction traces.

Basic Config

By default plugin will setup 3 configs.
– newrelic.appname
– newrelic.capture_params
– newrelic.framework (value is wordpress)

appname and capture_params config can be override using wp_nr_config filter. wp_nr_setup_config action hook can also be used to setup any extra config.

New Relic Custom Attributes

Certain useful custom attrribute (just like WordPress post meta) will be set for each event which can provide additional information using key-value pair. You can query events and filter them using these attributes in New Relic Insights. See NRQL reference for more details on how to query events.

  1. User

    User attribute is getting set using newrelic_set_user_attributes. If user is logged in, user ID will be set to user attribute and if not it will be set to not-logged-in.
    Ex: In New Relic Insights you can query transactions for non-logged in users as
    SELECT * FROM Transaction WHERE appName = ‘{appName}’ AND user = ‘not-logged-in’

  2. Post ID

    For single post, post ID will be set via post_id custom parameter in transaction.

    Ex: Get all transactions for a post ID 190.

    SELECT * FROM Transaction WHERE appName = ‘{appName}’ AND post_id = ‘190’

    One can also query for post view count for post 190.

    SELECT count(*) FROM Transaction WHERE appName = ‘{appName}’ AND post_id = ‘190’

  3. Template

    For each request, template being used getting set as template custom parameter in transaction.

    Ex: You can query all transactions for a particular template as following.

    SELECT * FROM Transaction WHERE appName = ‘{appName}’ AND template = ‘{Absolute Template Path}’

  4. Theme

    Current theme is getting set as theme custom parameter in transaction.

    Ex: Query all transactions for “Twenty Fifteen” theme.

    SELECT * FROM Transaction WHERE appName = ‘{appName}’ AND theme = ‘Twenty Fifteen’

  5. Request type

    There can be 3 type of requests namely web, ajax and cli. Current request type getting set as request_type custom parameter in transaction.
    Request type can be override using wp_nr_request_type filter.

    Ex: Get all transaction for “ajax” request type

    SELECT * FROM Transaction WHERE appName = ‘{appName}’ AND request_type = ‘ajax’

  6. Transaction Name

    Transaction name is getting set as per the main WP_Query parameters using newrelic_name_transaction.
    Possible values are Default Home Page, Front Page, Blog Page, Network Dashboard, Dashboard, Single – {post_type}, Page – {pagename}, Date Archive, Search Page, Feed, Archive – {post_type}, Category – {cat_name}, Tag – {tag_name}, Tax – {taxonomy} – {term}

  7. Custom Error Logging

    Using wp_nr_log_errors function, any plugin/theme can log errors/notices to New Relic for current transaction.
    Note: This function can be used more than once but only last use will be considered to log the error to New Relic. It’s limitation of PHP Agent API.

    wp_nr_log_errors( ‘Error message’, Exception $exception );

  8. Runtime of async tasks

    This plugin also tracks runtime of gearman async tasks. Gearman async task run for a particular hook and it’s runtime can be track using “wp_async_task-{hook}” custom attribute in New Relic Insights.

Issues

  1. PHP version
    PHP version 7.3.3 is known to cause issues with this plugin, updating to 7.3.11 or greater appears to resolve these issues. For more details, see issue#39.

  2. Have an issue to report?
    If you identify any errors or have an idea for improving the plugin, please open an issue. We’re excited to see what the community thinks of this project, and we would love your input!

Read the full description on the official page →

Tagged as