From ee1b7928f5a2507ce7d1767e7e508f7424657c4c Mon Sep 17 00:00:00 2001 From: Jay Porter Date: Mon, 20 Jul 2026 17:15:59 +1000 Subject: [PATCH] docs: clarify New Relic browser monitoring auto-insertion Clarify that enabling NEWRELIC_BROWSER_MONITORING_ON only enables automatic JavaScript insertion and does not guarantee successful instrumentation. Note that manual insertion may be required when the application sets a Content-Length header. --- docs/docker-images/php-fpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docker-images/php-fpm.md b/docs/docker-images/php-fpm.md index 013aec945b..9b88e0663e 100644 --- a/docs/docker-images/php-fpm.md +++ b/docs/docker-images/php-fpm.md @@ -87,7 +87,7 @@ variables](../concepts-advanced/environment-variables.md). | :----------------------------------- | :-------- | :------------------------------------------------------------------------------------------------------------------------------------------------------- | | NEWRELIC_ENABLED | false | Enable NewRelic performance monitoring, needs `NEWRELIC_LICENSE` be configured. | | NEWRELIC_LICENSE | (not set) | NewRelic license to be used. Important: `NEWRELIC_ENABLED` needs to be set to`true` in order for NewRelic to be enabled. | -| NEWRELIC_BROWSER_MONITORING_ENABLED | true | This enables auto-insertion of the JavaScript fragments for NewRelic browser monitoring. Important: `NEWRELIC_ENABLED` needs to be set to`true` in order for NewRelic to be enabled. | +| NEWRELIC_BROWSER_MONITORING_ENABLED | true | This enables auto-insertion of the JavaScript fragments for NewRelic browser monitoring. Important: `NEWRELIC_ENABLED` needs to be set to `true` in order for NewRelic to be enabled. Auto-insertion is not guaranteed to work in all cases, such as when the application sets a Content-Length header; manual insertion may be required. | | NEWRELIC_DISTRIBUTED_TRACING_ENABLED | false | This enables distributed tracing. Important: `NEWRELIC_ENABLED` needs to be set to`true` in order for NewRelic to be enabled. | | PHP_APC_ENABLED | 1 | Can be set to `0` to disable [APC](https://www.php.net/manual/en/apcu.configuration.php). | | PHP_APC_SHM_SIZE | 32m | The size of each shared memory segment given. |