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

Revision 1, 0.7 kB (checked in by ixs, 16 years ago)

initial checkin of RH revision

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 $date_fmt = ('Y-m-d T');
16
17 # Chart Styles we support
18 # Format is Name => filename
19 # Name is the name of the chart as it appears in the selection menu,
20 # filename is the name of the plugin defining this chart.
21 $chart_styles = array(
22             'Top Sources' => 'top-src.inc.php',
23             'Top Destinations' => 'top-dst.inc.php',
24             'Top Source Ports' => 'top-ports-src.inc.php',
25             'Top Destination Ports' => 'top-ports-dst.inc.php',
26             'Protocol Distribution' => 'proto-dist.inc.php',
27     );
28
Note: See TracBrowser for help on using the browser.