This is just another play of mine to ISPConfig 3.1 where I added kernel info in ISPConfig viewable via Monitor tab (under Show Overview). I am not sure whether this is a good feature to be proposed so I think I just share the edit I made for it. First locate and open show_sys_state.php file (mine is under /usr/local/ispconfig/interface/web/monitor/) and then, find $ispcData = null; and add after it $kernelinfo = 'Kernel: ' . exec('uname -mrs'); so it will like below: Code: $ispcData = null; $kernelinfo = 'Kernel: ' . exec('uname -mrs'); Further, find $html_ve .= '<p>' . $app->lng("monitor_serverstate_state_txt") . ': ' . $serverState . '</p>'; and add before it $html_ve .= '<p><h3>' . $kernelinfo . '</h3></p>'; so it will like below: Code: $html_ve .= '<p><h3>' . $kernelinfo . '</h3></p>'; $html_ve .= '<p>' . $app->lng("monitor_serverstate_state_txt") . ': ' . $serverState . '</p>'; Finally, find $html_server .= '<p>' . $app->lng("monitor_serverstate_state_txt") . ': ' . $serverState . ' ('; and add before it $html_server .= '<p><h3>' . $kernelinfo . '</h3></p>'; so it will like below: Code: $html_server .= '<p><h3>' . $kernelinfo . '</h3></p>'; $html_server .= '<p>' . $app->lng("monitor_serverstate_state_txt") . ': ' . $serverState . ' ('; Good luck and have fun!