Revision 4, 0.7 kB
(checked in by ixs, 16 years ago)
|
Additional changes, nslookup support, added time selection to the chart itself...
|
Line | |
---|
1 |
<?php |
---|
2 |
|
---|
3 |
$prog_name = 'flowmon-web'; |
---|
4 |
$prog_vers = '0.9'; |
---|
5 |
|
---|
6 |
|
---|
7 |
$database = 'mysql'; |
---|
8 |
$db_host = 'localhost'; |
---|
9 |
$db_user = 'flowmon'; |
---|
10 |
$db_pass = 'flowmon'; |
---|
11 |
$db_name = 'flowstorage'; |
---|
12 |
|
---|
13 |
|
---|
14 |
$date_fmt_str = '%Y-%m-%d %T+%Z'; |
---|
15 |
|
---|
16 |
|
---|
17 |
|
---|
18 |
|
---|
19 |
|
---|
20 |
$chart_styles = array( |
---|
21 |
'Top Sources' => 'top-src.inc.php', |
---|
22 |
'Top Destinations' => 'top-dst.inc.php', |
---|
23 |
'Top Source Ports' => 'top-ports-src.inc.php', |
---|
24 |
'Top Destination Ports' => 'top-ports-dst.inc.php', |
---|
25 |
'Protocol Distribution' => 'proto-dist.inc.php', |
---|
26 |
); |
---|
27 |
|
---|