aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* add unixsock flush supportPim van den Berg2009-11-0415-0/+118
| | | | | | | | | | | | | | 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.
* remove path_format from pluginsPim van den Berg2009-11-0413-17/+17
| | | | | | | | | 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.
* 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
|
* some styling modificationsPim van den Berg2009-10-111-3/+13
|
* replace plus and minus on host page by imagesPim van den Berg2009-10-113-3/+3
|
* change 6 hour link on detail page to 8 hourPim van den Berg2009-10-111-1/+1
|
* dynamic titlePim van den Berg2009-10-101-1/+7
| | | | Show the host and plugin in the title to have a better browsing history.
* remove laquo from navigationPim van den Berg2009-10-102-2/+2
| | | | | You can always return to the main page via the header. From the detail page you can return to the host page by clicking the hostname.
* cpu graph for hosts running a 2.4 kernelPim van den Berg2009-10-031-1/+4
| | | | | There was no cpu graph shown with hosts running a 2.4 kernel, because all defined cpu states were needed.
* make width and heigth of graphs configurablePim van den Berg2009-09-294-4/+17
| | | | | | | | These configuration options have been added: - width - heigth - detail-width - detail-heigth
* prevent warning when no categories are definedPim van den Berg2009-09-291-4/+6
|
* layout improvement based on daniel's patchPim van den Berg2009-09-295-8/+43
| | | | | | | | 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-2815-33/+37
| | | | | | | | - 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-232-0/+12
|
* disable directory indexesPim van den Berg2009-09-231-0/+2
|
* very short installation instructionsPim van den Berg2009-09-231-0/+3
|
* include local config if it existsPim van den Berg2009-09-231-1/+2
| | | | CPG is designed to run out-of-the box. The local config is optional.
* add GPL licensePim van den Berg2009-09-231-0/+674
|
* display term as a list on detail pagePim van den Berg2009-09-202-3/+12
|
* initial import of cgpPim van den Berg2009-09-2027-0/+1312
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.