Hi @tlugo, thank you for your reply.
We use PHP 7.4, with the latest version of the NewRelic agent and the Database is the MariaDB, we run WooCommerce.
There is no DENY-NEW-METRICS.
Our variables
php_value[newrelic.enabled] = true
php_value[newrelic.license] = {{env "NEWRELIC_LICENSE"}}
php_value[newrelic.appname] = {{env "DOMAIN"}}
php_value[newrelic.browser_monitoring.auto_instrument] = false
php_value[newrelic.daemon.address] = 127.0.0.1:8136
php_value[newrelic.daemon.location] = /usr/bin/newrelic-daemon
php_value[newrelic.logfile] = /dev/null
php_value[newrelic.loglevel] = error
Our setup
set -eo pipefail
curl -L https://download.newrelic.com/php_agent/release/newrelic-php5-9.21.0.311-linux.tar.gz | tar -C /tmp -zx &&
export NR_INSTALL_USE_CP_NOT_LN=1 &&
export NR_INSTALL_SILENT=1 &&
/tmp/newrelic-php5-*/newrelic-install install
rm -rf /tmp/newrelic-php5-* /tmp/nrinstall*
echo "newrelic.browser_monitoring.auto_instrument = false" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.daemon.address = 127.0.0.1:8136" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.daemon.logfile = /dev/null" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.logfile = /dev/null" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.loglevel = error" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.daemon.dont_launch = 3" >>/etc/php/7.4/fpm/conf.d/newrelic.ini
echo "newrelic.daemon.dont_launch = 3" >>/etc/newrelic/newrelic.cfg
We run the agent with the following command line
/usr/bin/newrelic-daemon --watchdog-foreground --logfile /dev/null -f --address=127.0.0.1:8136