aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/disk.php (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-12graph.php: use JSON plugins instead of including PHP plugin filesPim van den Berg1-49/+0
A couple of big changes here. A lot of logic moved to graph.php. The PHP plugin files have been rewritten to JSON. In these JSON files *everything* is optional. Also *NOT* having a JSON plugin file won't block you from having a graph. The JSON will just make the graphs prettier (by having a title, y-axis title, legend, colors, etc..). The Collectd types.db file is parsed and used to determine RRD content. When things are not defined in the JSON it will fallback to a default.
2014-05-03rename ds_names and dsname to legendPim van den Berg1-1/+1
This had nothing to do with an RRD data source.
2014-05-03move collectd_flush function to base classPim van den Berg1-2/+0
2014-05-03type/Default: don't depend on external function GETPim van den Berg1-1/+1
2013-05-13move width/heigth from plugins to type __constructPim van den Berg1-2/+0
2012-09-05apply datasize (bytes/bits) only to network related dataPim van den Berg1-2/+1
As discussed in https://github.com/pommi/CGP/pull/1.
2012-08-10introduce config option datasize to show graphs in bits or bytesPim van den Berg1-1/+2
Config setting $CONFIG['datasize'] can be set to bits or bytes to show graph data in bits or bytes. Inspired-by: Neptune Ning (Plan) <frostyplanet@gmail.com>
2011-04-05plugin/disk: SI magnitude units in legend for disk_merged and disk_opsPim van den Berg1-2/+2
2010-10-10plugin: remove php close tagsPim van den Berg1-2/+0
2010-09-17automatic alignment of graph legendPim van den Berg1-1/+1
Function fill_ds_names is renamed to parse_ds_names and now also appends spaces to ds_names to make them equal of lenght.
2010-01-12make rrdtool executable configurablePim van den Berg1-1/+1
2009-12-31rewrite of type classesPim van den Berg1-17/+7
A constructor is added to the Type_Default class. The constructor will parse GET values (such as host, plugin, pinstance, type, tinstance, seconds), create an array of all needed rrd files to generate a graph and substract identifiers from these rrd files. Because of the constructor (and related functions) it is not needed to define an array of tinstances to be grouped and shown in one graph. Also $obj->args don't have to be defined per plugin. This will result in smaller plugin files. The type classes are based on the fact that a plugin has multiple type instances OR multiple rrd data sources. This is called the source and is retrieved by rrd_get_sources in each rrd_gen_graph function. Also variables in function rrd_gen_graph have been renamed to better ones.
2009-12-31always show 'on $host' in the rrd titlePim van den Berg1-4/+4
'on $host' doesn't have to be added manually to rrd_title anymore.
2009-11-04add unixsock flush supportPim van den Berg1-0/+3
Via the UnixSock plugin of Collectd it is possible to send commands to the Collectd daemon. One of the commands is the FLUSH command, which you can use to let the daemon write cached data to the rrd files. CGP uses the FLUSH command before generating a graph and before showing the load information on the main page. In this case the information shown via CGP is always up-to-date. Also when you have configured the RRDTool plugin of Collectd with a CacheTimeout setting. This commit includes code based on functions collectd_identifier and collectd_flush from php-collection by Bruno Prémont.
2009-11-04remove path_format from pluginsPim van den Berg1-1/+0
The relative path to an rrd file can be generated based on host, plugin, plugin instance, type and type instance. In this case path_format is not needed anymore. This commit includes code based on the collectd_identifier function from php-collection by Bruno Prémont.
2009-09-28change webdir/weburl and include/require usagePim van den Berg1-2/+2
- Don't depend on includes from files that are included. - Don't use webdir with includes/requires (also because webdir couldn't be available in some cases). - Use common.inc.php instead of config.php in all plugins to have all configuration settings available.