The default apache status shows you information about current Apache activity. But these server-status pages are difficult to read. The pimped Apache status makes the Apache server status readable, sortable and searchable. The pimped Apache status can merge the status of several servers that opens the possibility to identify the troubleshooter in a loadbalanced website much more easily. The output uses jQuery and the plugin datatable to search and sort the data
下載下來放到 web root 目錄就行,給 config 目錄有 apache 權限寫入
瀏覽 http://xx.xx.xx.xx/apachestatus 時,會產生 config/config_user.php
它的設定很簡單
$aServergroups = array( 'my default environment' => array( 'servers' => array( '10.10.10.1' => array( 'label' => '10.10.10.1', ), '10.10.10.2' => array( 'label' => '10.10.10.2', ), ), ),
可以 json 、 xml 等格式輸出
也有 API 可用
留言