aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* plugin: add nfs pluginJulien Rottenberg2010-09-151-0/+85
|
* plugin/swap: better alignment of graph legendPim van den Berg2010-09-141-7/+7
|
* plugin/memcached: better alignment of graph legendPim van den Berg2010-09-141-22/+16
|
* plugin: add memcached pluginJulien Rottenberg2010-09-141-0/+190
| | | | Support all types of the memcached plugin
* plugin: add netlink pluginPim van den Berg2010-09-121-0/+128
|
* plugin/wireless: better labels and deduplicate codePim van den Berg2010-07-191-18/+11
| | | | | | | Wireless tools for Linux uses these labels: - signal_noice: Noice level - signal_power: Signal level - signal_quality: Link quality
* plugin: add wireless pluginTom Gallacher2010-07-191-0/+42
| | | | Signed-off-by: Pim van den Berg <pim@nethuis.nl>
* Fix typo: Celsius instead of CeliusMichael Stapelberg2010-06-241-1/+1
| | | | Signed-off-by: Pim van den Berg <pim@nethuis.nl>
* Uptime plugin now display current/max/avg values in days instead of secondsManuel CISSÉ2010-06-221-5/+5
|
* plugin/memory: add locked statePim van den Berg2010-05-131-4/+6
| | | | | | Solaris uses 3 memory states: free, locked and used. Reported by: Edmondo Tommasina
* add apache pluginPim van den Berg2010-03-211-0/+51
|
* add conntrack pluginManuel CISSÉ2010-03-061-0/+30
|
* 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
|
* 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
|
* make rrdtool executable configurablePim van den Berg2010-01-1212-13/+13
|
* add swap_io supportPim van den Berg2009-12-311-19/+33
|
* rewrite of type classesPim van den Berg2009-12-3112-192/+47
| | | | | | | | | | | | | | | | | 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-3112-19/+19
| | | | 'on $host' doesn't have to be added manually to rrd_title anymore.
* temporary disable swap_ioPim van den Berg2009-11-151-1/+6
|
* add unixsock flush supportPim van den Berg2009-11-0412-0/+30
| | | | | | | | | | | | | | 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-0412-12/+0
| | | | | | | | | 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.
* change webdir/weburl and include/require usagePim van den Berg2009-09-2812-30/+30
| | | | | | | | - 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.
* initial import of cgpPim van den Berg2009-09-2012-0/+598
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.