├── .arcconfig ├── .gitignore ├── CHANGELOG ├── CREDITS ├── INSTALL ├── LICENSE ├── README.HIGHCHARTS ├── README.markdown ├── examples └── sample.php ├── extension ├── config.m4 ├── php_xhprof.h ├── tests │ ├── common.php │ ├── xhprof_001.phpt │ ├── xhprof_002.phpt │ ├── xhprof_003.phpt │ ├── xhprof_004.phpt │ ├── xhprof_004_inc.php │ ├── xhprof_004_require.php │ ├── xhprof_005.phpt │ ├── xhprof_006.phpt │ ├── xhprof_007.phpt │ └── xhprof_008.phpt ├── win32 │ ├── README.md │ ├── php_xhprof_win32.c │ └── php_xhprof_win32.h └── xhprof.c ├── external ├── footer.php └── header.php ├── package.xml ├── xhprof_html ├── callgraph.php ├── css │ ├── tablesorter.pager.css │ ├── xh.css │ └── xhprof.css ├── docs │ ├── index.html │ ├── sample-callgraph-image.jpg │ ├── sample-diff-report-flat-view.jpg │ ├── sample-diff-report-parent-child-view.jpg │ ├── sample-flat-view.jpg │ └── sample-parent-child-view.jpg ├── favicon.ico ├── img │ ├── asc.svg │ ├── bg.svg │ ├── desc.svg │ └── invert.svg ├── index.php └── third-party │ ├── highcharts │ ├── LICENSE │ └── highcharts.js │ └── jquery │ ├── LICENSE │ ├── indicator.gif │ ├── jquery-1.7.1.min.js │ ├── jquery.autocomplete.css │ ├── jquery.autocomplete.js │ ├── jquery.stickytableheaders.js │ ├── jquery.tooltip.css │ ├── jquery.tooltip.js │ ├── tablesorter.min.js │ └── tablesorter.pager.js └── xhprof_lib ├── .gitignore ├── config.sample.php ├── defaults.php ├── display ├── typeahead_common.php └── xhprof.php ├── templates ├── chart.phtml ├── diff_run_header_block.phtml ├── emptyBody.phtml ├── footer.phtml ├── header.phtml ├── print_flat_data.phtml ├── profChart.phtml ├── profTable.phtml └── single_run_header_block.phtml └── utils ├── Db ├── Abstract.php ├── Mssql.php ├── Mysql.php ├── Mysqli.php ├── Pdo.php └── Sqlsrv.php ├── callgraph_utils.php ├── common.php ├── xhprof_lib.php └── xhprof_runs.php /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/CREDITS -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.HIGHCHARTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/README.HIGHCHARTS -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/README.markdown -------------------------------------------------------------------------------- /examples/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/examples/sample.php -------------------------------------------------------------------------------- /extension/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/config.m4 -------------------------------------------------------------------------------- /extension/php_xhprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/php_xhprof.h -------------------------------------------------------------------------------- /extension/tests/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/common.php -------------------------------------------------------------------------------- /extension/tests/xhprof_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_001.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_002.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_003.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_004.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_004_inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_004_inc.php -------------------------------------------------------------------------------- /extension/tests/xhprof_004_require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_004_require.php -------------------------------------------------------------------------------- /extension/tests/xhprof_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_005.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_006.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_007.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/tests/xhprof_008.phpt -------------------------------------------------------------------------------- /extension/win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/win32/README.md -------------------------------------------------------------------------------- /extension/win32/php_xhprof_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/win32/php_xhprof_win32.c -------------------------------------------------------------------------------- /extension/win32/php_xhprof_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/win32/php_xhprof_win32.h -------------------------------------------------------------------------------- /extension/xhprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/extension/xhprof.c -------------------------------------------------------------------------------- /external/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/external/footer.php -------------------------------------------------------------------------------- /external/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/external/header.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/package.xml -------------------------------------------------------------------------------- /xhprof_html/callgraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/callgraph.php -------------------------------------------------------------------------------- /xhprof_html/css/tablesorter.pager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/css/tablesorter.pager.css -------------------------------------------------------------------------------- /xhprof_html/css/xh.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xhprof_html/css/xhprof.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/css/xhprof.css -------------------------------------------------------------------------------- /xhprof_html/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/index.html -------------------------------------------------------------------------------- /xhprof_html/docs/sample-callgraph-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/sample-callgraph-image.jpg -------------------------------------------------------------------------------- /xhprof_html/docs/sample-diff-report-flat-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/sample-diff-report-flat-view.jpg -------------------------------------------------------------------------------- /xhprof_html/docs/sample-diff-report-parent-child-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/sample-diff-report-parent-child-view.jpg -------------------------------------------------------------------------------- /xhprof_html/docs/sample-flat-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/sample-flat-view.jpg -------------------------------------------------------------------------------- /xhprof_html/docs/sample-parent-child-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/docs/sample-parent-child-view.jpg -------------------------------------------------------------------------------- /xhprof_html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/favicon.ico -------------------------------------------------------------------------------- /xhprof_html/img/asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/img/asc.svg -------------------------------------------------------------------------------- /xhprof_html/img/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/img/bg.svg -------------------------------------------------------------------------------- /xhprof_html/img/desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/img/desc.svg -------------------------------------------------------------------------------- /xhprof_html/img/invert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/img/invert.svg -------------------------------------------------------------------------------- /xhprof_html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/index.php -------------------------------------------------------------------------------- /xhprof_html/third-party/highcharts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/highcharts/LICENSE -------------------------------------------------------------------------------- /xhprof_html/third-party/highcharts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/highcharts/highcharts.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/LICENSE -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/indicator.gif -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery.autocomplete.css -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery.autocomplete.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery.stickytableheaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery.stickytableheaders.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery.tooltip.css -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/jquery.tooltip.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/tablesorter.min.js -------------------------------------------------------------------------------- /xhprof_html/third-party/jquery/tablesorter.pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_html/third-party/jquery/tablesorter.pager.js -------------------------------------------------------------------------------- /xhprof_lib/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | -------------------------------------------------------------------------------- /xhprof_lib/config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/config.sample.php -------------------------------------------------------------------------------- /xhprof_lib/defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/defaults.php -------------------------------------------------------------------------------- /xhprof_lib/display/typeahead_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/display/typeahead_common.php -------------------------------------------------------------------------------- /xhprof_lib/display/xhprof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/display/xhprof.php -------------------------------------------------------------------------------- /xhprof_lib/templates/chart.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/chart.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/diff_run_header_block.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/diff_run_header_block.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/emptyBody.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xhprof_lib/templates/footer.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/footer.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/header.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/header.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/print_flat_data.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/print_flat_data.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/profChart.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/profChart.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/profTable.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/profTable.phtml -------------------------------------------------------------------------------- /xhprof_lib/templates/single_run_header_block.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/templates/single_run_header_block.phtml -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Abstract.php -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Mssql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Mssql.php -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Mysql.php -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Mysqli.php -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Pdo.php -------------------------------------------------------------------------------- /xhprof_lib/utils/Db/Sqlsrv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/Db/Sqlsrv.php -------------------------------------------------------------------------------- /xhprof_lib/utils/callgraph_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/callgraph_utils.php -------------------------------------------------------------------------------- /xhprof_lib/utils/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/common.php -------------------------------------------------------------------------------- /xhprof_lib/utils/xhprof_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/xhprof_lib.php -------------------------------------------------------------------------------- /xhprof_lib/utils/xhprof_runs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preinheimer/xhprof/HEAD/xhprof_lib/utils/xhprof_runs.php --------------------------------------------------------------------------------