aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-03-10plugin/postgresql: create fallback for unknown typesPim van den Berg1-2/+1
2011-03-10plugin/postgresql: make postgresql plugin compatible with cgpPim van den Berg1-56/+40
2011-03-10plugin: add postgresql pluginBenjamin Dupuis1-0/+65
Source: http://www.quake.fr/tmp/plugin_bdu.tar.gz
2011-03-09plugin/filecount: change color of files graphPim van den Berg1-1/+1
2011-03-08plugin: add filecount pluginPim van den Berg1-0/+37
2011-03-08plugin/cpufreq: Y-axis is in hertzPim van den Berg1-1/+1
2011-02-05replace function generate_colors by rainbow_colorsPim van den Berg13-14/+0
When no colors are defined they will be generated by function rainbow_colors.
2011-02-04plugin/dns: generate colors in type dns_opcodePim van den Berg1-6/+1
2011-01-29plugin: add dns pluginPim van den Berg1-0/+58
2010-12-17plugin/apache: add support for lighttpdPim van den Berg1-1/+49
States are ordered by the order of handling a request, connect on top. Reference: http://redmine.lighttpd.net/wiki/1/Docs:InternalHTTPStates
2010-12-17plugin/apache: pinstance was not shown in titlePim van den Berg1-5/+5
2010-12-17plugin/apache: bytes, connections, idle_workers, requests supportPim van den Berg1-34/+94
Support has been added for the following types: - apache_bytes - apache_connections - apache_idle_workers - apache_requests
2010-11-05plugin: add vserver pluginRex Tsai1-0/+135
Signed-off-by: Pim van den Berg <pim@nethuis.nl>
2010-10-17plugin: add nginx pluginPim van den Berg1-0/+55
2010-10-12plugin: add mysql pluginPim van den Berg1-0/+103
2010-10-12plugin/sensors: fix layout examplePim van den Berg1-4/+4
2010-10-12plugin: add battery pluginPim van den Berg1-0/+42
2010-10-10plugin: remove php close tagsPim van den Berg26-51/+0
2010-10-10plugin: add cpufreq pluginPim van den Berg1-0/+22
2010-10-04plugin: add bind pluginPim van den Berg1-0/+20
Very basic support for bind.
2010-10-04plugin/processes: support for monitoring specific processesPim van den Berg1-20/+163
2010-09-17automatic alignment of graph legendPim van den Berg11-53/+52
Function fill_ds_names is renamed to parse_ds_names and now also appends spaces to ds_names to make them equal of lenght.
2010-09-15plugin/nfs: clean up some duplicate codePim van den Berg1-5/+2
2010-09-15plugin/nfs: remove ds_names to keep it simpleJulien Rottenberg1-44/+0
2010-09-15plugin: add nfs pluginJulien Rottenberg1-0/+85
2010-09-14plugin/swap: better alignment of graph legendPim van den Berg1-7/+7
2010-09-14plugin/memcached: better alignment of graph legendPim van den Berg1-22/+16
2010-09-14plugin: add memcached pluginJulien Rottenberg1-0/+190
Support all types of the memcached plugin
2010-09-12plugin: add netlink pluginPim van den Berg1-0/+128
2010-07-19plugin/wireless: better labels and deduplicate codePim van den Berg1-18/+11
Wireless tools for Linux uses these labels: - signal_noice: Noice level - signal_power: Signal level - signal_quality: Link quality
2010-07-19plugin: add wireless pluginTom Gallacher1-0/+42
Signed-off-by: Pim van den Berg <pim@nethuis.nl>
2010-06-24Fix typo: Celsius instead of CeliusMichael Stapelberg1-1/+1
Signed-off-by: Pim van den Berg <pim@nethuis.nl>
2010-06-22Uptime plugin now display current/max/avg values in days instead of secondsManuel CISSÉ1-5/+5
2010-05-13plugin/memory: add locked statePim van den Berg1-4/+6
Solaris uses 3 memory states: free, locked and used. Reported by: Edmondo Tommasina
2010-03-21add apache pluginPim van den Berg1-0/+51
2010-03-06add conntrack pluginManuel CISSÉ1-0/+30
2010-03-01automatically generate colors for graphs (irq plugin)Pim van den Berg1-0/+1
2010-03-01add ntpd pluginManuel CISSÉ1-0/+53
2010-03-01add tcpconns pluginManuel CISSÉ1-0/+24
2010-03-01add hddtemp pluginManuel CISSÉ1-0/+24
2010-03-01add nut pluginManuel CISSÉ1-0/+57
2010-03-01add ping pluginManuel CISSÉ1-0/+45
2010-03-01automatically generate colors for graphs (sensor plugin)Manuel CISSÉ1-3/+1
2010-03-01add vmem pluginManuel CISSÉ1-0/+66
2010-03-01add uptime pluginManuel CISSÉ1-0/+29
2010-03-01add fork rate graph to processes pluginManuel CISSÉ1-3/+15
2010-03-01interface traffic in bytes per second (instead of bits)Manuel CISSÉ1-1/+1
2010-01-12make rrdtool executable configurablePim van den Berg12-13/+13
2009-12-31add swap_io supportPim van den Berg1-19/+33
2009-12-31rewrite of type classesPim van den Berg12-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.