aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/graph.php (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-12-29graph: add configurable limit to graph width/heightPim van den Berg1-0/+5
Closes: https://github.com/pommi/CGP/pull/34
2013-12-29fix heigth -> height typoPim van den Berg1-1/+1
2011-04-21resolve php noticesKarol Nowacki1-2/+2
Including a lot of undefined $_GET values.
2010-06-05remove php gd dependencyPim van den Berg1-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.
2010-01-01better validation of possible user input (get)Pim van den Berg1-4/+7
2009-12-31rewrite of type classesPim van den Berg1-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.
2009-09-29make width and heigth of graphs configurablePim van den Berg1-2/+2
These configuration options have been added: - width - heigth - detail-width - detail-heigth