aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* automatically generate colors for graphs (irq plugin)Pim van den Berg2010-03-011-0/+1
|
* add ntpd pluginManuel CISSÉ2010-03-011-0/+53
|
* add tcpconns pluginManuel CISSÉ2010-03-011-0/+24
|
* add hddtemp pluginManuel CISSÉ2010-03-011-0/+24
|
* add nut pluginManuel CISSÉ2010-03-011-0/+57
|
* add ping pluginManuel CISSÉ2010-03-011-0/+45
|
* automatically generate colors for graphs (sensor plugin)Manuel CISSÉ2010-03-011-3/+1
|
* add vmem pluginManuel CISSÉ2010-03-011-0/+66
|
* correct a bug when graphing multiple DS in multiple filesManuel CISSÉ2010-03-011-2/+2
|
* add the possibility to generate and use default colors for graphsManuel CISSÉ2010-03-012-4/+35
|
* autofill DS names when not specifiedManuel CISSÉ2010-03-011-0/+18
|
* add the ability to graph multiple DS in multiple files (used by vmem plugin)Manuel CISSÉ2010-03-011-2/+13
|
* add uptime pluginManuel CISSÉ2010-03-011-0/+29
|
* add fork rate graph to processes pluginManuel CISSÉ2010-03-011-3/+15
|
* interface traffic in bytes per second (instead of bits)Manuel CISSÉ2010-03-011-1/+1
|
* utf8 filename support for all typesPim van den Berg2010-03-012-24/+24
| | | | | Types GenenericIO and GenericStacked were not included in commit: 596dd7d414 [make rrdfiles using utf8 and spaces work]
* make rrdfiles using utf8 and spaces workJakob Haufe2010-02-162-19/+22
|
* add compatibility if rrdinfo doesn't work as expectedPim van den Berg2010-01-121-3/+17
|
* show error when no hosts are found in datadirPim van den Berg2010-01-121-1/+2
|
* make browser cache time for images configurablePim van den Berg2010-01-122-1/+7
|
* make rrdtool executable configurablePim van den Berg2010-01-1217-18/+40
|
* update changelog to v0.2Pim van den Berg2010-01-021-0/+10
|
* show all type instances in one graphPim van den Berg2010-01-012-11/+6
| | | | | | | | | | 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-017-18/+55
|
* add swap_io supportPim van den Berg2009-12-311-19/+33
|
* rewrite of type classesPim van den Berg2009-12-3117-324/+198
| | | | | | | | | | | | | | | | | 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.
* always show 'on $host' in the rrd titlePim van den Berg2009-12-3113-20/+20
| | | | 'on $host' doesn't have to be added manually to rrd_title anymore.
* replace duplicate code by function rrd_optionsPim van den Berg2009-12-283-17/+11
|
* replace duplicate code by function plugin_headerPim van den Berg2009-12-283-5/+21
|
* load plugins on the host page via ajaxPim van den Berg2009-12-055-4/+75
|
* temporary disable swap_ioPim van den Berg2009-11-151-1/+6
|
* add descriptions to configuration settingsPim van den Berg2009-11-041-6/+13
|
* code cleanup in rrdtool classPim van den Berg2009-11-041-3/+0
|
* 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
|