{"id":19219265,"url":"https://github.com/chassis/chassis_xhgui","last_synced_at":"2026-04-29T10:03:52.165Z","repository":{"id":68352357,"uuid":"143385796","full_name":"Chassis/Chassis_XHGui","owner":"Chassis","description":"A Chassis extension to install and setup XHGui on your server","archived":false,"fork":false,"pushed_at":"2020-10-05T23:11:46.000Z","size":46,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-20T11:11:24.380Z","etag":null,"topics":["chassis","chassis-extension","wordpress","xhgui","xhprof"],"latest_commit_sha":null,"homepage":null,"language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Chassis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-03T06:14:06.000Z","updated_at":"2020-03-18T06:15:59.000Z","dependencies_parsed_at":"2023-02-26T00:30:09.797Z","dependency_job_id":null,"html_url":"https://github.com/Chassis/Chassis_XHGui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Chassis/Chassis_XHGui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chassis%2FChassis_XHGui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chassis%2FChassis_XHGui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chassis%2FChassis_XHGui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chassis%2FChassis_XHGui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Chassis","download_url":"https://codeload.github.com/Chassis/Chassis_XHGui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chassis%2FChassis_XHGui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32420356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chassis","chassis-extension","wordpress","xhgui","xhprof"],"created_at":"2024-11-09T14:30:12.611Z","updated_at":"2026-04-29T10:03:52.148Z","avatar_url":"https://github.com/Chassis.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XHGui\nA Chassis extension to install and configure [XHGui](https://github.com/perftools/xhgui) on your Chassis server. This extension also has [XHProf](https://github.com/Chassis/XHProf) as a dependency so it will be installed and configured automatically as well.\n\n## Installation\n1. Add this extension to your extensions directory `git clone --recursive git@github.com:Chassis/Chassis_XHGui.git extensions/chassis_xhgui`\n2. Note: **The folder that you clone into must be called** `chassis_xhgui`.\n3. Run `vagrant provision`.\n\n## Alternative Installation\n1. Add `- chassis/chassis_xhgui` to your `extensions` in [yaml](http://docs.chassis.io/en/latest/config/) files. e.g.\n\t```\n\textensions:\n\t- chassis/chassis_xhgui\n\t```\n2. Run `vagrant provision`.\n\n\u003e **Please note:** `vagrant provision` can take quite a few minutes due to the amount of [Composer](https://getcomposer.org/) dependencies in XHGui.  So when you see the provisioning process taking a long time on `Service[php7.0-fpm]` please be patient as this is the stage where Composer dependencies are being installed. \n\n## Usage\n\nBrowse to [http://vagrant.local/xhgui](http://vagrant.local/xhgui) in a browser. If you have a custom host hame it will be `http://\u003cyourhostname\u003e.local/xhgui`.\n\nIf you're using [custom paths](http://docs.chassis.io/en/latest/config/#paths) you'll need to change the URL to add your custom base. For example: If you've Chassis located in a `chassis` folder then the URL will be [http://vagrant.local/chassis/xhgui](http://vagrant.local/chassis/xhgui) or `http://\u003cyourhostname\u003e.local/chassis/xhgui`.\n\n## Controlling When the Profiler Runs\n\nThis extension enables the XHProf profiler for every request. You can control whether or not the profiler runs from the `profiler.enable` callback function that is contained within the `extensions/chassis_xhgui/xhgui/config/config.php` file.\n\nFrom this callback function you can perform logic based on `$_SERVER` values, `php_sapi_name()`, etc, but remember that WordPress has not loaded at this point so you can't use any function that WordPress provides.\n\n```php\n'profiler.enable' =\u003e function() {\n\tif ( false !== strpos( $_SERVER['REQUEST_URI'], 'wp-admin/' ) ) {\n\t\t// Disable the profiler for requests to wp-admin:\n\t\treturn false;\n\t}\n\n\t// Enable the profiler for all other requests:\n\treturn true;\n},\n\n```\n\nFurther information about configuring the profiler and other XHGUI options can be found [in the XHGUI repo documentation](https://github.com/Chassis/xhgui).\n\n## Uninstallation\n1. Add `- chassis/chassis_xhgui` to your `disabled_extensions` in [yaml](http://docs.chassis.io/en/latest/config/) files. e.g.\n\t```\n\tdisabled_extensions:\n\t- chassis/chassis_xhgui\n\t```\n2. Run `vagrant provision`.\n\n## Screenshots\n\n![Recent Runs](https://bronsons-captured.s3.amazonaws.com/Xhgui_-_Run_list_2018-08-03_16-04-54.png \"Recent Runs\")\n\n![Profile Data](https://bronsons-captured.s3.amazonaws.com/Xhgui_-_Profile_-_cat1_2018-08-03_16-05-32.png \"Profile Data\")\n\n![Call Graph](https://bronsons-captured.s3.amazonaws.com/Xhgui_-_Callgraph_-_cat1_-_Aug_3rd_060412_2018-08-03_16-06-06.png \"Call Graph\")\n\n![Flame Graph](https://bronsons-captured.s3.amazonaws.com/Xhgui_-_Flamegraph_-_cat1_-_Aug_3rd_060412_2018-08-03_16-06-42.png \"Flame Graph\")\n\n![Function Calls](https://bronsons-captured.s3.amazonaws.com/Xhgui_-_Profile_-_cat1_2018-08-03_16-08-27.png \"Function Calls\")\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchassis%2Fchassis_xhgui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchassis%2Fchassis_xhgui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchassis%2Fchassis_xhgui/lists"}