How to configure the number of method calls to be tracked in the trace details in PHP applications?

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:
  1. 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 is no modifications done in phpstats.php file Check if the correct PHP path is given. Retry with the "SSL is enabled" option ...
                    • 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), ...
                    • How to configure Prometheus inside Openshift to scrape necessary metrics for Applications Manager?

                      To setup Prometheus inside a Openshift Cluster and scrape metrics for monitoring the same in Applications Manager, kindly follow the steps given below: Create a new Project "monitor" inside the Desired Cluster to be monitored using the below command. ...
                    • Authentication Methods in Applications Manager

                      Authentication involves validating an incoming user to facilitate the access to a specific resource. There are various authentication methods that you can use - based on the requirements and usage. In recent times, numerous organizations are ...