├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README_CN.md ├── docs └── imgs │ ├── list.jpeg │ ├── symbol_1.jpeg │ └── symbol_2.jpeg ├── examples ├── curl_export.php ├── demo.php ├── ini │ └── apm.ini ├── mongo_export.php ├── mysql_export.php └── php_export.php ├── extension ├── config.m4 ├── php_xhprof_apm.h ├── tests │ ├── 001.phpt │ ├── 002.phpt │ ├── apm.ini │ └── apm_export.php └── xhprof_apm.c ├── travis └── run-test.sh └── web ├── composer.json ├── config └── config.php ├── htdocs ├── 404.html ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── d3.flameGraph.css │ ├── datepicker.css │ └── xhgui.css ├── fonts │ ├── Chunkfive-webfont.eot │ ├── Chunkfive-webfont.svg │ ├── Chunkfive-webfont.ttf │ ├── Chunkfive-webfont.woff │ └── Open Font License.markdown ├── img │ ├── asc.gif │ ├── bg.gif │ ├── desc.gif │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ └── loading.gif ├── index.php └── js │ ├── bootstrap-datepicker.js │ ├── bootstrap-tooltip.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── callgraph.js │ ├── d3-tip-index.js │ ├── d3.flameGraph.js │ ├── d3.js │ ├── dagre-d3.js │ ├── jquery.js │ ├── jquery.stickytableheaders.js │ ├── jquery.tablesorter.js │ ├── layer │ ├── layer.js │ ├── mobile │ │ ├── layer.js │ │ └── need │ │ │ └── layer.css │ └── theme │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif │ ├── waterfall.js │ ├── xhgui-charts.js │ └── xhgui.js ├── include ├── db.php ├── handler.php ├── routes.php ├── util.php └── view.php ├── src ├── Controller.php ├── Controller │ └── Run.php ├── Database │ ├── DbInterface.php │ ├── Mongo.php │ └── Mysql.php ├── Profile.php ├── Profiles.php ├── Twig │ └── Extension.php └── Util.php └── templates ├── error └── view.twig ├── layout └── base.twig ├── macros └── helpers.twig └── runs ├── callgraph.twig ├── compare-details.twig ├── compare.twig ├── flamegraph.twig ├── list.twig ├── paginated-list.twig ├── stack.twig ├── symbol-short.twig ├── symbol.twig ├── url.twig └── view.twig /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | composer.lock 3 | vendor/ 4 | web/cache/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/README_CN.md -------------------------------------------------------------------------------- /docs/imgs/list.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/docs/imgs/list.jpeg -------------------------------------------------------------------------------- /docs/imgs/symbol_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/docs/imgs/symbol_1.jpeg -------------------------------------------------------------------------------- /docs/imgs/symbol_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/docs/imgs/symbol_2.jpeg -------------------------------------------------------------------------------- /examples/curl_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/examples/curl_export.php -------------------------------------------------------------------------------- /examples/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/examples/demo.php -------------------------------------------------------------------------------- /examples/ini/apm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/examples/ini/apm.ini -------------------------------------------------------------------------------- /examples/mongo_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/examples/mongo_export.php -------------------------------------------------------------------------------- /examples/mysql_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxinH/xhprof-apm/HEAD/examples/mysql_export.php -------------------------------------------------------------------------------- /examples/php_export.php: -------------------------------------------------------------------------------- 1 |