# php-spx **Repository Path**: mirrors_glensc/php-spx ## Basic Information - **Project Name**: php-spx - **Description**: A simple & straight-to-the-point PHP profiling extension with its built-in web UI - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SPX - A simple profiler for PHP [![Build Status](https://travis-ci.org/NoiseByNorthwest/php-spx.svg?branch=master)](https://travis-ci.org/NoiseByNorthwest/php-spx) ![Supported PHP versions: 5.6 .. 7.x](https://img.shields.io/badge/php-5.6--7.4-blue.svg) ![Supported platforms: GNU/Linux 64-bit, macOS 64-bit](https://img.shields.io/badge/platform-GNU/Linux%20|%20macOS%20-yellow) [Click here for a live demo of the analysis screen](https://noisebynorthwest.github.io/php-spx/demo/report.html?key=spx-full-20191229_175636-06d2fe5ee423-3795-233665123) ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as.apng) ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/43e3ffe185a1dcec70e7c8ced36acfdf316bae65/php-spx/doc/fp1.gif) SPX, which stands for _Simple Profiling eXtension_, is just another profiling extension for PHP. It differentiates itself from other similar extensions as being: * totally free and confined to your infrastructure (i.e. no data leaks to a SaaS). * very simple to use: just set an environment variable (command line) or switch on a radio button (web page) to profile your script. Thus, you are free of: * manually instrumenting your code (Ctrl-C a long running command line script is even supported). * using a dedicated browser extension or command line launcher. * [multi metrics](#available-metrics) capable: 21 currently supported (various time metrics, memory, included files, objects in use, I/O...). * able to collect data without losing context. For example Xhprof (and potentially its forks) aggregates data per caller / callee pairs, which implies the loss of the full call stack and forbids timeline or Flamegraph based analysis. * shipped with its [web UI](#web-ui) which allows to: * enable / configure profiling for the current browser session * list profiled script reports * select a report for in-depth analysis, featuring these interactive visualizations: * timeline (scale to millions of function calls) * flat profile * Flamegraph ## Requirements Platforms support is currently quite limited. Feel free to open an issue if your platform is not supported. Current requirements are: * x86-64 * **GNU/Linux** or **macOS** * zlib dev package (e.g. zlib1g-dev on Debian based distros) * PHP 5.6 & 7+ * Non-ZTS (threaded) build of PHP (ZTS support is theoretical) ## Installation ### Prerequisites * PHP development package (corresponding to your installed PHP version). * zlib development package: * For Debian based distros (including Ubuntu, Kubuntu...), just run: `sudo apt-get install zlib1g-dev`. ### Install the extension ```shell git clone https://github.com/NoiseByNorthwest/php-spx.git cd php-spx phpize ./configure make sudo make install ``` Then add `extension=spx.so` to your *php.ini*, or in a dedicated *spx.ini* file created within the include directory. You may also want to override [default SPX configuration](#configuration) to be able to profile a web page, with [this one](#private-environment) for example for a local development environment. ### Linux, PHP-FPM & I/O stats On GNU/Linux, SPX uses procfs (i.e. by reading files under `/proc` directory) to get I/O stats of the current thread. This is what is done under the hood when you select at least one of these 3 metrics: `io`, `ior` or `iow`. But, on most PHP-FPM setups, you will have a permission issue preventing SPX to open `/proc/self/task//io`. This is due to the fact that PHP-FPM master process runs as root when child processes run as another unprivileged user. When this is the case, the `process.dumpable = yes` line must be added to the FPM pool configuration so that child processes will be able to read `/proc/self/task//io`. ## Development status This is still **experimental**. API might change, features might be added or dropped, or development could be frozen. You can still safely use it in a **non-production** environment. Contributions are welcome but be aware of the experimental status of this project and **please follow the contribution rules** described here: [CONTRIBUTING.md](CONTRIBUTING.md) ## Basic usage ### Web page Assuming a development environment with the configuration [described here](#private-environment) and your application is accessible via `http://localhost`. Just open with your browser the following URL: `http://localhost/?SPX_KEY=dev&SPX_UI_URI=/` to access to the web UI [control panel](#control-panel). _N.B.: I assume `http://localhost/` is served by a PHP script through standard web server feature like directory index or URL rewriting. If this is not the case you can also explicitly point to an existing PHP script as in the following example: `http://localhost/my_application.php?SPX_KEY=dev&SPX_UI_URI=/`. The PHP script will not be executed, SPX will intercept and disable its execution to serve its content in place._ You will then see the following form: ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/93baabbcba04223586d06756dbcecfbd6ec1293d/php-spx/doc/cp-form.png) Then switch on "Enabled". At this point profiling is enabled for the current domain and your current browser session through a set of dedicated cookies. Then refresh the web page you want to profile and refresh the control panel to see the generated report in the list below the control panel form. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/cp-list2.png) Then click on the report in the list and enjoy the [analysis screen](#analysis-screen). ### Command line script #### Instant flat profile Just prepend your command line with `SPX_ENABLED=1` to trigger profiling. You will get the flat profile printed on STDERR at the end of the execution, even if you abort it by hitting Ctrl-C, as in the following example: ```shell $ SPX_ENABLED=1 composer update Loading composer repositories with package information Updating dependencies (including require-dev) ^C *** SPX Report *** Global stats: Called functions : 27.5K Distinct functions : 714 Wall time : 7.39s ZE memory : 62.6MB Flat profile: Wall time | ZE memory | Inc. | *Exc. | Inc. | Exc. | Called | Function ----------+----------+----------+----------+----------+---------- 101.6ms | 101.6ms | 41.8MB | 41.8MB | 12 | Composer\Json\JsonFile::parseJson 53.6ms | 53.6ms | 544B | 544B | 4 | Composer\Cache::sha256 6.91s | 41.5ms | 41.5MB | -7.5MB | 4 | Composer\Repository\ComposerRepository::fetchFile 6.85s | 32.3ms | 47.5MB | 5.4MB | 5 | 1@Composer\Repository\ComposerRepository::loadProviderListings 7.8ms | 7.8ms | 0B | 0B | 4 | Composer\Cache::write 1.1ms | 1.1ms | -72B | -72B | 1 | Composer\Console\Application::Composer\Console\{closure} 828.5us | 828.5us | 976B | 976B | 12 | Composer\Util\RemoteFilesystem::findHeaderValue 497.6us | 491.0us | 710.2KB | 710.2KB | 1 | Composer\Cache::read 2.4ms | 332.6us | 20.9KB | -378.8KB | 34 | 3@Symfony\Component\Finder\Iterator\FilterIterator::rewind 298.9us | 298.9us | 2.2KB | 2.2KB | 47 | Symfony\Component\Finder\Iterator\FileTypeFilterIterator::accept ``` N.B.: Just add `SPX_FP_LIVE=1` to enable the live refresh of the flat profile during script execution. #### Generate profiling report for the web UI You just have to specify `SPX_REPORT=full` to generate a report available via the web UI: ```shell SPX_ENABLED=1 SPX_REPORT=full ./bin/console cache:clear ``` #### Handle long-living / daemon processes If your CLI script is long-living and/or daemonized (e.g. via supervisord), profiling its whole lifespan could be meaningless. This is especially true in case of a service waiting for tasks to process. To handle this case, SPX allows to disable the automatic start of profiling and exposes 2 userland functions, `spx_profiler_start(): void` & `spx_profiler_stop(): void`, in order to respectively control the start and the end of the profiled spans. Here is how you can instrument your script: ```php process(); } finally { spx_profiler_stop(); } } ``` And of course this script must be run at least with profiling enabled and the automatic start disabled as in the following command: ```shell SPX_ENABLED=1 SPX_REPORT=full SPX_AUTO_START=0 my_script.php ``` Side notes: - `spx_profiler_start()` and `spx_profiler_stop()` can safely be nested. - when automatic start is disabled, no signal handlers (i.e. on SIGINT/SIGTERM) are registered by SPX. - automatic start can only be disabled for CLI SAPI. ## Advanced usage ### Configuration | Name | Default | Changeable | Description | | --------------------- | -------- | ----------- | ------------ | | spx.data_dir | `/tmp/spx` | PHP_INI_SYSTEM | The directory where profiling reports will be stored. You may change it to point to a shared file system for example in case of multi-server architecture. | | spx.http_enabled | `0` | PHP_INI_SYSTEM | Whether to enable web UI and HTTP request profiling. | | spx.http_key | | PHP_INI_SYSTEM | The secret key used for authentication (see [security concern](#security-concern) for more details). You can use the following command to generate a 16 bytes random key as an hex string: `openssl rand -hex 16`. | | spx.http_ip_var | `REMOTE_ADDR` | PHP_INI_SYSTEM | The `$_SERVER` key holding the client IP address used for authentication (see [security concern](#security-concern) for more details). Overriding the default value is required when your application is behind a reverse proxy. | | spx.http_trusted_proxies | `127.0.0.1` | PHP_INI_SYSTEM | The trusted proxy list as a comma separated list of IP addresses. This setting is ignored when `spx.http_ip_var`'s value is `REMOTE_ADDR`. | | spx.http_ip_whitelist | | PHP_INI_SYSTEM | The IP address white list used for authentication as a comma separated list of IP addresses, use `*` to allow all IP addresses. | | spx.http_ui_assets_dir | `/usr/local/share/misc/php-spx/assets/web-ui` | PHP_INI_SYSTEM | The directory where the [web UI](#web-ui) files are installed. In most cases you do not have to change it. | #### Private environment For your local & private development environment, since there is no need for authentication, you can use this configuration: ``` spx.http_enabled=1 spx.http_key="dev" spx.http_ip_whitelist="127.0.0.1" ``` And then access to the web UI at `http(s):///?SPX_KEY=dev&SPX_UI_URI=/`. ### Available metrics Here is the list of available metrics to collect. By default only _Wall time_ and _Zend Engine memory usage_ are collected. | Key (command line) | Name | Description | | ---- | ---------------- | ------ | | _wt_ | Wall time | The absolute elapsed time. | | _ct_ | CPU time | The time spent while running on CPU. | | _it_ | Idle time | The time spent off-CPU, that means waiting for CPU, I/O completion, a lock acquisition... or explicitly sleeping. | | _zm_ | Zend Engine memory usage | Equivalent to `memory_get_usage(false)`. | | _zmac_ | Zend Engine allocation count | Number of memory allocations (i.e. allocated blocks) performed. | | _zmab_ | Zend Engine allocated bytes* | Number of allocated bytes. | | _zmfc_ | Zend Engine free count | Number of memory releases (i.e. freed blocks) performed. | | _zmfb_ | Zend Engine freed bytes* | Number of freed bytes. | | _zgr_ | Zend Engine GC run count | Number of times the GC (cycle collector) have been triggered (either manually or automatically). | | _zgb_ | Zend Engine GC root buffer length | Root buffer length, see explanation [here](http://php.net/manual/en/features.gc.collecting-cycles.php). It could be helpful to track pressure on garbage collector. | | _zgc_ | Zend Engine GC collected cycle count | Total number of collected cycles through all GC runs. | | _zif_ | Zend Engine included file count | Number of included files. | | _zil_ | Zend Engine included line count | Number of included lines. | | _zuc_ | Zend Engine user class count | Number of userland classes. | | _zuf_ | Zend Engine user function count | Number of userland functions (including userland class/instance methods). | | _zuo_ | Zend Engine user opcode count | Number of included userland opcodes (sum of all userland file/function/method opcodes). | | _zo_ | Zend Engine object count | Number of objects currently held by user code. | | _ze_ | Zend Engine error count | Number of raised PHP errors. | | _io_ | I/O (reads + writes)**\*\*** | Bytes read or written while performing I/O. | | _ior_ | I/O (reads)**\*\*** | Bytes read while performing I/O. | | _iow_ | I/O (writes)**\*\*** | Bytes written while performing I/O. | _\*: Allocated and freed byte counts will not be collected if you use a custom allocator or if you force the libc one through the `USE_ZEND_ALLOC` environment variable set to `0`._ _\*\*: I/O metrics are not supported on macOS. On GNU/Linux you should [read this if you use PHP-FPM](#linux-php-fpm--io-stats)._ ### Command line script #### Available report types Contrary to web page profiling which only support _full_ report type (the one exploitable by the web UI), command line script profiling supports several types of report. Here is the list below: | Key | Name | Description | | ---- | ----- | ------------ | | _fp_ | Flat profile | The flat profile provided by SPX. It is the **default report type** and is directly printed on STDERR. | | _full_ | Full report | This is the report type for web UI. Reports will be stored in SPX data directory and thus will be available for analysis on web UI side. | | _trace_ | Trace file | A custom format (human readable text) trace file. | #### Available parameters | Name | Default | Description | | ----- | -------- | ------------ | | _SPX_ENABLED_ | `0` | Whether to enable SPX profiler (i.e. triggering profiling). When disabled there is no performance impact on your application. | | _SPX_AUTO_START_ | `1` | Whether to enable SPX profiler's automatic start. When automatic start is disabled, you have to start & stop profiling on your own at runtime via the `spx_profiler_start()` & `spx_profiler_stop()` functions. [See here](#handle-long-living--daemon-processes) for more details. | | _SPX_BUILTINS_ | `0` | Whether to profile internal functions, script compilations, GC runs and request shutdown. | | _SPX_DEPTH_ | `0` | The stack depth at which profiling must stop (i.e. aggregate measures of deeper calls). 0 (default value) means unlimited. | | _SPX_SAMPLING_PERIOD_ | `0` | Whether to collect data for the current call stack at regular intervals according to the specified sampling period (`0` means no sampling). The result will usually be less accurate but in some cases it could be far more accurate by not over-evaluating small functions called many times. It is recommended to try sampling (with different periods) if you want to accurately find a time bottleneck. When profiling a long running & CPU intensive script, this option will allow you to contain report size and thus keeping it small enough to be exploitable by the [web UI](#web-ui). See [here](#performance-report-size--sampling) for more details. | | _SPX_METRICS_ | `wt,zm` | Comma separated list of [available metric keys](#available-metrics) to collect. All report types take advantage of multi-metric profiling. | | _SPX_REPORT_ | `fp` | Selected [report key](#available-report-types). | | _SPX_FP_FOCUS_ | `wt` | [Metric key](#available-metrics) for flat profile sort. | | _SPX_FP_INC_ | `0` | Whether to sort functions by inclusive value instead of exclusive value in flat profile. | | _SPX_FP_REL_ | `0` | Whether to display metric values as relative (i.e. percentage) in flat profile. | | _SPX_FP_LIMIT_ | `10` | The flat profile size (i.e. top N shown functions). | | _SPX_FP_LIVE_ | `0` | Whether to enable flat profile live refresh. Since it plays with cursor position through ANSI escape sequences, it uses STDOUT as output, replacing script output (both STDOUT & STDERR). | | _SPX_FP_COLOR_ | `1` | Whether to enable flat profile color mode. | | _SPX_TRACE_SAFE_ | `0` | The trace file is by default written in a way to enforce accuracy, but in case of process crash (e.g. segfault) some logs could be lost. If you want to enforce durability (e.g. to find the last event before a crash) you just have to set this parameter to 1. | | _SPX_TRACE_FILE_ | | Custom trace file name. If not specified it will be generated in `/tmp` and displayed on STDERR at the end of the script. | #### Setting parameters Well, as you might already noticed in corresponding [basic usage example](#command-line-script), setting a SPX parameter for a command line script simply means setting an environment variable with the same name. ### Web UI #### Supported browsers Since the web UI uses advanced JavaScript features, only the following browsers are known to be supported: - most recent version of any Chromium-based browser. - most recent version of Firefox with `dom.moduleScripts.enabled` preference set to `true`. #### Control panel & report list This is the home page of the web UI, divided into 2 parts: - the control panel for setting the profiling setup for your current browser session. - the profile report list as a sortable table. A click on a row allows to go to the [analysis screen](#analysis-screen) for the corresponding report. #### Analysis screen [Click here for a live demo of the analysis screen](https://noisebynorthwest.github.io/php-spx/demo/report.html?key=spx-full-20180603_211110-dev-3540-294703905) ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as.th.png) ##### Performance, report size & sampling The analysis screen can nicely handle profile reports with up to several (5+) millions of recorded function calls with Chromium on my i5 @ 3.3GHz / 8GB desktop. In case you want to profile a long running, CPU intensive, script which tends to generate giant reports, you can enable sampling mode with the suitable sampling period. See _SPX_SAMPLING_PERIOD_ [parameter](#available-parameters) for command line script. ##### Metric selector This is simply a combo box for selecting the currently analyzed metric. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-ms.png) ##### Color scheme selector By default, function related blocks in the visualizations are colored according to their cost, with a color scale displayed at the top right of the screen. You can also define a custom color scheme by clicking on the color scheme mode link, displayed at the top of the screen just after the metric selector. A drop-down window will then appear and allow you to switch between `default` and `category` mode and define (add/edit/delete) your categories (color, name, pattern list) for the `category` mode (see the screenshot below). ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-csm.png) ##### Timeline overview This visualization is the timeline overview of all called functions. You can change the selected time range by, represented by a transparent green rectangle, by simply dragging it horizontally. Except for wall time, the current metric is also plotted (current value over time) on a foreground layer. Supported controls: - horizontal left click drag: shift the selected time range - resize click on selected time range rectangle: shift one of the selected time range boundary ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-ov.png) ##### Timeline focus This visualization is an interactive timeline which is able to control and keep focus on the selected time range. Supported controls: - left click drag: time range shift (horizontal) or depth range shift (vertical) - middle click vertical drag: time range zoom in/out - mouse wheel: time range zoom in/out - hovering a function call to show more details - double click on a function call: set the current time range as the one of the selected function call Except for wall time, the current metric is also plotted (current value over time) on a foreground layer. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-tl.png) ##### Flat profile This visualization is the flat profile for the selected time range and the selected metric, displayed as a sortable table. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-fp.png) ##### Flame Graph This visualization, designed by [Brendan Gregg](http://www.brendangregg.com/flamegraphs.html), allows to quickly find the hot code path for the selected time range and the selected metric. Metrics corresponding to releasable resources (memory, objects in use...) are not supported by this visualization. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/d8a90827d6eb256f49d580de448b6b6fad4119ac/php-spx/doc/as-fg.png) ##### Function highlighting You can highlight a function by clicking on one of its spans within the timeline or Flamegraph widgets or its name within the flat profile widget. ![Showcase](https://github.com/NoiseByNorthwest/NoiseByNorthwest.github.io/blob/47d8f8d93fad1e6659c46c47e5aa8f82822454a9/php-spx/doc/as-fh.png) ## Security concern _The lack of review / feedback about this concern is the main reason **SPX cannot yet be considered as production ready**._ SPX allows you to profile web page as well as command line scripts, and also to list and analyze profile reports through its embedded web UI. This is why there is a huge security risk, since an attacker could: - access to web UI and get sensible information about your application. - to a lesser extent, make a DoS attack against your application with a costly profiling setup. So, unless access to your application is already restricted at lower layer (i.e. before your application is hit, not by the application / PHP framework itself), a client triggering profiling or accessing to the web UI must be authenticated. SPX provides two-factor authentication with these 2 mandatory locks: * IP address white list (exact string representation matching). * Fixed secret random key (generated on your own) provided via a request header, cookie or query string parameter. Thus a client can profile your application via a web page only if **its IP address is white listed and its provided key is valid**. ## Notes on accuracy In tracing mode (default), SPX is subject to accuracy issues for time related metrics when the measured function execution time is: - close or lower than the timer precision - close or lower than SPX's own per function overhead The first issue is mitigated by using the highest resolution timer provided by the platform. On Linux & recent macOS versions the timer resolution is 1ns; on macOS before 10.12/Sierra, the timer resolution is only 1us. The second issue is mitigated by taking into account SPX's time (wall / cpu) overhead by subtracting it to measured function execution time. This is done by evaluating SPX constant per function overhead before starting profiling the script. However, whatever the platform, if you want to maximize accuracy to find a time bottleneck, you should also: - avoid profiling internal functions. - avoid collecting additional metrics. - try sampling mode with different sampling periods. - try to play with maximum depth parameter to stop profiling at a given depth. ## Credits I have found lot of inspiration and hints reading: - [XHProf](https://github.com/phacility/xhprof) - [Xdebug](https://github.com/xdebug/xdebug) - [PHP](https://github.com/php/php-src)