How to configure the number of method calls to be tracked in the trace details in PHP applications?
The first 1000 methods that exceed the method threshold are tracked by default, after which only the external calls are tracked.
You can modify this by changing the zpa.additional_buffer directive in the zpa.ini (Linux) or php.ini (Windows) file.
Default configuration:
- In the zpa.ini (Linux) or php.ini (Windows) file, set
zpa.additional_buffer = 0

For example:
If the value of zpa.additional_buffer is 0, it indicates that the first 1000 methods will be tracked; if it is 2, it indicates that the first 1002 methods will be tracked; and if it is 5, it indicates that the first 1005 methods will be tracked.
New to ADSelfService Plus?
Related Articles
PHP Monitor Troubleshooting
PHP Monitor Errors and Troubleshooting Guide Check if the phpstats.php file in the webserver's document root. Ensure there are no modifications done in phpstats.php file Check if the given PHP path is correct. Retry with the "SSL is enabled" option ...
How to install the APM Insight PHP Agent in an Azure Web App?
Follow these steps to install and configure the APM Insight PHP Agent in an Azure Web App. Step 1: Create a deployment script Navigate to the directory /home/apm/ (create it if it doesn’t exist). Create a new shell script named apm-phpagent-deploy.sh ...
How to set the PHP path during agent installation?
This is only applicable to the agent versions 4.2 and above. For Linux Step 1: Download the installation script. wget -O InstallAgentPHP.zip https://www.manageengine.com/products/applications_manager/54974026/InstallDataExporter.zip && unzip ...
How to configure the stack depth of traces in PHP applications?
The default stack depth of traces is 15. You can change this by modifying the zpa.stack_depth directive in the zpa.ini (Linux) or php.ini (Windows). Default configuration: In the zpa.ini (Linux) or php.ini (Windows), zpa.stack_depth = 15 Note: The ...
How to enable and disable distributed tracing in PHP applications?
To enable distributed tracing, set the "zpa.capture distributed trace" directive to "1" in the zpa.ini (Linux) or php.ini (Windows). Similarly, to disable, set to "0." To enable distributed tracing: In the zpa.ini (Linux) or php.ini (Windows), ...