diff options
author | doktornotor <notordoktor@gmail.com> | 2015-10-14 13:26:20 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-10-14 13:26:20 +0200 |
commit | 1f3ef70e4a16ef5c8c6bf1a2a885b56c840dd4f7 (patch) | |
tree | 03bd28b94362b096f0c213ac3b850b8980ea32dd /config/squid3 | |
parent | 935ceb15cde794e23b0d590a282c0fa4dae53f35 (diff) | |
download | pfsense-packages-1f3ef70e4a16ef5c8c6bf1a2a885b56c840dd4f7.tar.gz pfsense-packages-1f3ef70e4a16ef5c8c6bf1a2a885b56c840dd4f7.tar.bz2 pfsense-packages-1f3ef70e4a16ef5c8c6bf1a2a885b56c840dd4f7.zip |
Add more logs to the 'Real Time' tab
Diffstat (limited to 'config/squid3')
-rwxr-xr-x | config/squid3/34/squid_monitor.php | 99 |
1 files changed, 91 insertions, 8 deletions
diff --git a/config/squid3/34/squid_monitor.php b/config/squid3/34/squid_monitor.php index 80e15a64..b08372f1 100755 --- a/config/squid3/34/squid_monitor.php +++ b/config/squid3/34/squid_monitor.php @@ -130,13 +130,13 @@ include("head.inc"); </table> </form> - <!-- Squid Table --> + <!-- Squid Access Table --> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr><td> <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> - <td colspan="6" class="listtopic" align="center"><?=gettext("Squid Logs"); ?></td> + <td colspan="6" class="listtopic" align="center"><?=gettext("Squid - Access Logs"); ?></td> </tr> <tbody id="squidView"> <script type="text/javascript"> @@ -148,6 +148,23 @@ include("head.inc"); </td></tr> </tbody> </table> + <!-- Squid Cache Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr><td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="2" class="listtopic" align="center"><?=gettext("Squid - Cache Logs"); ?></td> + </tr> + <tbody id="squidCacheView"> + <script type="text/javascript"> + showLog('squidCacheView', 'squid_monitor_data.php', 'squid_cache'); + </script> + </tbody> + </table> + </td></tr> + </tbody> + </table> <?php if ($_REQUEST["menu"] != "reverse") {?> <!-- SquidGuard Table --> <table width="100%" border="0" cellpadding="0" cellspacing="0"> @@ -159,7 +176,6 @@ include("head.inc"); </tr> <tbody id="sguardView"> <script type="text/javascript"> - // Call function to show squidGuard log showLog('sguardView', 'squid_monitor_data.php', 'sguard'); </script> </tbody> @@ -167,18 +183,85 @@ include("head.inc"); </td></tr> </tbody> </table> - <!-- clamav Table --> + <!-- C-ICAP Virus Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr><td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="6" class="listtopic" align="center"><?=gettext("C-ICAP - Virus Logs"); ?></td> + </tr> + <tbody id="CICIAPVirusView"> + <script type="text/javascript"> + showLog('CICIAPVirusView', 'squid_monitor_data.php', 'cicap_virus'); + </script> + </tbody> + </table> + </td></tr> + </tbody> + </table> + <!-- C-ICAP Access Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr><td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="2" class="listtopic" align="center"><?=gettext("C-ICAP - Access Logs"); ?></td> + </tr> + <tbody id="CICAPAccessView"> + <script type="text/javascript"> + showLog('CICAPAccessView', 'squid_monitor_data.php', 'cicap_access'); + </script> + </tbody> + </table> + </td></tr> + </tbody> + </table> + <!-- C-ICAP Server Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr><td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="2" class="listtopic" align="center"><?=gettext("C-ICAP - Server Logs"); ?></td> + </tr> + <tbody id="CICAPServerView"> + <script type="text/javascript"> + showLog('CICAPServerView', 'squid_monitor_data.php', 'cicap_server'); + </script> + </tbody> + </table> + </td></tr> + </tbody> + </table> + <!-- freshclam Table --> + <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tbody> + <tr><td> + <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td colspan="1" class="listtopic" align="center"><?=gettext("ClamAV - freshclam Logs"); ?></td> + </tr> + <tbody id="freshclamView"> + <script type="text/javascript"> + showLog('freshclamView', 'squid_monitor_data.php', 'freshclam'); + </script> + </tbody> + </table> + </td></tr> + </tbody> + </table> + <!-- clamd Table --> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr><td> <table class="tabcont" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> - <td colspan="6" class="listtopic" align="center"><?=gettext("clamav Logs"); ?></td> + <td colspan="1" class="listtopic" align="center"><?=gettext("ClamAV - clamd Logs"); ?></td> </tr> - <tbody id="clamView"> + <tbody id="clamdView"> <script type="text/javascript"> - // Call function to show squidGuard log - showLog('clamView', 'squid_monitor_data.php', 'clamav'); + showLog('clamdView', 'squid_monitor_data.php', 'clamd'); </script> </tbody> </table> |