phpspy icon indicating copy to clipboard operation
phpspy copied to clipboard

low-overhead sampling profiler for PHP 7+

Results 17 phpspy issues
Sort by recently updated
recently updated
newest added

It would be nice for peace-of-mind running in production if the `-S / --pause-process` flag was something you opted into and wasn't included in the production binary 🙃

https://msdn.microsoft.com/en-us/library/windows/desktop/ms680553(v=vs.85).aspx

This might help in reducing copy failures (e.g., #14)

I try use phpspy latest version in k8s php-fpm pod with already configured SYS_PTRACE. But got error ``` # ./phpspy -P php copy_proc_mem: Failed to copy executor_globals; err=Function not implemented...

Hi, We build our own PHP binaries for maintenance reason, and ZTS seems a good idea. Is ZTS support a possibility ? We just discovered phpspy thanks to Pyroscope, which...

Hi, I am debugging services php-fpm processes that hang up to scavenge culprits of why it might have happened, because usually when its stuck nothing is getting out. So when...

See https://github.com/adsr/phpspy/pull/111#issuecomment-1288298776 for context ```patch --- a/phpspy.c +++ b/phpspy.c @@ -428,6 +428,9 @@ int main_pid(pid_t pid) { if (opt_pause) rv |= pause_pid(pid); rv |= do_trace_ptr(&context); if (opt_pause) rv |= unpause_pid(pid);...