Revision 80dbf623
Added by Jim Pingle about 16 years ago
usr/local/www/diag_logs_filter_summary.php | ||
---|---|---|
29 | 29 |
|
30 | 30 |
$pgtitle = "Diagnostics: System logs: Firewall Log Summary"; |
31 | 31 |
require_once("guiconfig.inc"); |
32 |
include_once("includes/log.inc.php");
|
|
32 |
include_once("filter_log.inc");
|
|
33 | 33 |
|
34 | 34 |
$filter_logfile = "{$g['varlog_path']}/filter.log"; |
35 | 35 |
$lines = 5000; |
36 | 36 |
$entriesperblock = 5; |
37 | 37 |
|
38 |
$filterlog = conv_clog_filter($filter_logfile, $lines, $lines);
|
|
38 |
$filterlog = conv_log_filter($filter_logfile, $lines, $lines); |
|
39 | 39 |
$gotlines = count($filterlog); |
40 | 40 |
$fields = array( |
41 | 41 |
'act' => "Actions", |
... | ... | |
173 | 173 |
</script> |
174 | 174 |
|
175 | 175 |
<? include("fbegin.inc"); ?> |
176 |
<p class="pgtitle"><?=$pgtitle?></p> |
|
177 | 176 |
<table width="100%" border="0" cellpadding="0" cellspacing="0"> |
178 | 177 |
<tr><td> |
179 | 178 |
<?php |
Also available in: Unified diff
Forgot to adjust a couple things to fit HEAD again.