Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Aubry <matt@piwik.org>2013-10-30 01:08:12 +0400
committerMatthieu Aubry <matt@piwik.org>2013-10-30 01:08:12 +0400
commit34cfc8a69a09dea087c0db996faca32bde5137d3 (patch)
tree88f3cecdd62498620c317e5f551072fab4cb7f63 /tests/README.xhprof.md
parentdd2fa80a03c45c53a019c429b52247671c7a5701 (diff)
Xhprof readme
Diffstat (limited to 'tests/README.xhprof.md')
-rw-r--r--tests/README.xhprof.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/README.xhprof.md b/tests/README.xhprof.md
new file mode 100644
index 0000000000..000d60ad0a
--- /dev/null
+++ b/tests/README.xhprof.md
@@ -0,0 +1,53 @@
+
+Piwik is distributed with a copy of XHProf, the PHP profiler created by Facebook. Piwik
+also comes with a copy of VisualPHPUnit that has been modified to easily use XHProf. Using
+these two tools, you can profile tests and benchmarks.
+
+## Installing XHProf
+
+First, XHProf must be built (this guide assumes you're using a linux variant):
+
+ * Navigate to the XHProf extension directory.
+
+ $ cd /path/to/piwik/tests/lib/xhprof-0.9.2/extension
+
+ * Build XHProf.
+
+ $ phpize
+ $ ./configure
+ $ make
+
+ xhprof.so will now exist in the ./modules directory.
+
+ * Configure PHP to use XHProf. Add the following to your php.ini file:
+
+ ```
+ [xhprof]
+ extension=/path/to/piwik/tests/lib/xhprof-0.9.2/extension/modules/xhprof.so
+ xhprof.output_dir=/path/to/output/dir
+ ```
+
+ Replace /path/to/output/dir with an existing directory. All your profiles will be
+ stored there.
+
+Restart your webserver and you're done. VisualPHPUnit will automatically detect if XHProf
+is installed and act accordingly.
+
+## Using XHProf
+
+To use XHProf, first load VisualPHPUnit by pointing your browser to:
+
+http://path/to/piwik/tests/lib/visualphpunit/
+
+Select a test or get ready to run a benchmark. Make sure the 'Profile with XHProf' select
+box is set to 'Yes' and click 'Run Tests'.
+
+When the test finishes, a link will be displayed that will let you view the profile that
+was created.
+
+## Notes
+
+* Currently, it is not possible to use XHProf with more than one test, so if multiple
+ tests are selected, XHProf will not be used.
+* XHProf will not delete old profiles, you must do that yourself, though individual
+ profiles do not take much space.