/* * RRD graphing libraries, based on Flot * Part of the javascriptRRD package * Copyright (c) 2009 Frank Wuerthwein, fkw@ucsd.edu * * Original repository: http://javascriptrrd.sourceforge.net/ * * MIT License [http://www.opensource.org/licenses/mit-license.php] * */ /* * * Flot is a javascript plotting library developed and maintained by * Ole Laursen [http://code.google.com/p/flot/] * */ /* * The rrd_files is a list of * [rrd_id,rrd_file] pairs * All rrd_files must have the same step, the same DSes and the same number of RRAs. * */ /* * The ds_list is a list of * [ds_id, ds_title] pairs * If not defined, the list will be created from the RRDs * */ /* * Local dependencies: * rrdFlotSupport.py * * External dependencies: * [Flot]/jquery.py * [Flot]/jquery.flot.js */ /* graph_options defaults (see Flot docs for details) * { * legend: { position:"nw",noColumns:3}, * lines: { show:true }, * yaxis: { autoscaleMargin: 0.20} * } * * rrd_graph_options is a dictionary of rrd_id, * with each element being a graph_option * The defaults for each element are * { * title: label or rrd_name // this is what is displayed in the checkboxes * checked: true // boolean * label: title or rrd_name // this is what is displayed in the legend * color: rrd_index // see Flot docs for details * lines: { show:true, fill: true, fillColor:color } // see Flot docs for details * } */ function rrdFlotMatrix(html_id, rrd_files, ds_list, graph_options, rrd_graph_options) { this.html_id=html_id; this.rrd_files=rrd_files; if (ds_list==null) { this.ds_list=[]; var rrd_file=this.rrd_files[0][1]; // get the first one... they are all the same var nrDSs=rrd_file.getNrDSs(); for (var i=0; i0) { for (var i=0; i