aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/detail.php (follow)
Commit message (Collapse)AuthorAgeFilesLines
* detail.php: fix canvas graphsPim van den Berg2014-05-191-1/+1
| | | | | | Include graph.php instead of non-existing plugin/$plugin.php. Closes #75
* inc/collectd: consistently return false instead of an empty array or falsePim van den Berg2014-05-031-3/+1
| | | | | | | | | This means we have to check the return value of these functions for example before doing a foreach. We can't just do a foreach and assume the return value of a function is an array, while it can be false and results in a PHP warning. Closes: https://github.com/pommi/CGP/pull/68
* add graph_type "hybrid" to show canvas on detail page, png on the othersPim van den Berg2014-01-121-0/+4
|
* fix heigth -> height typoPim van den Berg2013-12-291-1/+1
|
* start using fieldset + legend for showing dataPim van den Berg2013-06-221-1/+3
|
* integrate jsrrdgraph in CGPPim van den Berg2013-05-181-1/+6
|
* move width/heigth from plugins to type __constructPim van den Berg2013-05-131-2/+0
|
* detail.php: make terms configurablePim van den Berg2013-02-091-11/+1
|
* remove arguments overview_plugins and other_plugins from plugins_list functionPim van den Berg2012-12-281-8/+2
| | | | Those can be gathered within the function.
* remove in-html comments by xian310Pim van den Berg2012-12-211-1/+1
|
* replace the ajax expand system by a navigation menuxian3102012-12-211-14/+26
| | | | Signed-off-by: Pim van den Berg <pim@nethuis.nl>
* add support for varnish plugin categoriesPim van den Berg2012-09-071-0/+1
| | | | | | | | | | | | | | | Since commit collectd-4.10.0-88-g02e12db the varnish plugin groups collected values in categories. The collectd filestructure used for varnish is now: <plugin>-<category>-<plugin_instance>/<type>-<type_instance> Because this isn't distinguishable from a regular plugin like df, ... df-var-tmp/df_complex-free.rrd ("var" isn't the category here) ... the category is only set with the varnish plugin. Reported-by: Jonathan Huot <jonathan.huot@gmail.com>
* include trailing slash in config weburl variablePim van den Berg2011-10-081-3/+3
| | | | | | | 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>
* resolve php noticesKarol Nowacki2011-04-211-8/+8
| | | | Including a lot of undefined $_GET values.
* better validation of possible user input (get)Pim van den Berg2010-01-011-5/+6
|
* change 6 hour link on detail page to 8 hourPim van den Berg2009-10-111-1/+1
|
* remove laquo from navigationPim van den Berg2009-10-101-1/+1
| | | | | 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.
* make width and heigth of graphs configurablePim van den Berg2009-09-291-0/+6
| | | | | | | | These configuration options have been added: - width - heigth - detail-width - detail-heigth
* layout improvement based on daniel's patchPim van den Berg2009-09-291-1/+1
| | | | | | | | 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-0/+1
| | | | | | | | - 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.
* display term as a list on detail pagePim van den Berg2009-09-201-3/+3
|
* initial import of cgpPim van den Berg2009-09-201-0/+52
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.