Most PHP agent configuration variables can be set on a per-directory basis. This option is often used when there is a single web server serving multiple applications, and you want to adjust settings (for example, the app name) on an application-by-application basis.
The process for setting per-directory values depends on the environment. This document describes the three most common environments:
When using the PHP module, Apache provides two mechanisms for setting PHP variables outside the INI file:
Use the syntax from the INI file examples when your web server serves up multiple domains. To view each of these domains separately in New Relic:
For your main domain, set newrelic.appname = "My Main Domain" in your global INI file.
Override the value for each of the virtual hosts by adding php_value entries as part of your virtual host configuration.
Important
Ensure you use the proper module name for your PHP install. Replace PHP_MODULE in the examples below with the name of the installed PHP5 module. This name depends on the Linux and/or PHP distribution being used. For example, common names include php5_module, mod_php5, php_module, etc. Capitalization may vary.
For Apache servers, you can find the module names in one of the following ways. Each will generate a list of installed modules.
From the command line, run:
bash
$
apachectl -t-D DUMP_MODULES
OR
From within a webpage, use:
<?php
print_r(apache_get_modules());
?>
Here is an example of separating domains, where PHP_MODULE is the name of your PHP5 module.
<VirtualHost 192.168.42.43>
ServerName www.myvhost1.com
DocumentRoot"/path/to/vhost1/"
...
<IfModule PHP_MODULE>
php_value newrelic.appname "Virtual Host 1"
</IfModule>
</VirtualHost>
<VirtualHost 192.168.123.45>
ServerName www.myvhost2.com
DocumentRoot"/path/to/vhost2/"
...
<IfModule PHP_MODULE>
php_value newrelic.appname "Virtual Host 2"
</IfModule>
</VirtualHost>
In the above example, newrelic.appname is set to a different value for each virtual host.
For string and number values, use php_value name VALUE, where:
name is the name of the INI setting to modify as listed in the PHP INI settings.
VALUE is the value you want to set to for that particular virtual host.
Be sure to surround string values in quotes marks ".
If you want to change a boolean setting, use the syntax php_flag name VALUE, where name is the variable name as listed in the PHP INI settings, and VALUE is either on or off.
To disable the New Relic agent completely for a virtual host, use a boolean flag:
<VirtualHost 192.168.56.78>
ServerName www.myvhost3.com
DocumentRoot"/path/to/vhost3/"
...
<IfModule PHP_MODULE>
php_flag newrelic.enabled off
</IfModule>
</VirtualHost>
Use the syntax from the INI file examples inside an .htaccess file. For example:
php_value newrelic.appname "My Blog App"
This allows you to control settings on a per-directory basis from within the directories.
In this example, your web server has its document root at /data/webroot. You also have two sub-directories for specialized applications:
Your /data/webroot/blog contains a blog application.
Your /data/webroot/shop contains a shopping cart application.
To have all three portions of your site reported as distinct applications in the New Relic UI:
Set the name of your main application in your INI file.
Override that name using an .htaccess file in each of the specialized directories.
Any part of your web server (for example, /data/webroot/something) that does not have a specific .htaccess file will use the global application name defined in the INI file.
Important
The .htaccess file must be in the top-level directory for that application. Objects in that directory, or its subdirectories, will use the value specified in the .htaccess file.
The FastCGI Process Manager (PHP-FPM) is dedicated to PHP. It spawns a number of worker processes that wait for requests. It increases performance by not re-initializing the PHP engine on each invocation, allowing each process to deal with a number of requests before it recycles.
When using PHP-FPM, there are two mechanisms for setting PHP variables outside the INI file and one special technique for NGINX:
Important
Changing variables on a per-directory basis can be more difficult if you use PHP-FPM. You must use multiple PHP-FPM pools, one for each virtual host or unique application.
A pool is a dedicated set of worker children that will only serve requests for that pool. Because it requires dedicated worker children, PHP-FPM scales poorly if you have a large number of virtual hosts or applications for which you want to set individual options.
To configure PHP-FPM on a per-directory basis:
Set the main application name in the INI file.
Set up two pools for the two additional applications.
Override the application name setting in those pools.
Each pool has to have a unique connection mechanism (so you can identify which pool to use in your web server configuration file). Here is an example of php-fpm.conf:
[app1]
listen=/tmp/pool-app1.sock
php_value[newrelic.appname]="My App 1"
[app2]
listen=/tmp/pool-app2.sock
php_value[newrelic.appname]="My App 2"
[app3]
listen=/tmp/pool-app3.sock
php_flag[newrelic.enabled]=off
The general format of the per-pool variable settings is php_value[name] = VALUE for string or numeric variables, or php_flag[name] = VALUE for boolean values. Always surround string values with quote marks ". Boolean values must be either on or off.
Once the configuration file is set up, the web server must be instructed to use the different pools for different parts of the website. For more information, refer to the documentation for your web server.
You can use the syntax from the INI file example for CGI/FastCGI in a .user.ini file. This is similar to a .htaccess file for Apache but is unique to PHP-FPM. The directory that PHP is executed in is scanned for a .user.ini file. More information about this feature is available in the PHP user.ini files documentation.
Change the name of the app using the following steps In the root directory of the web page.
Create the .user.ini file
Add the setting you wish to change newrelic.appname = "New Appname"
Save the file.
By default, the .user.ini file is read every five minutes so no restart is necessary
This is useful in the following scenarios:
The server config doesn't work. In NGINX/PHP-FPM setup, there can be a lack of communication between FastCGI and PHP and the information from fastcgi_param PHP_VALUE newrelic.appname="Appname"
never reaches PHP.
The .htaccess doesn't work, such as where PHP is implemented with suPHP
Important
This section applies only to PHP 5.3.3 or higher.
Here is a small fragment of an NGINX config file showing the general procedure to pass values to your FastCGI manager based on an NGINX location.
Although we recommend changing the application name with global or per-directory INI settings, in some cases that may not be possible. For example, provider limitations may prevent you from modifying configuration files.
Before getting started, we recommend you read the API call guidelines for newrelic_set_appname() to ensure the most complete capture of transaction traces assigned to your application name.
If you don't have access to the code for your application, or if you need to isolate your applications to their own virtual hosts for other reasons, then use the following per-directory settings to override any configuration file settings.
Roll-up application names
If you want to have an overall view of how the server is performing across all virtual hosts or all applications, it is convenient to be able to report to more than one application at a time. For example, report to a virtual host specific application as well as a roll-up application.
To do this, set more than one application name for the newrelic.appname parameter by separating each application name with a semicolon. The primary application name is first, and the secondary application names next. You can define up to two extra application names.