root/trunk/flowmon-web/config.inc.php

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 # Database
7 $database = 'mysql';
8 $db_host = 'localhost';
9 $db_user = 'flowmon';
10 $db_pass = 'flowmon';
11 $db_name = 'flowstorage';
12
13 # Date formatstring
14 $date_fmt_str = '%Y-%m-%d %T+%Z';
15
16 # Chart Styles we support
17 # Format is Name => filename
18 # Name is the name of the chart as it appears in the selection menu,
19 # filename is the name of the plugin defining this chart.
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
Note: See TracBrowser for help on using the browser.