Merge branch 'collectd-4.3' into collectd-4.4
[collectd.git] / ChangeLog
1 2008-06-03, Version 4.4.1
2         * collectd: Fix the `DataSource' option within `Type' blocks. Thanks
3           to kyrone for reporting this.
4         * collectd: Fixed min/max output in notifications generated by
5           threshold checking.
6         * collectd-nagios: Fix the protocol used to communicate with the
7           daemon.
8         * perl plugin: Fail noisily, but don't shutdown the daemon, if
9           initialization has errors. An issue with Perl 5.10 has been fixed.
10         * teamspeak2 plugin: Fixed an out of bounce array access. Thanks to
11           René Rebe and Siegmund Gorr for reporting this.
12
13 2008-05-06, Version 4.4.0
14         * collectd: Internal code cleanups.
15         * collectd: Added support for a `Flush' command in the unixsock and
16           exec plugins. This command can be used to force a plugin (or all) to
17           flush its values to disk.
18         * collectd: Thresholds can now be configured to apply to one data
19           source only, making it possible to configure different thresholds
20           for each data source.
21         * apache, nginx plugins: Added the possibility to disable host and/or
22           peer verification.
23         * ascent plugin: The new ascent plugin reads and parses the statistics
24           page of an Ascent server.
25         * cpu plugin: Support for the statgrab library has been added.
26         * disk plugin: The possibility to ignore certain disks or collect only
27           specific disks has been added.
28         * disk plugin: Support for the statgrab library has been added.
29         * ipmi plugin: The new ipmi plugin uses the OpenIPMI library to read
30           sensor values via IPMI, the intelligent platform management
31           interface.
32         * iptables plugin: The iptc library that is used by the iptables
33           plugin has been added to the distribution, because it is not
34           provided by all distributions and removed from at least one.
35         * powerdns plugin: The new powerdns plugin reads statistics from an
36           authoritative or a recursing PowerDNS name server.
37         * rrdtool plugin: The size of the files generated with the default
38           configuration has been decreased.
39         * tail plugin: The new tail plugin can be used to gather statistics by
40           continuously reading from log files.
41         * teamspeak2 plugin: The new teamspeak2 plugin connects to a
42           TeamSpeak2 server and collects statistics about the number of users
43           and number of channels.
44         * users plugin: Support for the statgrab library has been added.
45         * vmem plugin: The new vmem plugin collects very detailed statistics
46           about the virtual memory subsystem of Linux.
47
48 2008-04-22, Version 4.3.3
49         * build system: Improved detection of several libraries, especially if
50           they are in non-standard paths.
51         * build system: Portability fixes: Automatically define "_REENTRANT"
52           if the libc expects it.
53         * collectd: Error and warning messages have been improved.
54         * collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
55           using them.
56         * apache plugin: Allocate new memory when reading a webpage instead of
57           using a buffer of static size.
58         * exec plugin: Close (almost) all filedescriptors before exec(2)ing
59           the program.
60         * hddtemp plugin: Error and warning messages have been improved.
61         * sensors plugin: Fix sensor collection for some chip types.
62
63 2008-03-29, Version 4.3.2
64         * collectd: Fix configuration of the `FailureMax', `WarningMax', and
65           `Persist' threshold options.
66         * collectd: Fix handling of missing values in the global value cache.
67         * collectd: Improved error messages when parsing the configuration.
68         * sensors plugin: Fix temperature collection with libsensors4.
69         * unixsock plugin: Fix mixed input and output operation on streams.
70         * wireless plugin: Fix reading noise value.
71
72 2008-03-05, Version 4.3.1
73         * exec plugin: Set supplementary group IDs.
74         * network plugin:
75           + Use `memcpy' when constructing/parsing a package to avoid
76             alignment problems on weird architectures, such as Sparc.
77           + Translate doubles to/from the x86 byte representation to ensure
78             cross-platform compatibility.
79         * ping plugin: Correct the handling of the `TTL' setting.
80         * swap plugin: Reapply a patch for Solaris.
81         * tcpconns plugin: Portability improvements.
82
83 2008-02-18, Version 4.3.0
84         * collectd: Notifications have been added to the daemon. Notifications
85           are status messages that may be associated with a data instance.
86         * collectd: Threshold checking has been added to the daemon. This
87           means that you can configure threshold values for each data
88           instance. If this threshold is exceeded a notification will be
89           created.
90         * collectd: The new `FQDNLookup' option tells the daemon to use the
91           full qualified domain name as the hostname, not just the host part
92           es returned by `gethostname(2)'.
93         * collectd: Support for more than one `TypesDB' file has been added.
94           This is useful when one such file is included in a package but one
95           wants to add custom type definitions.
96         * collectd: The `Include' config option has been expanded to handle
97           entire directories and shell wildcards.
98         * collectdmon: The new `collectdmon' binary detects when collectd
99           terminates and automatically restarts it again.
100         * csv plugin: The CSV plugin is now able to store counter values as a
101           rate, using the `StoreRates' configuration option.
102         * exec plugin: Handling of notifications has been added and the
103           ability to pass arguments to the executed programs has been added.
104         * hddtemp plugin: The new `TranslateDevicename' option lets you
105           disable the translation from device names to major-minor-numbers.
106         * logfile plugin: Handling of notifications has been added.
107         * ntpd plugin: The new `ReverseLookups' can be used to disable reverse
108           domain name lookups in this plugin.
109         * perl plugin: Many internal changes added support for handling multiple
110           threads making the plugin reasonably usable inside collectd. The API has
111           been extended to support notifications and export global variables to
112           Perl plugins; callbacks now have to be identified by name rather than a
113           pointer to a subroutine. The plugin is no longer experimental.
114         * uuid plugin: The new UUID plugin sets the hostname to an unique
115           identifier for this host. This is meant for setups where each client
116           may migrate to another physical host, possibly going through one or
117           more name changes in the process. Thanks to Richard Jones from
118           Red Hat's Emerging Technology group for this plugin.
119         * libvirt: The new libvirt plugin uses the `libvirt' library to query
120           CPU, disk and network statistics about guest systems on the same
121           physical server. Thanks to Richard Jones from Red Hat's Emerging
122           Technology group for this plugin.
123
124 2008-04-22, Version 4.2.7
125         * build system: Improved detection of several libraries, especially if
126           they are in non-standard paths.
127         * build system: Portability fixes: Automatically define "_REENTRANT"
128           if the libc expects it.
129         * collectd: Error and warning messages have been improved.
130         * collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
131           using them.
132         * apache plugin: Allocate new memory when reading a webpage instead of
133           using a buffer of static size.
134         * exec plugin: Close (almost) all filedescriptors before exec(2)ing
135           the program.
136         * hddtemp plugin: Error and warning messages have been improved.
137         * sensors plugin: Fix sensor collection for some chip types.
138
139 2008-03-29, Version 4.2.6
140         * collectd: Improved error messages when parsing the configuration.
141         * sensors plugin: Fix temperature collection with libsensors4.
142         * unixsock plugin: Fix mixed input and output operation on streams.
143         * wireless plugin: Fix reading noise value.
144
145 2008-03-04, Version 4.2.5
146         * apache plugin: Improved initialization and error messages.
147         * exec plugin: Set supplementary group IDs.
148         * network plugin:
149           + Create separate threads for reading from the socket and parsing
150             and dispatching incoming packets. Versions prior to this may have
151             problems in high-load situations, where the socket receive buffers
152             overflows, resulting in gaps in the data.
153           + Use `memcpy' when constructing/parsing a package to avoid
154             alignment problems on weird architectures, such as Sparc.
155           + Translate doubles to/from the x86 byte representation to ensure
156             cross-platform compatibility.
157         * ping plugin: Correct the handling of the `TTL' setting.
158         * rrdtool plugin: Ensure correct handling of the `RRATimespan' option.
159         * swap plugin: Reapply a patch for Solaris.
160         * tcpconns plugin: Portability improvements.
161
162 2008-01-21, Version 4.2.4
163         * unixsock plugin: A bug in the unixsock plugin caused it not to set
164           the permission on the socket as documented in the manpage. Thanks to
165           Evgeny Chukreev for fixing this issue.
166         * collectd: The documentation has been improved.
167
168 2007-12-28, Version 4.2.3
169         * sensors plugin: Updated the plugin to build and work with version 3
170           of the libsensors library.
171
172 2007-12-15, Version 4.2.2
173         * nginx plugin: Incorrect comparison of strings lead to a segfault
174           when using the plugin. Thanks to Saulius Grigaliunas for fixing
175           this.
176         * logfile plugin: The config option `Timestamp' was handled
177           incorrectly and basically always active. Thanks to Luke Heberling
178           for fixing this.
179
180 2007-11-08, Version 4.2.1
181         * tcpconns plugin: Don't complain about a missing file if IPv6 is not
182           enabled on the host.
183         * snmp plugin: Fix a memory leak.
184
185 2007-10-27, Version 4.2.0
186         * collectd: The new config option `Include' lets you include other
187           configfiles and thus split up your config into smaller parts. This
188           may be especially interesting for the snmp plugin to keep the data
189           definitions separate from the host definitions.
190         * ipvs plugin: The new `ipvs' plugin collects IPVS connection statistics
191           (number of connections, octets and packets for each service and
192           destination). Thanks to Sebastian Harl for this plugin.
193         * memcached plugin: The new `memcached' plugin connects to a memcached
194           daemon process and collects statistics of this distributed caching
195           system. Thanks to Antony Dovgal for contributing this plugin.
196         * nginx plugin: The new `nginx' plugin reads the status page of an
197           nginx daemon and saves the handled connections and requests.
198         * perl plugin: Many changes, including the added `EnableDebugger'
199           config option which lets you debug your Perl plugins more easily.
200         * rrdtool plugin: Use the thread-safe RRD-library if available. Try to
201           be more thread-safe otherwise by locking calls to the library.
202         * snmp plugin: Added the options `Scale' and `Shift' to Data-blocks to
203           correct the values returned by SNMP-agents. If a <data> block is
204           defined as `table' the instance is now optional. The sequence number
205           is used as the type-instance in this case. The new `InstancePrefix'
206           option allows to add arbitrary prefixes to the type-instance.
207         * tcpconns plugin: The new `tcpconns' plugin collects the number of
208           certain TCP connections and what state they're in. This can be used
209           to see how many connections your FTP server has to handle or how
210           many outgoing connections your mailserver has open.
211
212 2008-01-11, Version 4.1.6
213         * unixsock plugin: A bug in the unixsock plugin caused it not to set
214           the permission on the socket as documented in the manpage. Thanks to
215           Evgeny Chukreev for fixing this issue.
216         * collectd: The documentation has been improved.
217
218 2007-12-27, Version 4.1.5
219         * rrdtool plugin: Fix a memory leak that only occurred in very-low-
220           memory situations.
221         * sensors plugin: Updated the plugin to build and work with version 3
222           of the libsensors library.
223
224 2007-11-08, Version 4.1.4
225         * Build system: Improve detection of the rrd library, especially if
226           it's in a non-standard location.
227         * Build system: A bug when parsing the argument for
228           `--with-libnetsnmp' has been fixed.
229         * collectd: Implement `strerror_r' if the libc doesn't provide it.
230         * rrdtool plugin: Fix a bug in the shutdown sequence that might cause
231           a deadlock or delay when shutting down the daemon.
232         * snmp plugin: Fix a memory leak.
233
234 2007-10-24, Version 4.1.3
235         * collectd: A build issue under Solaris has been resolved by renaming
236           data types.
237         * rrdtool plugin: Use the thread-safe RRD-library if available. Try to
238           be more thread-safe otherwise by locking calls to the library.
239
240 2007-09-28, Version 4.1.2
241         * apcups plugin: Fix reporting of the `load percent' data.
242         * wireless plugin: Correct the handling of cards returning signal and
243           noise quality as percentage.
244         * perl plugin: Fix a possible buffer overflow in get_module_name().
245         * build system: Further improve the detection of libraries.
246         * netlink plugin: Build issues under some older versions of the Linux
247           includes (i. e. Debian Sarge) have been fixed.
248         * snmp plugin: Fix a potential segfault when a host times out. Add
249           support for the `timeticks' type. 
250
251 2007-09-12, Version 4.1.1
252         * Build system: The detection of `libnetlink' has been improved.
253         * collectd: The documentation has been fixed in numerous places.
254         * exec plugin: Setting the group under which to run a program has been
255           fixed.
256         * collectd: The `sstrerror' function was improved to work correctly
257           with the broken GNU version of `strerror_r'.
258         * collectd: Write an error message to STDERR when loading of a plugin
259           fails.
260         * apcups plugin: Fix the `types' used to submit the values: They still
261           has an `apcups_' prefix which doesn't work anymore.
262         * rrdtool plugin: Create new RRD-files with the `begin' time set to
263           whatever the client thinks is `now'..
264
265 2007-09-01, Version 4.1.0
266         * Build system: The build system has been changed to automatically
267           disable all plugins, which are missing dependencies. The dependency
268           checking has been removed from the plugins themselves to remove
269           redundancy.
270         * Flexible interval: The interval of collected data is now sent along
271           with the data itself over the network, so that the interval-settings
272           of server and clients no longer needs to match.
273         * netlink plugin: The new `netlink' plugin connects to the Linux
274           kernel using a netlink socket and uses it to query information about
275           interfaces, qdiscs and classes.
276         * rrdtool plugin: The cache is now dumped to disk in an extra thread
277           to not block data collection.
278         * snmp plugin: The new `snmp' plugin can read values from SNMP enabled
279           network devices, such as switches, routers, thermometers, rack
280           monitoring servers, etc. The collectd-snmp(5) manpage documents this
281           plugin.
282         * unixsock plugin: Added the `LISTVAL' command.
283         * xmms plugin: The new `xmms' plugin graphs the bitrate and frequency
284           of music played with xmms.
285
286 2007-09-28, Version 4.0.9
287         * apcups plugin: Fix reporting of the `load percent' data.
288         * wireless plugin: Correct the handling of cards returning signal and
289           noise quality as percentage.
290         * perl plugin: Fix a possible buffer overflow in get_module_name().
291
292 2007-09-12, Version 4.0.8
293         * collectd: The `sstrerror' function was improved to work correctly
294           with the broken GNU version of `strerror_r'.
295         * collectd: Write an error message to STDERR when loading of a plugin
296           fails.
297         * apcups plugin: Fix the `types' used to submit the values: They still
298           has an `apcups_' prefix which doesn't work anymore.
299         * rrdtool plugin: Create new RRD-files with the `begin' time set to
300           whatever the client thinks is `now'..
301
302 2007-08-26, Version 4.0.7
303         * documentation: Some typos have been fixed and some information has
304           been improved.
305         * build system: Many fixes for detecting libraries in unusual places,
306           such as on RedHat systems. The affected libraries are `libcurl',
307           `libmysql', and `libupsclient'.
308         * network plugin: Allow the `Port' option to be specified as a number
309           (i. e. without quotes).
310         * nut plugin: A fix allows linking the nut plugin against
311           libupsclient, version >= 2.2.0.
312         * processes plugin: Fix a potential segmentation fault.
313
314 2007-07-30, Version 4.0.6
315         * sensors plugin: Fix the ignorelist functionality: Only the `type
316           instance' was used to match against the list, but the documentation
317           told otherwise. This release fixes the code, so it complies with the
318           documentation.
319         * syslog plugin: Call `openlog' right when the plugin is loaded, so
320           configuration messages will end up in the logging facility.
321         * conrtib/fedora: The contributed specfile for Fedora has been
322           updated.
323
324 2007-07-05, Version 4.0.5
325         * Portability: More fixes for OpenBSD have been included.
326
327 2007-06-24, Version 4.0.4
328         * cpu plugin: Fixed the Solaris code.
329         * dns plugin: Fixed a build issue for OpenBSD.
330         * interface plugin: Fixed the Solaris code.
331         * load plugin: Fixed the alternative `/proc' Linux code.
332         * memory plugin: Fixed the Solaris code.
333         * oconfig: Don't require `-lfl' anymore.
334
335 2007-06-19, Version 4.0.3
336         * cpu plugin: Fix the Darwin / Mac OS X code.
337         * ping plugin: Use the return value of `getpid', not its address.
338         * csv, rrdtool plugin: Fixed a bug that prevented an buffer to be
339           initialized correctly.
340         * configure: Added `--with-nan-emulation' to aid cross compilation.
341
342 2007-06-12, Version 4.0.2
343         * hddtemp and ntpd plugin: Corrected the parsing of port numbers when
344           they're given in numerically form.
345
346 2007-06-07, Version 4.0.1
347         * iptables plugin: A bug in the configuration routine has been fixed.
348           Setting a comment in the configfile will no longer cause a
349           segmentation fault.
350
351 2007-06-03, Version 4.0.0
352         * collectd: The plugin-infrastructure has been changed to allow for
353           more types of plugins, namely `write' and `log' plugins.
354         * collectd: The read-function has been changed to read many plugins in
355           parallel, using threads. Thus, plugins generally need to use
356           thread-safe functions from now on.
357         * collectd: The '-t' command line options allows to perform syntax tests
358           of the configuration file and exit immediately.
359         * csv plugin: The new `csv' plugin handles output to `comma separated
360           values'-files.
361         * rrdtool plugin: The new `rrdtool' plugin handles output to
362           RRD-files. Data can be cached to combine multiple updates into one
363           write to increase IO-performance.
364         * network plugin: The new `network' plugin handles IO via the network.
365           It implements a different, much more extensible protocol which can
366           combine many values in one packet, decreasing the number of UDP-
367           packets being sent. It can read from and send to the network and
368           with the appropriate configuration even forward packets to other
369           networks.
370         * unixsock plugin: The new `unixsock' plugin provides an interface to
371           communicate with the daemon while it is running. Right now the
372           commands `GETVAL' and `PUTVAL' are implemented, but more are to
373           come.
374         * perl plugin: The new `perl' plugin allows you to write extensions
375           for collectd in the scripting-language Perl.
376         * logfile plugin: The new `logfile' plugin writes logmessages to files
377           or STDOUT or STDERR.
378         * syslog plugin: The new `syslog' plugin sends logmessages to the
379           system's syslog daemon.
380         * entropy plugin: The new `entropy' plugin collects the amount of
381           entropy currently being available to the system.
382         * exec plugin: The new `exec' plugin forks child processes and reads
383           back values provided by the forked processes.
384         * iptables plugin: The new `iptables' plugin reads counters from
385           iptables rules. Thanks to Sjoerd van der Berg for contributing this
386           plugin.
387         * irq plugin: The new `irq' plugin collects the IRQ-counters. Thanks
388           to Peter Holik for contributing this plugin.
389         * nut plugin: The new `nut' plugin connects the upsd of the `network
390           ups tools' and reads information about the connected UPS.
391         * apache plugin: Support for lighttpd's `BusyServers' (aka.
392           connections) field was added by Florent Monbillard.
393         * collectd-nagios: The new `collectd-nagios' binary queries values
394           from collectd, parses them and exits according to Nagios-standards.
395         * manpages: The manpages have been improved a lot.
396
397 2007-09-28, Version 3.11.7
398         * wireless plugin: Correct the handling of cards returning signal and
399           noise quality as percentage.
400
401 2007-08-31, Version 3.11.6
402         * processes plugin: Fix a potential segmentation fault.
403
404 2007-05-29, Version 3.11.5
405         * configure: Added `AC_SYS_LARGEFILE' for LFS.
406         * ntpd plugin: Fix a potential buffer overflow.
407         * processes plugin: Fix a bug when run under Linux 2.4. All processes
408           were accounted as `zombies'.
409
410 2007-04-10, Version 3.11.4
411         * dns plugin: Change the order of includes to make the plugin compile
412           under FreeBSD.
413
414 2007-03-30, Version 3.11.3
415         * configure: Have the configure-script define `HAVE_LIBKSTAT' instead
416           of the unused `COLLECT_KSTAT'.
417
418 2007-02-11, Version 3.11.2
419         * plugin: Catch NULL-pointer and try to fix them. Otherwise the
420           NULL-pointer may have been passed to `printf' which causes a
421           segfault with some libcs.
422
423 2007-02-10, Version 3.11.1
424         * df plugin: Some wrong defines have been fixed so the plugin works
425           under Solaris again.
426         * dns plugin: The usage of a struct has been fixed to work with
427           non-GNU libcs.
428         * processes plugin: Some missing defines have been added so the plugin
429           compiles cleanly under FreeBSD and presumably other UNIXes.
430
431 2006-12-22, Version 3.11.0
432         * collectd: The new command line option `-P' makes it easier for
433           distributors to change the location of PID-files.
434         * collectd: The daemon shuts down faster now which makes it easier to
435           write init.d-scripts for it.
436         * apache plugin: Increase the buffersize to 16k, because the 4k buffer
437           caused problems every now and then.
438         * df plugin: New config options allow to ignore certain mountpoints,
439           filesystem types or devices.
440         * dns plugin: The new dns plugin uses `libpcap' to capture DNS traffic
441           and interprets it. It collects traffic as well as qtype, opcode and
442           rcode counts.
443         * email plugin: Sebastian Harl has contributed this plugin which
444           counts received mails in categories (e. g. ham, spam, virus), spam
445           score (as given by SpamAssassin) and check types.
446         * mbmon plugin: Flavio Stanchina has contributed this plugin which
447           uses `mbmon' to gather information from sensors on the motherboard.
448         * processes plugin: Collect detailed statistics for configured
449           processes, that's process and thread count, CPU usage, resident
450           segment size and pagefaults.
451         * multimeter plugin: Peter Holik contributed a new plugin which
452           queries multimeters.
453         * sensors plugin: Lubos Stanek has put much effort into improving this
454           plugin, including `extended naming', collection of voltage values
455           and the possibility to ignore certain values.
456
457 2006-12-21, Version 3.10.4
458         * Max Kellermann has identified a bug in the server routine: When
459           opening a socket fails the daemon will (re)try opening the socket in
460           an endless loop, ultimately leading to a `EMFILE' error.
461
462 2006-11-04, Version 3.10.3
463         * Lubos Stanek has identified a bug in the ntpd-plugin: When the
464           ntpd's reply was sent in more than one packet, the buffer size was
465           calculated incorrectly, resulting in the reading of uninitialized or
466           freed memory.
467
468 2006-11-01, Version 3.10.2
469         * The sample config file has been improved.
470         * Errors in the manpages have been corrected.
471         * The ping-plugin now adds hosts during initialization, not during
472           startup. This speeds up startup when no network connectivity is
473           available. Also, the hosts are being added later when the network is
474           available.
475         * Improved BSD-support for the df-plugin.
476         * Fixed syntax errors in the swap-plugin for Mac OS X.
477         * Fix a wrong structure being passed to `getnameinfo' in the ntpd-
478           plugin.
479         * Don't disable the mysql-plugin if connecting to the database fails
480           during initialization. Instead, try again in increasing intervals.
481
482 2006-07-19, Version 3.10.1
483         * A bug in the apcups plugin was fixed: Is the plugin is loaded, but
484           the apcups cannot be reached, unconnected sockets will pile up and
485           eventually lead to `Too many open files' errors.
486
487 2006-07-09, Version 3.10.0
488         * The `disk' plugin has been ported to Darwin.
489         * The `battery' plugin should work on many Apple computers now.
490         * The `traffic' plugin can now ignore certain interfaces. Also,
491           statistics for sent/received packets and errors have been added.
492         * A plugin to monitor APC UPSes using `apcupsd' has been added. Thanks
493           to Anthony Gialluca for contributing this plugin and providing me
494           with a test environment :)
495         * A plugin for monitoring an NTP instance and the local clock drift
496           has been added.
497
498 2006-06-25, Version 3.9.4
499         * The Solaris code in the `swap' plugin has been changed to reflect
500           the numbers returned by `swap -s'. Thanks to Christophe Kalt for
501           working this out.
502         * The debugging system has been fixed to work with the Sun libc.
503         * When built without librrd the variable `operating_mode' could be
504           uninitialized. Thanks to David Elliot for reporting the bug.
505
506 2006-06-01, Version 3.9.3
507         * Fixed the ping-plugin under FreeBSD and Mac OS X. Potentially other
508           operating systems also profit from the changes, but I wasn't able to
509           check that.
510         * Changed the build system to find the netinet-includes under FreeBSD
511           and therefore successfully build the `liboping' library there.
512
513 2006-05-09, Version 3.9.2
514         * Applied a patch to the `liboping' library. Due to a bug in the
515           sequence checking the `ping' plugin stopped working after
516           approximately 7.6 days.
517
518 2006-05-09, Version 3.8.5
519         * Applied a patch to the `liboping' library. Due to a bug in the
520           sequence checking the `ping' plugin stopped working after
521           approximately 7.6 days.
522
523 2006-04-21, Version 3.9.1
524         * Build issues with Solaris and possible other architectures have been
525           resolved.
526         * Problems when building the `apache'-plugin without `libcurl' have
527           been resolved.
528         * A bug in the `ping' plugin has been fixed. Sorry folks.
529
530 2006-04-02, Version 3.9.0
531         * A plugin to monitor the Apache webserver has been added.
532           <http://httpd.apache.org/>
533         * A plugin to collect statistics about virtual servers using VServer.
534           <http://linux-vserver.org/> Thanks to Sebastian Harl for writing
535           this plugin :)
536         * A plugin for wireless LAN cards has been added. It monitors signal
537           strength, link quality and noise ratio..
538         * A plugin for Apple hardware sensors has been added.
539         * An option to compile collectd with different `step' and `heartbeat'
540           settings has been added. The size of RRAs is no longer static but
541           calculated based on the settings for `step' and `width'.
542         * The `ping' plugin can now be configured to use a certain TTL.
543         * A plugin to monitor the hardware sensors of Apple computers has been
544           added.
545         * The plugins `cpu', `memory', `processes' and `traffic' have been
546           ported to Mach/Darwin (Mac OS X).
547         * The `log mode' has been contributed by Christophe Kalt. It writes
548           the data into text files rather than RRD files.
549
550 2006-04-09, Version 3.8.4
551         * Applied patch by Vincent Stehlé which improves the disk-name
552           resolution in the `hddtemp' plugin for Linux systems.
553
554 2006-04-02, Version 3.8.3
555         * Applied a patch by James Byers: The MySQL plugin was not working
556           with MySQL 5.0.2 or later.
557
558 2006-03-14, Version 3.8.2
559         * `utils_mount.c' has been changed to not use the `MNTTAB' defined by
560           the GNU libc, because it points to `/etc/fstab' rather than
561           `/etc/mtab'.
562
563 2006-03-13, Version 3.8.1
564         * Fixes for building collectd under FreeBSD, Mac OS X and Solaris.
565         * Fixes in the debian `postinst' and `init.d' scripts.
566
567 2006-03-09, Version 3.8.0
568         * The `ping' plugin no longer uses `libping' but a self written
569           library named `liboping'. With this library it's possible to ping
570           multiple IPv4 and IPv6 addresses and hostnames - in parallel.
571
572 2006-02-18, Version 3.7.2
573         * A simple bug in the `battery' plugin has been fixed. It should now
574           work with ACPI based batteries as well. Thanks to Sebastian for
575           fixing this.
576         * Fixing a bug that prevented collectd to be built without librrd.
577           Thanks to Werner Heuser for reporting it.
578
579 2006-02-04, Version 3.7.1
580         * The new network code has been improved to build with older versions
581           of glibc.
582         * Fix in `libping' sets the ICMP sequence on outgoing packets. Thanks
583           to Tommie Gannert for this patch.
584
585 2006-01-30, Version 3.7.0
586         * The `battery' plugin has been added. It collects information about
587           laptop batteries..
588         * The MySQL plugin has been improved: It now writes two more RRD
589           files, `mysql_qcache.rrd' and `mysql_threads.rrd'.
590         * The `cpufreq' plugin now reads another file since the file it did
591           read so far causes much overhead in the kernel. Also, you need root
592           to read the old file, but not to read the new one.
593         * The `hddtemp' plugin can now be configured to connect to another
594           address and/or port than localhost.
595         * The `df' plugin now prefers `statvfs' over `statfs'.
596         * The network code has been rewritten. collectd now supports unicast
597           and multicast, and IPv4 and IPv6. Also, the TTL of sent packages can
598           be set in the configfile.
599
600 2006-01-24, Version 3.6.2
601         * Due to a bug in the configfile handling collectd wouldn't start in
602           client mode. This released fixes this.
603
604 2006-01-20, Version 3.6.1
605         * Due to a bug in `configure.in' all modules and the binary were
606           linked against `libmysqlclient'. This issue is solved by this
607           release.
608
609 2006-01-17, Version 3.6.0
610         * A config file has been added. This allows for loading only specific
611           plugins.
612         * A `df' plugin has been added.
613         * A `mysql' plugin has been added.
614         * The `ping' plugin doesn't entirely give up hope when a socket error
615           occurred, but will back of and increase the intervals between tries.
616
617 2006-01-21, Version 3.5.2
618         * Fixed yet another bug in the signal handling.. Stupid typo..
619         * Improved the ping plugin to not give up on socket errors (backport
620           from 3.6.0).
621
622 2005-12-18, Version 3.5.1
623         * The PID-file is now deleted correctly when shutting down the daemon.
624         * SIGINT and SIGTERM are now handled correctly.
625
626 2005-12-16, Version 3.5.0 (Revision 326)
627         * A bug in the `load' module under Solaris has been fixed.
628         * The `users' module has been contributed by Sebastian Harl. It counts
629           currently logged in users.
630         * The CPU module now works under FreeBSD without the use of
631           `libstatgrab', however SMP support is missing.
632         * The default directories for the RRD files and the PID file now
633           depend on the compile time setting of `localstatedir'.
634
635 2005-11-15, Version 3.4.0 (Revision 236)
636         * A PID-file is written to /var/run upon startup. Thanks to `Tommie'
637           from gentoo's bugzilla for writing the patch.
638         * The build dependency for librrd has been removed. Binaries built
639           without librrd are client-only and will multicast their value as
640           with the `-c' argument.
641         * A patch by Peter Holik adds a module for monitoring CPU frequencies.
642         * The newly introduced `-f' switch prevents daemon initialization
643           (forking, closing standard filehandles, etc.) Thanks to Alvaro
644           Barcellos for this patch.
645
646 2005-11-04, Version 3.3.0 (Revision 216)
647         * New modules have been added:
648           - `serial', for monitoring traffic on the serial interfaces
649           - `nfs', for graphing NFS procedure calls
650           - `tape', traffic from/to tape devices
651         * The memory.rrd now accepts more than 4Gig of memory.
652
653 2005-10-26, Version 3.2.0 (Revision 200)
654         * Support for graphing the processes has been added (thanks to Lyonel
655           Vincent)
656         * If reading from hddtemp fails collectd will increase the time
657           between polls up to one day.
658         * The init.d files have been improved.
659         * Problems with the spec file have been fixed.
660
661 2005-10-16, Version 3.1.0 (Revision 194)
662         * Added the `setsid' syscall to the startup code.
663         * Support for hddtemp has been added (thanks to Vincent Stehlé)
664
665 2005-09-30, Version 3.0.0 (Revision 184)
666         * The ability to send/receive data to/from the network (think
667           multicast) has been added.
668         * Modules have been split up into shared libraries can be loaded at
669           runtime. The biggest advantage is that the core program doesn't need
670           to be linked against an external library.
671         * A patch by George Kargiotakis has been applied: It fixes the sensors
672           behaviour then more than one sensor is being queried.
673
674 2005-09-16, Version 2.1.0 (Revision 172)
675         * A module for swap statistics has been added.
676
677 2005-09-09, Version 2.0.0 (Revision 135)
678         * Filenames can no longer be configured at program startup. The only
679           options as of this version are the directory and ping hosts.
680         * CPU statistics now include Wait-IO. If provided under Linux IRQ and
681           Soft-IRQ statistics are added to `System'. 
682         * Diskstats now collect read and write bytes, not sectors.
683         * Ping statistics can now be collected for more than one host. There
684           is no default any more: If no host is given no host will be pinged.
685         * A self-written patch for libping has been applied so it builds
686           cleanly.
687
688 2005-09-01, Version 1.8.1 (Revision 123)
689         * Much improved configure-script: libraries and features may now be
690           disabled.
691         * More detailed warnings/error messages when RRD update fails.
692
693 2005-08-29, Version 1.8.0:
694         * Support for collecting disk statistics under Solaris.
695
696 2005-08-25, Version 1.7.0:
697         * Support for libstatgrab[1] for load, memory usage and network
698           traffic. CPU- and disk-usage are not (yet) supported, since
699           libstatgrab returns insufficient information. I will contact the
700           authors.
701         * Improved the CPU-initialization code for Solaris. Apparently CPUs
702           aren't necessarily counted linear which is now handled correctly.
703         [1]: http://www.i-scream.org/libstatgrab/
704
705 2005-08-21, Version 1.6.0:
706         * Basic support for Solaris: System load and cpu-usage can be
707           collected under Solaris, too. Other stats will follow later.
708         * Many fixes in the autoconf-script
709         * Collection/Museum scripts have been added under contrib/museum
710         * collectd may now be started in unprivileged mode, though ping
711           statistics will not work.
712
713 2005-07-17, Version 1.5.1:
714         * Diskstats-RRDs now use major/minor for naming. Some systems have
715           weird strings as disk-names..
716
717 2005-07-17, Version 1.5:
718         * A new module, diskstats, has been added. It collects information
719           about the disks and partitions.
720
721 2005-07-11, Version 1.4.2:
722         * The meminfo module has been changed to work with more platforms
723           and/or kernel versions.
724
725 2005-07-10, Version 1.4.1: Correct traffic stats
726         * The traffic rrd-file is now created with DS-type `COUNTER' which I
727           forgot to correct when I changed that module.
728
729 2005-07-09, Version 1.4: More traffic stats
730         * Traffic is now collected for all interfaces that can be found
731         * Temperature-statistics are read from lm-sensors if available
732
733 2005-07-08, Version 1.3: CPU stats
734         * Collecting CPU statistics now
735
736 2004-07-12, Version 1.2: Using syslog
737         * collectd is now using the syslog facility to report errors, warnings
738           and the like..
739         * The default directory is now /var/db/collectd
740
741 2004-07-10, Version 1.1: Minor changes
742         * Nothing really useful to say ;)
743
744 2004-07-09, Version 1.0: Initial Version
745         * The following modules are provided:
746           * Load average
747           * Ping time
748           * Traffic
749           * Memory info