|
From: <sa...@us...> - 2004-03-11 14:21:09
|
Update of /cvsroot/jrobin/src/org/jrobin/mrtg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27547/org/jrobin/mrtg Modified Files: MrtgConstants.java Log Message: RrdDbPool final tweaks Index: MrtgConstants.java =================================================================== RCS file: /cvsroot/jrobin/src/org/jrobin/mrtg/MrtgConstants.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MrtgConstants.java 8 Mar 2004 13:14:39 -0000 1.4 --- MrtgConstants.java 11 Mar 2004 13:54:26 -0000 1.5 *************** *** 33,43 **** int SERVER_PORT = 35353; ! // run Scheduler each 3 seconds ! int SCHEDULER_RESOLUTION = 3; // graph dimensions int GRAPH_WIDTH = 502, GRAPH_HEIGHT = 234; ! // initial temeplate for RrdDef String RRD_TEMPLATE_STR = "<rrd_def> \n" + --- 33,49 ---- int SERVER_PORT = 35353; ! // run Scheduler each 5 seconds ! int SCHEDULER_RESOLUTION = 5; ! ! // pause between poller threads in milliseconds ! int SCHEDULER_DELAY = 20; ! ! // number of open RRD files held in the pool ! int POOL_CAPACITY = 50; // graph dimensions int GRAPH_WIDTH = 502, GRAPH_HEIGHT = 234; ! // initial template for RrdDef String RRD_TEMPLATE_STR = "<rrd_def> \n" + |