These are the steps to configure Atatus for PHP with Bitnami.
Download the Atatus php agent tarball from Atatus dashboard.
Install Atatus PHP agent
copytar -xzvf atatus-php-x-x-x.tar.gz cd atatus-php-x-x-x sudo ATATUS_LICENSE_KEY="APM_LIC_KEY" ATATUS_APP_NAME="YOUR_APP_NAME" bash install.sh
Create new Atatus configuration file: atatus.ini.
copycd atatus-php-x-x-x sudo cp ./usr/lib/atatus-php/atatus.ini.template ./atatus.ini sudo vi ./atatus.ini
Set your license key and app name inside atatus.ini file.
copyatatus.license_key = "APM_LIC_KEY" atatus.app_name = "PHP App"
Append
atatus.ini
tophp.ini
copysudo cp /opt/bitnami/php/etc/php.ini /opt/bitnami/php/etc/backup_php.ini sudo cat atatus.ini >> /opt/bitnami/php/etc/php.ini
Restart the whole server (restarting apache will not work).
copysudo reboot
Check that Atatus is running in the machine:
copyphp -i | grep atatus ps ax | grep atatus