aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* include trailing slash in config weburl variablePim van den Berg2011-10-082-6/+6
| | | | | | | When running CGP in the root, the header didn't link to the overview page because the href was empty. Reported-by: Nikoli <Nikoli@lavabit.com>
* plugin/libvirt: collectd 5 compatibilityPim van den Berg2011-07-041-2/+3
|
* plugin: add libvirt pluginPim van den Berg2011-07-041-1/+1
|
* log unixsock errors instead of printing themPim van den Berg2011-06-151-6/+6
| | | | | These errors got concatenated in front of the image, which resulted in an invalid image.
* resolve php noticesKarol Nowacki2011-04-212-10/+17
| | | | Including a lot of undefined $_GET values.
* fallback to non-annotated tags in version detectionPim van den Berg2011-03-101-1/+1
|
* add version information to footerPim van den Berg2011-03-091-1/+15
|
* add links to footerPim van den Berg2011-03-011-1/+2
|
* inc/collectd: improve determining which files to group in 1 graphPim van den Berg2010-10-041-33/+44
| | | | | | | | | | | | Previously graphs were created by collecting and merging all PIs, Ts and TIs separately. This went wrong when a part of a plugin had a PI and another part had not (processes plugin). It also went wrong when a P-PI combination had different Ts and TIs (bind plugin). This is solved by using grouped and deduplicated plugindata. -- P = plugin, PI = plugin instance, T = type, TI = type instance
* inc/collectd: simplify the way collectd_plugindata gathers its dataPim van den Berg2010-09-191-23/+10
| | | | A couple of preg_replaces are replaced by one simple but effective preg_match.
* default graph time range is now configurable (not only for uptime)Pim van den Berg2010-06-261-3/+5
|
* use the same time range for the link to the detail pagePim van den Berg2010-06-221-4/+7
|
* Default time range on the summary page is now configurableManuel CISSÉ2010-06-221-1/+3
|
* remove php gd dependencyPim van den Berg2010-06-051-0/+6
| | | | | | 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.
* Define alternating odd/even css classes for rows in main summaryEdmondo Tommasina2010-05-291-1/+7
| | | | | | To select different background colors for the rows in the main summary page, just uncomment the tr.odd/tr.even background definition in layout/style.css and set the color.
* configuration option to show load averages on overview pagePim van den Berg2010-03-061-14/+16
|
* make rrdfiles using utf8 and spaces workJakob Haufe2010-02-161-3/+6
|
* add compatibility if rrdinfo doesn't work as expectedPim van den Berg2010-01-121-3/+17
|
* make rrdtool executable configurablePim van den Berg2010-01-122-2/+13
|
* show all type instances in one graphPim van den Berg2010-01-011-1/+3
| | | | | | | | | | Planned for collectd version 5.0 is to move the type instance of plugins df and interface to the plugin instance (see source). From version 5.0 the default is to group data from a type instance OR data source in one graph. In case of version 4 there are only 2 plugins to exclude from this: df and interface. Source: http://collectd.org/wiki/index.php/Plans_for_5.0
* better validation of possible user input (get)Pim van den Berg2010-01-013-5/+37
|
* rewrite of type classesPim van den Berg2009-12-311-17/+0
| | | | | | | | | | | | | | | | | 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.
* replace duplicate code by function plugin_headerPim van den Berg2009-12-281-0/+16
|
* load plugins on the host page via ajaxPim van den Berg2009-12-051-0/+1
|
* code cleanup in rrdtool classPim van den Berg2009-11-041-3/+0
|
* add unixsock flush supportPim van den Berg2009-11-042-0/+83
| | | | | | | | | | | | | | 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.
* make dynamic title more detailedPim van den Berg2009-10-251-4/+17
| | | | | Include information in the title about the host, plugin, plugin instance, type and type instance.
* remove code duplication from function graphs_from_pluginPim van den Berg2009-10-111-21/+5
|
* dynamic titlePim van den Berg2009-10-101-1/+7
| | | | Show the host and plugin in the title to have a better browsing history.
* 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
* layout improvement based on daniel's patchPim van den Berg2009-09-291-0/+9
| | | | | | | | The page is divided into a header, content and footer. It is styled better and the header links to the main page. Patch from Daniel von Fange (Leancoder): http://pommi.nethuis.nl/storage/software/cgp/leancoder-css.cgp-v-0-1.patch
* change webdir/weburl and include/require usagePim van den Berg2009-09-281-3/+5
| | | | | | | | - 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.
* add a footer to each pagePim van den Berg2009-09-231-0/+1
|
* initial import of cgpPim van den Berg2009-09-203-0/+246
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.