From 82927e7ac3c7f22c40df6e3454d009e0c32ef110 Mon Sep 17 00:00:00 2001
From: vogelor <vogelor@ispconfig3>
Date: Mon, 10 May 2010 13:28:36 -0400
Subject: [PATCH] The Monitor now also shows the ISPConfig Version
---
interface/web/monitor/lib/module.conf.php | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/interface/web/monitor/lib/module.conf.php b/interface/web/monitor/lib/module.conf.php
index ac9b486..352cb12 100644
--- a/interface/web/monitor/lib/module.conf.php
+++ b/interface/web/monitor/lib/module.conf.php
@@ -4,7 +4,7 @@
Config of the Module
*/
$module["name"] = "monitor";
-$module["title"] = "Monitor";
+$module["title"] = "top_menu_monitor";
$module["template"] = "module.tpl.htm";
$module["tab_width"] = '';
$module["startpage"] = "monitor/show_sys_state.php?state=system";
@@ -104,6 +104,9 @@
'target' => 'content',
'link' => 'monitor/show_data.php?type=services');
+$items[] = array( 'title' => "Show OpenVz VE BeanCounter",
+ 'target' => 'content',
+ 'link' => 'monitor/show_data.php?type=openvz_beancounter');
$module["nav"][] = array( 'title' => 'Server State',
'open' => 1,
@@ -134,6 +137,10 @@
'target' => 'content',
'link' => 'monitor/show_log.php?log=log_messages');
+$items[] = array( 'title' => "Show ISPC Cron-Log",
+ 'target' => 'content',
+ 'link' => 'monitor/show_log.php?log=log_ispc_cron');
+
$items[] = array( 'title' => "Show Freshclam-Log",
'target' => 'content',
'link' => 'monitor/show_log.php?log=log_freshclam');
@@ -146,6 +153,10 @@
'target' => 'content',
'link' => 'monitor/show_data.php?type=rkhunter');
+$items[] = array( 'title' => "Show fail2ban-Log",
+ 'target' => 'content',
+ 'link' => 'monitor/show_data.php?type=fail2ban');
+
$module["nav"][] = array( 'title' => 'Logfiles',
'open' => 1,
'items' => $items);
--
Gitblit v1.9.1