aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/graph.php (follow)
Commit message (Collapse)AuthorAgeFilesLines
* graph: don't overwrite config rrdtool_opts by rrdtool_opts from json pluginPim van den Berg2014-07-161-1/+1
| | | | Closes #86
* add percentile support to network traffic graphsPim van den Berg2014-06-241-0/+3
| | | | | | | Set $CONFIG['percentile'] to a number and a XXth percentile line + legend will be added to all network traffic (if_octets) graphs. Closes #81
* graph.php: fix undefined index 'type' in $plugin_json[$type]Pim van den Berg2014-05-241-0/+3
| | | | | | | When type wasn't set in the plugin json, a "PHP Notice: Undefined index" would pop up. Just default to 'default' when type isn't set. Closes #76 #77
* Add base option (1GB=1024Mo)Poil2014-05-181-0/+3
|
* graph.php: use JSON plugins instead of including PHP plugin filesPim van den Berg2014-05-121-8/+77
| | | | | | | | | | | | 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.
* graph: add configurable limit to graph width/heightPim van den Berg2013-12-291-0/+5
| | | | Closes: https://github.com/pommi/CGP/pull/34
* fix heigth -> height typoPim van den Berg2013-12-291-1/+1
|
* resolve php noticesKarol Nowacki2011-04-211-2/+2
| | | | Including a lot of undefined $_GET values.
* remove php gd dependencyPim van den Berg2010-06-051-16/+4
| | | | | | Image error messages were shown using PHP GD. People who haven't installed PHP GD don't understand what is going on when an image is not shown. It is replaced by a static image referring to the error log for more information.
* better validation of possible user input (get)Pim van den Berg2010-01-011-4/+7
|
* rewrite of type classesPim van den Berg2009-12-311-10/+4
| | | | | | | | | | | | | | | | | 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.
* make width and heigth of graphs configurablePim van den Berg2009-09-291-2/+2
| | | | | | | | These configuration options have been added: - width - heigth - detail-width - detail-heigth
* initial import of cgpPim van den Berg2009-09-201-0/+39
Collectd Graph Panel is a frontend for Collectd written in PHP. The goal of CGP is to provide an easy-to-use frontend for Collectd, starting with page that shows an overview of all the hosts you are managing with Collectd. In this initial import there is support for the plugins that are default enabled in Collectd. The supported plugins are located in the plugin directory.