<?php
/*
 * PIMPED APACHE-STATUS
 * DEFAULT CONFIG FILE
 * 
 * !!! DO NOT CHANGE THIS FILE !!!
 * 
 * SEE config_user_default.php. COPY config_user_default.php to
 * "config_user.php" AND MAKE YOUR CHANGES THERE.
 */

$aServergroups = array(
    'default' => array(
        'server' => array(
            'localhost' => array(),
        ),
    ),
);


$aDefaultCfg = array(
    'lang' => 'en',          // default language
    'selectLang' => 'en,de', // list of selectable languages (in folder "lang")
    
    'skin' => 'default', // where to search style.css and defaultTemplate
    'selectSkin' => 'default,ice', // selectable skins (in folder "templates")
    'defaultTemplate' => 'out_html.php', // 
    
    'autoreload' => array(false, 10, 30, 60, 300),
    'views' => array('serverinfos.php', 'performance-check.php','allrequests.php', 'original.php', 'help.php'),
    'defaultView' => false, // one of the views; false is first in views array
    
    // how often check for new version in [sec]; 
    // 60*60*24 = once per week
    // 0 = check disabled
    'checkupdate' => 60*60*24*7,

    // check in request table: limits in [ms] for execution time (column "Req")
    'execTimeRequest' => array(
        'warning' => '1000',
        'critical' => '5000',
    ),
    
    // minify the views
    'showHint' => true,    // shows hint in all views
    'hideRows' => array(), // hide table rows of apache status
    
    // where to draw bars
    'tdbars' => array('thCount', 'Req'),
    
    'datatableOptions' => '{ 
        "bPaginate": false, 
        "bLengthChange": false, 
        "bFilter": true, 
        "bSort": true, 
        "bAutoWidth": false, 
        "bStateSave": true,
        "sPaginationType": "full_numbers",
        "oLanguage": __LANG__ 
        }',
);

?>
