Code

Bump version to 4.10.6; Update ChangeLog.
[collectd.git] / ChangeLog
1 2012-02-05, Version 4.10.6
2         * Build system: Fix problems when building the ipvs and iptables
3           plugins. Thanks to Sebastian Harl for his patch. A bashism in the
4           version-gen.sh script has been fixed. Thanks to Jo-Philipp Wich for
5           his patch.
6         * csv and rrdtool plugins: Print a more helpful error message when the
7           DataDir is a symlink pointing to a non-existing location. Thanks to
8           Jonathan Nieder for his patch.
9         * oracle plugin: A potential endless loop in the error handling has
10           been fixed.
11         * python plugin: A crash bug in the configuration handling has been
12           fixed. Thanks to Sven Trenkel for his patch.
13         * interfaces plugin: The change which was supposed to ignore "bogus"
14           interfaces has been reverted, since it ignored legit interfaces, such
15           as bonding pseudo-devices as well.
17 2012-01-21, Version 4.10.5
18         * curl_xml plugin: Fix handling of file:// and other URLs (which don't
19           follow HTTP status codes). Thanks to Fabien Wernli for his patch!
20         * df plugin: Fix handling of negative "available" counts. This can
21           occur with some file systems, for example UFS. Thanks to Toni Ylenius
22           for his patch.
23         * interface plugin: "mac" interfaces are now ignored on Solaris. These
24           pseudo-interfaces occur multiple times, causing warnings. Also switch
25           to 64-bit counters on Solaris, improving overflow behavior for
26           high-speed interfaces. Thanks to Eddy Geez and Fabien Wernli for
27           their patches.
28         * memory plugin: Account kernel and unused memory under Solaris. Thanks
29           to Fabien Wernli for his patch.
30         * network plugin: A bug in the interaction between the Network plugin
31           and filter chains has been fixed: When a filter modified a field such
32           as the hostname, subsequent values in the same network packets could
33           have ended up using the modified name rather than the original name.
34           Thanks to Sebastian Harl for identifying the problem.
35         * oracle plugin: A memory leak has been fixed in the parameter handling.
36         * python plugin: A memory leak has been fixed. Thanks to Sven Trenkel
37           for fixing this bug!
39 2011-10-14, Version 4.10.4
40         * collectd: A mutex leak has been fixed in the meta data code. Thanks
41           to Rafal Lesniak for his patch.
42         * collectd: Compatibility fixes for GCC 4.6 have been applied. Thanks
43           to Peter Green for his patch.
44         * csv plugin: The line buffer size has been increased. Thanks to Colin
45           McCabe for the patch.
46         * curl_json plugin: Don't use the "parent" node to build the type
47           instance, if it is empty. Compatibility with libyajl 2 has been
48           added. Thanks to "spupykin" of the Arch Linux project for the initial
49           code.
50         * iptables plugin: Fix linking with some versions of libiptc.
51         * irq plugin: Fix support for interrupts under Linux. The old code
52           assumed that interrupts have a numeric value -- this is no longer
53           true for Linux. Thanks to Bostjan Skufca for implementing this.
54         * notify_desktop plugin: Compatibility with libnotify 0.7 has been
55           added. Thanks to Samuli Suominen for his patch.
56         * processes plugin: Fix handling of regular expressions containing
57           spaces. Thanks for Sebastian Harl for fixing this.
58         * rrdtool, rrdcached plugins: Improve precision of the XFF parameter.
59           Previously, values like 0.999 would have been rounded to 1.0. Thanks
60           to Francois-Xavier Bourlet for fixing this.
61         * Various plugin: Set a multi-threading flag in libcurl. Thanks to Mike
62           Flisher for the fix.
64 2011-03-26, Version 4.10.3
65         * Documentation: Several updates and additions. Thanks to Sebastian Harl.
66         * collectd: Build issues (compiler warnings) have been fixed. Thanks to
67           Bruno Prémont.
68         * collectd: Threshold subsection: Handling of NAN values in the
69           percentage calculation has been fixed.
70         * collectd, java plugin, ntpd plugin: Several diagnostic messages have
71           been improved.
72         * curl_json plugin: Handling of arrays has been fixed.
73         * libvirt plugin: A bug in reading the virtual CPU statistics has been
74           fixed. Thanks to “JLPC” for reporting this problem.
75         * modbus plugin: Compatibility with libmodbus 2.0.3 has been restored.
76         * processes plugin: Potentially erroneous behavior has been fixed in an
77           error handling case.
78         * python plugin: Fix dispatching of values from Python scripts to
79           collectd. Thanks to Gregory Szorc for finding and fixing this
80           problem.
82 2010-11-27, Version 4.10.2
83         * Documentation: Various documentation fixes.
84         * collectd: If including one configuration file fails, continue with
85           the rest of the configuration if possible.
86         * collectd: Fix a bug in the read function scheduling. In rare cases
87           read functions may not have been called as often as requested.
88         * collectd: Concurrency issues with errno(3) under AIX have been
89           fixed: A thread-safe version of errno has to be requested under AIX.
90           Thanks to Aurélien Reynaud for his patch.
91         * collectd: A left-over hard-coded 2 has been replaced by the
92           configurable timeout value.
93         * curl, memcachec, tail plugins: Fix handling of "DERIVE" data
94           sources. Matching the end of a string has been improved; thanks to
95           Sebastian Harl for the patch.
96         * curl_json plugin: Fix a problem when parsing 64bit integers. Reading
97           JSON data from non-HTTP sources has been fixed.
98         * netapp plugin: Pass the interval setting to the dispatch function.
99           Restore compatibility to NetApp Release 7.3. Thanks to Sven Trenkel
100           for the patch.
101         * network plugin: Be less verbose about unchecked signatures, in order
102           to prevent spamming the logs.
103         * notify_email plugin: Concurrency problems have been fixed.
104         * python plugin: Set "sys.argv", since many scripts don't expect that
105           it may not be set. Thanks to Sven Trenkel for the patch.
106         * rrdtool, rrdcached plugin: Fix a too strict assertion when creating
107           RRD files.
108         * swap plugin: A bug which lead to incorrect I/O values has been
109           fixed.
110         * value match: A minor memory leak has been fixed. Thanks to Sven
111           Trenkel for the patch.
113 2010-07-09, Version 4.10.1
114         * Build system: Checking for "strtok_r" under Solaris has been fixed.
115         * Portability: Fixes for Solaris 8 have been applied. Thanks to
116           Alexander Wuerstlein for his patch.
117         * collectd: The shutdown speed when terminating the read threads has
118           been improved.
119         * libcollectdclient: A format error in the PUTVAL command has been
120           removed. Thanks to Johan Van den Brande for fixing this.
121         * df plugin: An error message shown when "cu_mount_getlist" fails has
122           been added.
123         * processes plugin: Missing initialization code for IO members of a
124           struct has been added. Thanks to Aurélien Reynaud for fixing this.
125         * python plugin: Memory leaks in the write and notification callbacks
126           have been fixed. A possible crash when the plugin was loaded but not
127           configured has been fixed. Thanks to Sven Trenkel for his patches.
128         * snmp plugin: Verbosity with regard to unknown ASN types has been
129           increased. A build problem on PowerPC and ARM processors has been
130           fixed by Aurélien Reynaud; thanks!
131         * powerdns plugin: Compatibility changes for PowerDNS 2.9.22 and above
132           have been applied. Thanks to Luke Heberling for his changes.
134 2010-05-01, Version 4.10.0
135         * collectd: JSON output now includes the "dstypes" and "dsnames"
136           fields. This makes it easier for external applications to interpret
137           the data. Thanks to Chris Buben for his work.
138         * collectd: The new "Timeout" option can be used to specify a
139           "timeout" for missing values. This is used in the threshold checking
140           code to detect missing values. Thanks to Andrés J. Díaz for the
141           patch.
142         * apache plugin: Support for "IdleWorkers" (Apache 1.*: "IdleServers")
143           has been added.
144         * curl plugin: The new "ExcludeRegex" allows to easily exclude certain
145           lines from the match.
146         * curl_xml plugin: This new plugin allows to read XML files using cURL
147           and extract metrics included in the files. Thanks to Amit Gupta for
148           his work.
149         * filecount plugin: The new "IncludeHidden" option allows to include
150           "hidden" files and directories in the statistics. Thanks to Vaclav
151           Malek for the patch.
152         * logfile plugin: The new "PrintSeverity" option allows to include the
153           severity of a message in the output. Thanks to Clément Stenac for
154           his patch.
155         * memcachec plugin: The new "ExcludeRegex" allows to easily exclude
156           certain lines from the match.
157         * modbus plugin: This new plugin allows to read registers from
158           Modbus-TCP enabled devices.
159         * network plugin: The new "Interface" option allows to set the
160           interface to be used for multicast and, if supported, unicast
161           traffic. Thanks to Max Henkel for his work.
162         * openvpn plugin: The "CollectUserCount" and "CollectIndividualUsers"
163           options allow more detailed control over how to report sessions of
164           multiple users. Thanks to Fabian Schuh for his work.
165         * pinba plugin: This new plugin receives timing information from the
166           Pinba PHP extension, which can be used for profiling PHP code and
167           webserver performance. Thanks to Phoenix Kayo for his work.
168         * ping plugin: The new "MaxMissed" allows to re-resolve a hosts
169           address when it doesn't reply to a number of ping requests. Thanks
170           to Stefan Völkel for the patch.
171         * postgresql plugin: The "Interval" config option has been added. The
172           plugin has been relicensed under the 2-clause BSD license. Thanks to
173           Sebastian Harl for his work.
174         * processes plugin: Support for "code" and "data" virtual memory sizes
175           has been added. Thanks to Clément Stenac for his patch.
176         * python plugin: Support for Python 3 has been implemented. Thanks to
177           Sven Trenkel for his work.
178         * routeros plugin: Support for collecting CPU load, memory usage, used
179           and free disk space, sectors written and number of bad blocks from
180           MikroTik devices has been added.
181         * swap plugin: Support for Linux < 2.6 has been added. Thanks to Lorin
182           Scraba for his patch.
183         * tail plugin: The new "ExcludeRegex" allows to easily exclude certain
184           lines from the match. Thanks to Peter Warasin for his patch.
185         * write_http plugin: The "StoreRates" option has been added. Thanks to
186           Paul Sadauskas for his patch.
187         * regex match: The "Invert" option has been added. Thanks to Julien
188           Ammous for his patch.
190 2011-03-26, Version 4.9.5
191         * Documentation: Several updates and additions. Thanks to Sebastian Harl.
192         * collectd: Build issues (compiler warnings) have been fixed. Thanks to
193           Bruno Prémont.
194         * collectd: Threshold subsection: Handling of NAN values in the
195           percentage calculation has been fixed.
196         * collectd, java plugin, ntpd plugin: Several diagnostic messages have
197           been improved.
198         * libvirt plugin: A bug in reading the virtual CPU statistics has been
199           fixed. Thanks to “JLPC” for reporting this problem.
200         * processes plugin: Potentially erroneous behavior has been fixed in an
201           error handling case.
202         * python plugin: Fix dispatching of values from Python scripts to
203           collectd. Thanks to Gregory Szorc for finding and fixing this
204           problem.
206 2010-11-27, Version 4.9.4
207         * Documentation: Various documentation fixes.
208         * collectd: If including one configuration file fails, continue with
209           the rest of the configuration if possible.
210         * collectd: Fix a bug in the read function scheduling. In rare cases
211           read functions may not have been called as often as requested.
212         * collectd: Concurrency issues with errno(3) under AIX have been
213           fixed: A thread-safe version of errno has to be requested under AIX.
214           Thanks to Aurélien Reynaud for his patch.
215         * curl, memcachec, tail plugins: Fix handling of "DERIVE" data
216           sources. Matching the end of a string has been improved; thanks to
217           Sebastian Harl for the patch.
218         * curl_json plugin: Fix a problem when parsing 64bit integers. Reading
219           JSON data from non-HTTP sources has been fixed.
220         * netapp plugin: Pass the interval setting to the dispatch function.
221           Restore compatibility to NetApp Release 7.3. Thanks to Sven Trenkel
222           for the patch.
223         * network plugin: Be less verbose about unchecked signatures, in order
224           to prevent spamming the logs.
225         * notify_email plugin: Concurrency problems have been fixed.
226         * python plugin: Set "sys.argv", since many scripts don't expect that
227           it may not be set. Thanks to Sven Trenkel for the patch.
228         * rrdtool, rrdcached plugin: Fix a too strict assertion when creating
229           RRD files.
230         * value match: A minor memory leak has been fixed. Thanks to Sven
231           Trenkel for the patch.
233 2010-07-09, Version 4.9.3
234         * Build system: Checking for "strtok_r" under Solaris has been fixed.
235         * Portability: Fixes for Solaris 8 have been applied. Thanks to
236           Aurélien Reynaud and Alexander Wuerstlein for their patches.
237         * collectd: The shutdown speed when terminating the read threads has
238           been improved.
239         * collectd-nagios: The format of the performance data has been fixed.
240         * libcollectdclient: A format error in the PUTVAL command has been
241           removed. Thanks to Johan Van den Brande for fixing this.
242         * df plugin: An error message shown when "cu_mount_getlist" fails has
243           been added.
244         * processes plugin: Missing initialization code for IO members of a
245           struct has been added. Thanks to Aurélien Reynaud for fixing this.
246         * python plugin: Memory leaks in the write and notification callbacks
247           have been fixed. A possible crash when the plugin was loaded but not
248           configured has been fixed. Thanks to Sven Trenkel for his patches.
249         * rrdcached plugin: A build issue has been resolved. Thanks to
250           Thorsten von Eicken for the patch.
251         * snmp plugin: Verbosity with regard to unknown ASN types has been
252           increased. A build problem on PowerPC and ARM processors has been
253           fixed by Aurélien Reynaud; thanks!
254         * powerdns plugin: Compatibility changes for PowerDNS 2.9.22 and above
255           have been applied. Thanks to Luke Heberling for his changes.
257 2010-04-22, Version 4.9.2
258         * Build system, various plugins: Fixes for AIX compatibility have been
259           added. Thanks to Manuel Sanmartin for his patches.
260         * Build system: Checking for "nanosleep" on old Solaris machines has
261           been fixed. Thanks to Vincent McIntyre and Sebastian Harl for
262           figuring out a way to make this work.
263         * collectd: Append a newline to messages written to STDERR.
264         * collectd: Serialization of NANs in JSON format has been fixed.
265           Thanks to Chris Buben for pointing out the resulting syntax error.
266         * collectd: Checks whether a "sleep" returned early have been added;
267           the cases are now handled correctly. Thanks to Michael Stapelberg
268           for the patch.
269         * collectd: Continue reading files in a directory when parsing one
270           file fails.
271         * apache plugin: Collection of the number of active connections has
272           been fixed for Apache 2.*.
273         * contextswitch plugin: Handle large counter/derive values correctly.
274           Thanks to Martin Merkel for reporting the bug.
275         * exec plugin: Error messages have been improved. The "running" flag
276           is now cleared correctly when forking a child fails.
277         * iptables plugin: Fix a violation of aliasing rules. This resolves a
278           warning / error with new GCC versions. Thanks to Jan Engelhardt for
279           the work-around.
280         * java plugin: The Java API files are now packaged into a .jar file.
281           Thanks to Amit Gupta for his patch.
282         * network plugin: Fix a segmentation fault when receiving packets with
283           an unknown data source type.
284         * network plugin: A memory leak when receiving encrypted network
285           packets has been fixed.
286         * openvpn plugin: Fix naming schema when reading "MULTI1" type status
287           files.
288         * oracle plugin: Fix checking for lost connections and reconnect in
289           this case. Thanks to Sven Trenkel for pointing out the problem.
290         * unixsock plugin: A memory leak in the "LISTVAL" command has been
291           fixed. Thanks to Peter Warasin for pointing it out.
292         * write_http plugin: Use the "any" authentication schema. This used to
293           be "digest". Thanks to Paul Sadauskas for the patch.
295 2010-01-14, Version 4.9.1
296         * Documentation: Some manpage fixes.
297         * Default config: Added sample configuration for missing plugins.
298         * apache plugin: Fix a segmentation fault in the config handling of
299           VerifyPeer / VerifyHost. Thanks to "plazmus" for his or her patch.
300         * processes plugin: Fix handling of derive data sources.
301         * rrdtool plugin: Fix a bug with random write timeouts. Due to an
302           incorrect initialization some files may be suspended basically
303           indefinitely. After flushing the files they were written regularly
304           again.
305         * routeros plugin: Use the node name for the "host" field.
306         * Monitorus.pm: Put the plugin into the "Collectd::Plugins" namespace.
307         * Perl bindings: Fix a warning that was printed when building
308           debugging output.
310 2009-12-21, Version 4.9.0
311         * contextswitch plugin: The new ContextSwitch plugin gathers the
312           number of context switches done by the CPU. Thanks to Patrik
313           Weiskircher for the patch.
314         * cpu plugin: Support for SMP (multiple processors) under FreeBSD has
315           been added. Thanks to Doug MacEachern for the patch.
316         * curl plugin: The “MeasureResponseTime” option has been added. Thanks
317           to Aman Gupta for the patch.
318         * df plugin: Collecting the inode count and reserved space has been
319           added. Thanks to Patrik Weiskircher for the patch.
320         * exec plugin: The environment variables “COLLECTD_INTERVAL” and
321           “COLLECTD_HOSTNAME” are now set before executing the application.
322         * Monitorus plugin: This Perl-based plugin to query statistics from
323           mon.itor.us has been added. Thanks to Jeff Green for the patch.
324         * netapp plugin: New plugin to collect statistics from NetApp filers.
325           Thanks to Sven Trenkel of the noris network AG for the patch.
326         * network plugin: Statistics collection about the plugin itself has
327           been implemented.
328         * openvpn plugin: Add support for more versions of the “status file”.
329           Thanks to Marco Chiappero for the patch.
330         * OpenVZ plugin: This Perl-based plugin to gather OpenVZ statistics
331           has been added. Thanks to Jonathan Kolb for the patch.
332         * ping plugin: The config options "SourceAddress" and "Device"
333           have been added. Thanks to Sebastian Harl for the patch.
334         * processes plugin: Collection of IO-metrics has been added. Thanks to
335           Andrés J. Díaz for the patch.
336         * python plugin: The new Python plugin integrates a Python interpreter
337           into collectd and allows to execute plugins written in the scripting
338           language. Thanks to Sven Trenkel for his work.
339         * routeros plugin: The new RouterOS plugin queries interface and
340           wireless registration statistics from RouterOS.
341         * Various plugins: AIX support has been added to the cpu, disk,
342           interface, load, memory, processes, and swap plugins. Thanks to
343           Manuel Sanmartin for his patches.
344         * hashed match: This match for simple load balancing and redundant
345           storage has been added.
346         * scale target: This target to scale (multiply) values by an arbitrary
347           value has been added.
349 2010-04-22, Version 4.8.5
350         * collectd: Append a newline to messages written to STDERR.
351         * network plugin: Fix a segmentation fault when receiving packets with
352           an unknown data source type.
354 2010-04-07, Version 4.8.4
355         * Build system, various plugins: Fixes for AIX compatibility have been
356           added. Thanks to Manuel Sanmartin for his patches.
357         * Build system: Checking for "nanosleep" on old Solaris machines has
358           been fixed. Thanks to Vincent McIntyre and Sebastian Harl for
359           figuring out a way to make this work.
360         * collectd: Serialization of NANs in JSON format has been fixed.
361           Thanks to Chris Buben for pointing out the resulting syntax error.
362         * collectd: Checks whether a "sleep" returned early have been added;
363           the cases are now handled correctly. Thanks to Michael Stapelberg
364           for the patch.
365         * collectd: Continue reading files in a directory when parsing one
366           file fails.
367         * apache plugin: Collection of the number of active connections has
368           been fixed for Apache 2.*.
369         * exec plugin: Error messages have been improved. The "running" flag
370           is now cleared correctly when forking a child fails.
371         * iptables plugin: Fix a violation of aliasing rules. This resolves a
372           warning / error with new GCC versions. Thanks to Jan Engelhardt for
373           the work-around.
374         * java plugin: The Java API files are now packaged into a .jar file.
375           Thanks to Amit Gupta for his patch.
376         * network plugin: A memory leak when receiving encrypted network
377           packets has been fixed.
378         * oracle plugin: Fix checking for lost connections and reconnect in
379           this case. Thanks to Sven Trenkel for pointing out the problem.
380         * unixsock plugin: A memory leak in the "LISTVAL" command has been
381           fixed. Thanks to Peter Warasin for pointing it out.
382         * write_http plugin: Use the "any" authentication schema. This used to
383           be "digest". Thanks to Paul Sadauskas for the patch.
385 2010-01-14, Version 4.8.3
386         * Documentation: Some manpage fixes.
387         * rrdtool plugin: Fix a bug with random write timeouts. Due to an
388           incorrect initialization some files may be suspended basically
389           indefinitely. After flushing the files they were written regularly
390           again.
392 2009-12-18, Version 4.8.2
393         * Build system, java plugin: Don't use “find -L” to search for Java
394           headers, because it's a GNU extension.
395         * Build system: Support for parallel builds has been improved. Thanks
396           Sebastian Harl and Stefan Völkel for looking into this.
397         * collectd: Print error messages to STDERR if no log plugin has been
398           loaded.
399         * genericjmx plugin: Close and re-open the connection upon I/O-errors.
400         * gmond plugin: Fix typos which caused syntax errors.
401         * memory plugin: Handling of >4 Gbyte of memory has been fixed.
402         * network plugin: The license has been changed to LGPL 2.1.
403         * oracle plugin: Reconnect to the database if the connection dies.
404         * rrdcached plugin: Work-around for a bug in RRDtool 1.4rc2 has been
405           added.
406         * snmp plugin: Handling of negative values has been fixed. Strings
407           containing control characters are now interpreted as hex-strings.
408         * unixsock plugin: A memory leak in the LISTVAL command has been
409           fixed. Thanks to Ben Knight for his patch.
411 2009-10-04, Version 4.8.1
412         * Build system: Issues when building the iptables plugin have been
413           fixed.
414         * exec plugin: Clear the signal block mask before calling exec(2).
415         * perl plugin: Declare the “environ” variable. This solves build
416           issues on some platforms.
417         * processes plugin: Remove unnecessary call of realloc(3). Thanks to
418           Andrés J. Díaz for the patch.
419         * unixsock plugin: Fix a (well hidden) race condition related to file
420           descriptor handling.
422 2009-09-13, Version 4.8.0
423         * collectd: Two new data source types, “DERIVE” and “ABSOLUTE”, have
424           been added. “DERIVE” can be used for counters that are reset
425           occasionally. Thanks to Mariusz Gronczewski for implementing this.
426         * thresholds: The advanced threshold options “Percentage”, “Hits”, and
427           “Hysteresis” have been added. Thanks to Andrés J. Díaz for his
428           patches.
429         * curl_json plugin: The new cURL-JSON plugin reads JSON files using
430           the cURL library and parses the contents according to user
431           specification. Among other things, this allows to read statistics
432           from a CouchDB instance. Thanks to Doug MacEachern for the patch.
433         * df plugin: Using the new “ReportByDevice” option the device rather
434           than the mount point can be used to identify partitions. Thanks to
435           Paul Sadauskas for the patch.
436         * dns plugin: The possibility to ignore numeric QTypes has been added.
437           Thanks to Mirko Buffoni for the patch.
438         * GenericJMX plugin: The new, Java-based GenericJMX plugin allows to
439           query arbitrary data from a Java process using the “Java Management
440           Extensions” (JMX).
441         * madwifi plugin: The new MadWifi plugin collects information about
442           Atheros wireless LAN chipsets from the MadWifi driver. Thanks to
443           Ondrej Zajicek for his patches.
444         * network plugin: The receive- and send-buffer-sizes have been made
445           configurable, allowing for bigger and smaller packets. Thanks to
446           Aman Gupta for the patch.
447         * olsrd plugin: The new OLSRd plugin queries routing information from
448           the “Optimized Link State Routing” daemon.
449         * rrdtool plugin: A new configuration option allows to define a random
450           write delay when writing RRD files. This spreads the load created by
451           writing RRD files more evenly. Thanks to Mariusz Gronczewski for the
452           patch.
453         * swap plugin: The possibility to collect swapped in/out pages has
454           been added to the Swap plugin. Thanks to Stefan Völkel for the
455           patch.
456         * tokyotyrant plugin: The new TokyoTyrant plugin reads the number of
457           records and file size from a running Tokyo Tyrant server. Thanks to
458           Paul Sadauskas for the patch.
459         * unixsock plugin: Add the “GETTHRESHOLD” command. This command can be
460           used to query the thresholds configured for a particular identifier.
461         * write_http plugin: The new Write HTTP plugin sends the values
462           collected by collectd to a web-server using HTTP POST requests.
463           Thanks to Paul Sadauskas for the patch.
464         * zfs_arc plugin: The new ZFS ARC plugin collects information about
465           the “Adaptive Replacement Cache” (ARC) of the “Zeta File-System”
466           (ZFS). Thanks to Anthony Dewhurst for the patch.
467         * empty_counter match: The new Empty Counter match matches value
468           lists, where at least one data source is of type COUNTER and the
469           counter value of all counter data sources is zero.
471 2009-12-18, Version 4.7.5
472         * Build system, java plugin: Don't use “find -L” to search for Java
473           headers, because it's a GNU extension.
474         * Build system: Support for parallel builds has been improved. Thanks
475           Sebastian Harl and Stefan Völkel for looking into this.
476         * collectd: Print error messages to STDERR if no log plugin has been
477           loaded.
478         * memory plugin: Handling of >4 Gbyte of memory has been fixed.
479         * network plugin: The license has been changed to LGPL 2.1.
480         * oracle plugin: Reconnect to the database if the connection dies.
481         * rrdcached plugin: Work-around for a bug in RRDtool 1.4rc2 has been
482           added.
483         * snmp plugin: Handling of negative values has been fixed. Strings
484           containing control characters are now interpreted as hex-strings.
485         * unixsock plugin: A memory leak in the LISTVAL command has been
486           fixed. Thanks to Ben Knight for his patch.
488 2009-10-03, Version 4.7.4
489         * Build system: Issues when building the iptables plugin have been
490           fixed.
491         * exec plugin: Clear the signal block mask before calling exec(2).
492         * perl plugin: Declare the “environ” variable. This solves build
493           issues on some platforms.
494         * processes plugin: Remove unnecessary call of realloc(3). Thanks to
495           Andrés J. Díaz for the patch.
496         * unixsock plugin: Fix a (well hidden) race condition related to file
497           descriptor handling.
499 2009-09-13, Version 4.7.3
500         * collectd: Fix a possible but very rare invalid “free” in the caching
501           code. Thanks to Sebastian Harl for the patch.
502         * collectd: Remove old values when a cache entry is marked as missing.
503           This way the “GETVAL” command of the UnixSock plugin doesn't return
504           old, no longer valid values when this happens. Thanks to Andrés J.
505           Díaz for the patch.
506         * collectd: The “plugin_unregister_read” function has been fixed.
507         * apache, ascent, bind, curl, nginx plugins: Advise the cURL library
508           to follow redirects. Thanks to Joey Hess for reporting this bug.
509         * df plugin: Check the ignorelist before stating the file system,
510           possibly reducing the number of stats considerably. Thanks to Joey
511           Hess for reporting this bug.
512         * iptables plugin: Support for the new libiptc API has been added.
513           Thanks to Sebastian Harl for the patch. The build system has been
514           updated to the plugin only includes the shipped header files when it
515           is linked with the shipped library, too.
516         * java plugin: Delay creating the JVM until after the daemon has
517           forked. The JVM internally creates threads that are lost when
518           forking. This means that Java-based plugins are now configured
519           during the init-phase, i. e. later than other plugins.
520         * libvirt plugin: Re-connect to libvirtd if connecting fails. Thanks
521           to Alan Pevec for the patch.
522         * network plugin: Fix the handling of the “CacheFlush” option: The
523           value was assigned to a wrong variable. The initialization of the
524           gcrypt library, which is used for signing / encrypting traffic, has
525           been fixed. Thanks to Luke Heberling for the patch.
526         * powerdns plugin: Set a timeout when reading data from the datagram
527           socket. Handling of the “LocalSocket” option has been fixed.  An
528           incorrectly used “type” has been corrected. Thanks to Luke Heberling
529           for his patches.
531 2009-07-19, Version 4.7.2
532         * Build system: Support for `DESTDIR' has been fixed in the Java
533           bindings.
534         * collectd: Okay-notifications have been fixed. Thanks to Andrés J.
535           Díaz for fixing this bug.
536         * collectd: A programming error has been fixed in the notification
537           code. The bug may result in an assertion failure.
538         * memcached plugin: Portability fix for Solaris. Thanks to Amit Gupta
539           for reporting the bug.
540         * ping plugin: Link the plugin with libm.
542 2009-06-02, Version 4.7.1
543         * Build system: Detection of Java has been improved and missing
544           details have been added to the configuration summary. Support for
545           libtool 2.2 has been added.
546         * collectd: Two bugs with the threshold checking have been fixed. The
547           first one prevented thresholds to be checked at all, the second one
548           caused wrong behavior with the persistency option. Thanks to Andrés
549           J. Díaz for fixing these problems.
550         * collectd: Handling of the `Include' configuration option has been
551           fixed.
552         * rrdtool plugin: Make sure initialization is run only once. This
553           resolves problems under Solaris and potentially other systems.
554           Thanks to Amit Gupta for reporting this bug.
555         * java plugin: Make it possible to use dots ('.') instead of slashes
556           ('/') as the class separator. Thanks to Randy Rizun for pointing
557           this out.
558         * swap plugin: A work-around for 32-bit Solaris has been added. Thanks
559           to Doug MacEachern for the patch.
561 2009-05-11, Version 4.7.0
562         * apache plugin: Support to query multiple servers has been added.
563           Thanks to Amit Gupta for the patch.
564         * apache plugin: Handling of lighttpd's scoreboard statistics has been
565           improved. Thanks to Amit Gupta for the patch.
566         * conntrack plugin: The new conntrack plugin collects the connection
567           tracking table size. Thanks to Tomasz Pala for the patch.
568         * fscache plugin: The new fscache plugin collects statistics about
569           Linux' file-system based caching framework. Thanks to Edward
570           Konetzko for the patch.
571         * gmond plugin: The new gmond plugin can receive and interpret
572           multicast traffic from Ganglia's gmond daemon.
573         * java plugin: The new java plugin exports the collectd API to Java,
574           making it possible to write extensions to collectd in Java.
575         * memcachec plugin: The new memcachec plugin queries data from a
576           memcached daemon and parses it similar to the cURL plugin. Thanks to
577           Doug MacEachern for the initial code.
578         * memcached plugin: Support for connections over UNIX domain sockets
579           has been added. Thanks to Franck Lombardi for the patch.
580         * memory plugin: Support for OpenBSD and possibly other *BSDs has been
581           added. Thanks to Simon Kuhnle for the patch.
582         * mysql plugin: Support to query multiple databases has been added.
583           Thanks to Doug MacEachern for the patch.
584         * mysql plugin: Master/slave statistics have been added.
585         * mysql plugin: Lock statistics have been added. Thanks to Rodolphe
586           Quiédeville for the patch.
587         * network plugin: The possibility to sign or encrypt network traffic
588           has been added.
589         * protocols plugin: The new protocols plugin provides information
590           about network protocols, such as IP, TCP and UDP.
591         * snmp plugin: The intervals given in the configuration of the SNMP
592           plugin must no longer be a multiple of the global interval.
593         * table plugin: The new Table plugin provides parsing for table-like
594           structured files, such as many files beneath /proc.
595         * ted plugin: The new TED plugin reads power consumption measurements
596           from “The Energy Detective” (TED). Thanks to Eric Reed for this
597           plugin.
598         * onewire plugin: The new `Interval' option allows collecting
599           information from OneWire sensors at arbitrary intervals.
600         * ping plugin: Support for collecting the drop rate and standard
601           deviation of round-trip times has been added.
602         * uptime plugin: The new uptime plugin can collect the server's
603           uptime. Thanks to Marco Chiappero for the patch.
605 2009-09-10, Version 4.6.5
606         * collectd: Remove old values when a cache entry is marked as missing.
607           This way the “GETVAL” command of the UnixSock plugin doesn't return
608           old, no longer valid values when this happens. Thanks to Andrés J.
609           Díaz for the patch.
610         * apache, ascent, bind, curl, nginx plugins: Advise the cURL library
611           to follow redirects. Thanks to Joey Hess for reporting this bug.
612         * df plugin: Check the ignorelist before stating the file system,
613           possibly reducing the number of stats considerably. Thanks to Joey
614           Hess for reporting this bug.
615         * iptables plugin: Support for the new libiptc API has been added.
616           Thanks to Sebastian Harl for the patch. The build system has been
617           updated to the plugin only includes the shipped header files when it
618           is linked with the shipped library, too.
619         * libvirt plugin: Re-connect to libvirtd if connecting fails. Thanks
620           to Alan Pevec for the patch.
621         * powerdns plugin: Set a timeout when reading data from the datagram
622           socket. Handling of the “LocalSocket” option has been fixed.  An
623           incorrectly used “type” has been corrected. Thanks to Luke Heberling
624           for his patches.
626 2009-07-18, Version 4.6.4
627         * collectd: Okay-notifications have been fixed. Thanks to Andrés J.
628           Díaz for fixing this bug.
629         * collectd: A programming error has been fixed in the notification
630           code. The bug may result in an assertion failure.
631         * memcached plugin: Portability fix for Solaris. Thanks to Amit Gupta
632           for reporting the bug.
634 2009-06-02, Version 4.6.3
635         * Build system, various plugins: Many build fixes for FreeBSD,
636           OpenBSD, NetBSD, Solaris and Mac OS X. Big thanks to Doug MacEachern
637           for many fixes and providing a build system for many platforms,
638           Ulf Zimmermann for providing a FreeBSD system and Simon Kuhnle for
639           providing an OpenBSD system.
640         * collectd: Two bugs with the threshold checking have been fixed. The
641           first one prevented thresholds to be checked at all, the second one
642           caused wrong behavior with the persistency option. Thanks to Andrés
643           J. Díaz for fixing these problems.
644         * collectd: Handling of the `Include' configuration option has been
645           fixed.
646         * battery plugin: Don't complain about a missing directory every
647           interval.
648         * exec plugin: Allow executed programs to close STDERR. Thanks to
649           Thorsten von Eicken for reporting this problem.
650         * irq plugin: Fix handling of overflowing 32-bit counters. Thanks to
651           Tomasz Pala for the patch.
652         * perl plugin: Portability build-fixes. Thanks to Doug MacEachern for
653           the patch.
654         * memory plugin: Fix a potential problem under Solaris.
655         * swap plugin: A work-around for 32-bit Solaris has been added. Thanks
656           to Doug MacEachern for the patch.
658 2009-03-18, Version 4.6.2
659         * collectd: Some Solaris utility code has been improved.
660         * filter subsystem: Allow `Chains' without default targets.
661         * liboping: A patch to comply with strict aliasing rules has been
662           added.
663         * timediff match: Fix a typo: The match was registered with a wrong
664           name which prevented this match to be used as documented. Thanks to
665           Bruno Prémont for finding this problem.
666         * bind plugin: Fix collection of the cached RR sets. The number of RR
667           sets currently in the cache was collected as a counter value, which
668           is nonsense. Thanks to Bruno Prémont for implementing this.
669         * dns plugin: Don't pass NULL to `pcap_open_live': Some systems,
670           primarily BSDs, don't take it well and crash.
671         * oracle plugin: Portability to 64 bit systems has been improved.
672         * postgresql plugin: The default configuration has been improved.
673         * rrdtool plugin: Fix a possible race condition: If the network plugin
674           is brought and dispatches a value before the rrdtool plugin is
675           initialized, the daemon may crash.
677 2009-02-22, Version 4.6.1
678         * collectd: Many documentation fixes.
679         * Collectd::Unixsock: Error handling has been improved.
680         * regex match: Don't link with the PCRE library.
681         * bind plugin: Various bugs have been fixed. Thanks to Bruno Prémont
682           for finding and fixing most of them.
683         * ipmi plugin: Fix an off-by-one error which could cause segmentation
684           faults. Thanks to Peter Holik for his patch.
686 2009-02-16, Version 4.6.0
687         * collectd: Added the `filter chain' infrastructure, which allows the
688           user to use `matches' and `targets' to control value processing.
689         * collectd: The new `-T' command line argument allows more in-depth
690           testing of a configuration. Thanks to Doug MacEachern for the patch.
691         * collectd-nagios: The Nagios integration command has been updated to
692           use libcollectdclient. The `percentage' aggregation function has
693           been added. Thanks to Fabian Linzberger for the patch.
694         * libcollectdclient: A library which abstracts communication with the
695           unixsock plugin for clients has been added.
696         * regex match: Match values by their identifies using regular
697           expressions.
698         * timediff match: Match for values with an invalid timestamp.
699         * value match: Select values by their data sources' values.
700         * notification target: Create and dispatch a notification.
701         * replace target: Replace parts of an identifier using regular
702           expressions.
703         * set target: Set (overwrite) entire parts of an identifier.
704         * bind plugin: This new plugin uses the new HTTP/XML interface to BIND
705           statistics, allowing very detailed name server statistics. Thanks to
706           Bruno Prémont for this plugin.
707         * cpu plugin: Report `interrupt' separately when using
708           sysctlbyname(3) (used under *BSD). Support for sysctl(3), for
709           example for native OpenBSD support, has been added. Thanks to Simon
710           Kuhnle for the patch.
711         * csv plugin: Make it possible to write values to STDOUT instead of
712           files. This is meant for testing purposes mostly. The output written
713           to STDOUT is compatible with the exec plugin. Thanks to Doug
714           MacEachern for the patch.
715         * curl plugin: This new plugin can be used to read web pages and parse
716           them using the same mechanism that's used in the tail plugin.
717         * dbi plugin: This new plugin allows you to connect to a variety of
718           relational databases and use SQL to gather custom statistics from
719           it. It is similar to the already existing PostgreSQL plugin but uses
720           libdbi to communicate with the database(s).
721         * interface plugin: Use the ignorelist framework when selecting /
722           ignoring interfaces. This allows one to use regular expressions to
723           select interfaces, too.
724         * ipmi plugin: Handle temporary IPMI error conditions more gracefully.
725           Thanks to Bruno Prémont for this patch.
726         * memcached plugin: Add hit-ratio metric. Thanks to Doug MacEachern
727           for the patch.
728         * mysql plugin: Allow connecting to a database via the UNIX domain
729           socket, too. Thanks to Mirko Buffoni for the patch.
730         * network plugin: Further performance improvements for the receive
731           code. This hopefully will help very large setups.
732         * openvpn plugin: This new plugin collects statistics provided by the
733           OpenVPN daemon. Thanks to Doug MacEachern for the patch.
734         * oracle plugin: This new plugin allows you to connect to an Oracle
735           database and use SQL to gather custom statistics from it. It is
736           similar to the already existing PostgreSQL plugin.
737         * perl plugin: Compatibility fixes for broken versions of Perl 5.10
738           have been added.
739         * perl plugin: Export the newly added plugin_write() to Perl plugins.
740         * perl plugin: Added support for `notification meta data'.
741         * perl plugin: Added support for the `filter chain' infrastructure by
742           allowing plugins to register `matches' and `targets'.
743         * postgresql plugin: The preferred configuration syntax has been
744           updated to be in line with the syntax used by the new dbi and oracle
745           plugins. The compatibility code for the old syntax is present.
746           Support for the new `Result' blocks and the interval parameter has
747           been added.
748         * processes plugin: Stacksize and virtual memory usage statistics have
749           been added. Portability fixes.
750         * rrdcached plugin: This new plugin uses the (still in development)
751           RRD accelerator daemon, rrdcached. This daemon works very similar to
752           the original rrdtool plugin of collectd, but adds some more nice
753           features.
754         * swap plugin: Code for OpenBSD (and possibly other *BSDs) has been
755           added.
757 2009-05-09, Version 4.5.4
758         * Build system, various plugins: Many build fixes for FreeBSD,
759           OpenBSD, NetBSD, Solaris and Mac OS X. Big thanks to Doug MacEachern
760           for many fixes and providing a build system for many platforms,
761           Ulf Zimmermann for providing a FreeBSD system and Simon Kuhnle for
762           providing an OpenBSD system.
763         * collectd: Fix a potential race condition when creating directories.
764         * battery plugin: Don't complain about a missing directory every
765           interval.
766         * dns plugin: Slight portability fixes.
767         * exec plugin: Allow executed programs to close STDERR. Thanks to
768           Thorsten von Eicken for reporting this problem.
769         * irq plugin: Fix handling of overflowing 32-bit counters. Thanks to
770           Tomasz Pala for the patch.
771         * perl plugin: Portability build-fixes. Thanks to Doug MacEachern for
772           the patch.
773         * rrdtool plugin: Fix a possible race condition: If the network plugin
774           is initialized and dispatches a value before the rrdtool plugin is
775           initialized, the daemon may crash.
776         * memory plugin: Fix a potential problem under Solaris.
778 2009-02-22, Version 4.5.3
779         * build system: The check for libupsclient even when `pkg-config' is
780           not available.
781         * collectd: Fix error handling in the global cache.
782         * Collectd::Unixsock: Error handling has been improved.
783         * ascent plugin: Fix a memory leak. Thanks to Bruno Prémont for his
784           patch.
785         * ipmi plugin: Fix an off-by-one error which could cause segmentation
786           faults. Thanks to Peter Holik for his patch.
787         * tcpconns plugin: An endianness problem has been fixed in the *BSD
788           code. Thanks to "thated" for reporting this.
790 2009-01-02, Version 4.5.2
791         * build system: Check for `mysql.h' and `mysql/mysql.h', since the
792           file may be in both locations, especially when the database was
793           installed in a non-standard path. Thanks to Dusty Doris for
794           reporting this.
795         * build system: Handle the _POSIX_PTHREAD_SEMANTICS defined, needed by
796           Solaris, in the configure script automatically.
797         * build system, tcpconns plugin: Check for `kvm_nlist' and
798           `kvm_openfiles' before enabling the plugin: Solaris provides a KVM
799           library with similar functions to the BSD variant, but doesn't
800           provide these necessary functions.
801         * collectd.conf(5): Various fixes and clarifications.
802         * collectd: Remove a GNUism (unnamed unions), thus improving
803           portability.
804         * collectd, apcups plugin: Include "collectd.h" before <stdlib.h>.
805           This solves portability problems, especially for Solaris.
806         * dns plugin: Fix a portability problem with NetBSD.
807         * filecount plugin: Fix an off-by-one error. This error may cause a
808           segmentation fault.
809         * network plugin: Fix the handling of `type' in the network protocol.
810           Due to a programming mistake, only 4 or 8 bytes would be copied to a
811           much larger buffer. This caused the `type' to be transferred much
812           more often than necessary. In some cases, e. g. the `cpu' and
813           `cpufreq' plugins being used at the same time, data may be corrupted
814           in those files. Thanks to Bruno Prémont for debugging and reporting
815           this issue.
816         * processes plugin: Fix a possible segmentation fault when specifying
817           invalid configuration options.
818         * unixsock plugin: Make sure the initialization function is run only
819           once. This resolves a file descriptor leak under systems which run
820           the initialization more than once, such as Solaris.
822 2008-10-16, Version 4.5.1
823         * build system: Change `--enable-<plugin>' to abort with an error if
824           dependencies are not met. Thanks to Bruno Prémont for the patch.
825           Also, the poisoning of various string functions has been restricted
826           to debug builds.
827         * collectd: Fix a memory leak in the global value cache. With every
828           *missing* value a couple of bytes would be leaked. Another memory
829           leak in the configuration handling code has been fixed. Thanks to
830           Niraj Tolia for reporting these issues.
831         * collectd: Fix an off-by-one error in the ignorelist functionality.
832           When using regular expressions, the last character would be missing,
833           possibly matching differently from what one would expect.
834         * collectdmon: Don't block SIGCHLD. This fixes a potential portability
835           problem.
836         * collectd-nagios: Fix handling of the `-d' option. Thanks to Fabian
837           Linzberger for reporting the bug.
838         * iptables plugin: Fix an off-by-one error. If a string was just one
839           character too long, it was truncated instead of reporting an error.
840         * network plugin: Fix a memory leak in the configuration handling
841           code. Thanks to Niraj Tolia for reporting this issue.
842         * perl plugin: Log an error message if bootstrapping `Collectd' fails.
843         * postgresql plugin: Don't reopen connection during reinitialization.
844           This fixes a bug under Solaris and potentially other platforms.
845           Missing calls to `PQclear' have been added, too. This fixes memory
846           leaks. Thanks to ``Admin'' for reporting these bugs.
847         * snmp plugin: Don't expect null-terminated strings from the Net-SNMP
848           library.
849         * tail plugin: Call `clearerr(3)' after reading an EOF. This fixes
850           problems with some `libc's. Thanks to Matthias Lay for reporting the
851           bug.
853 2008-09-04, Version 4.5.0
854         * collectd: Added the ability to flush certain identifiers.
855         * collectd: The concept of `notification meta data' has been
856           introduced.
857         * filecount plugin: The new filecount plugin counts the number of
858           files in a directory and its subdirectories.
859         * ipmi plugin: Sensor names have been changed to ensure unique names.
860           Notifications upon added and removed sensors can now be generated.
861         * notify_desktop plugin: This new plugin sends notifications to the
862           X desktop using the structure defined in the `Desktop Notification
863           Specification'.
864         * notify_email plugin: This new plugin sends out notifications via
865           email, using the `esmtp' library.
866         * onewire plugin: The new experimental(!) onewire plugin reads values,
867           such as temperatures, from sensors connected to the computer via the
868           onewire bus.
869         * perl plugin: Improved synchronized access to internal data structures
870           and fixed a possible dead-lock.
871         * perl plugin: Added the ability to flush certain identifiers and marked
872           plugin_flush_all() and plugin_flush_one() as deprecated in favor of
873           plugin_flush().
874         * perl plugin: Added the ability to configure Perl plugins.
875         * postgresql plugin: The new postgresql plugin collects statistics
876           about or from a PostgreSQL database.
877         * processes plugin: The `ProcessMatch' option has been added.
878         * rrdtool plugin: Implement throttling of the `update queue' to lessen
879           IO load.
880         * tcpconns plugin: This plugin has been ported to OpenBSD.
881         * thermal plugin: The new thermal plugin collects system temperatures
882           using Linux ACPI thermal zone data.
884 2009-01-02, Version 4.4.5
885         * build system: Check for `mysql.h' and `mysql/mysql.h', since the
886           file may be in both locations, especially when the database was
887           installed in a non-standard path. Thanks to Dusty Doris for
888           reporting this.
889         * build system: Handle the _POSIX_PTHREAD_SEMANTICS defined, needed by
890           Solaris, in the configure script automatically.
891         * collectd.conf(5): Various fixes and clarifications.
892         * apcups plugin: Include "collectd.h" before <stdlib.h>. This solves
893           portability problems, especially for Solaris.
894         * dns plugin: Fix a portability problem with NetBSD.
895         * network plugin: Fix the handling of `type' in the network protocol.
896           Due to a programming mistake, only 4 or 8 bytes would be copied to a
897           much larger buffer. This caused the `type' to be transferred much
898           more often than necessary. In some cases, e. g. the `cpu' and
899           `cpufreq' plugins being used at the same time, data may be corrupted
900           in those files. Thanks to Bruno Prémont for debugging and reporting
901           this issue.
902         * unixsock plugin: Make sure the initialization function is run only
903           once. This resolves a file descriptor leak under systems which run
904           the initialization more than once, such as Solaris.
906 2008-10-16, Version 4.4.4
907         * build system: Change `--enable-<plugin>' to abort with an error if
908           dependencies are not met. Thanks to Bruno Prémont for the patch.
909           Also, the poisoning of various string functions has been restricted
910           to debug builds.
911         * collectd: Fix a memory leak in the global value cache. With every
912           *missing* value a couple of bytes would be leaked. Another memory
913           leak in the configuration handling code has been fixed. Thanks to
914           Niraj Tolia for reporting these issues.
915         * collectd: Fix an off-by-one error in the ignorelist functionality.
916           When using regular expressions, the last character would be missing,
917           possibly matching differently from what one would expect.
918         * collectdmon: Don't block SIGCHLD. This fixes a potential portability
919           problem.
920         * collectd-nagios: Fix handling of the `-d' option. Thanks to Fabian
921           Linzberger for reporting the bug.
922         * network plugin: Fix a memory leak in the configuration handling
923           code. Thanks to Niraj Tolia for reporting this issue.
924         * perl plugin: Log an error message if bootstrapping `Collectd' fails.
925         * tail plugin: Call `clearerr(3)' after reading an EOF. This fixes
926           problems with some `libc's. Thanks to Matthias Lay for reporting the
927           bug.
929 2008-09-01, Version 4.4.3
930         * collectd: Fix a memory leak in the threshold checking code.
931         * memcached plugin: Fix a too short timeout and a related file
932           descriptor leak.
933         * memory plugin: A typo in the libstatgrab code has been fixed.
934         * snmp plugin: Fix a possible memory leak.
936 2008-07-15, Version 4.4.2
937         * build system: Use pkg-config to detect the upsclient library.
938         * collectd: Try even harder to determine the endianess of the
939           architecture collectd is being built on.
940         * disk plugin: Fix for Linux 2.4: A wrong field was used as the name
941           of disks.
942         * dns plugin: Fix compilation errors with BIND versions 19991001
943           through 19991005.
944         * network plugin: Bugfix in the init routine: The init function
945           cleared a buffer regardless of its contents. This could lead to lost
946           values under Solaris.
947         * nginx plugin: Remove usage of the thread-unsafe `strtok' function.
948         * vserver plugin: Remove usage of the thread-unsafe `readdir'
949           function.
950         * wireless plugin: Work around incorrect noise and power values
951           returned by some broken drivers.
953 2008-06-03, Version 4.4.1
954         * collectd: Fix the `DataSource' option within `Type' blocks. Thanks
955           to kyrone for reporting this.
956         * collectd: Fixed min/max output in notifications generated by
957           threshold checking.
958         * collectd-nagios: Fix the protocol used to communicate with the
959           daemon.
960         * perl plugin: Fail noisily, but don't shutdown the daemon, if
961           initialization has errors. An issue with Perl 5.10 has been fixed.
962         * teamspeak2 plugin: Fixed an out of bound array access. Thanks to
963           René Rebe and Siegmund Gorr for reporting this.
965 2008-05-06, Version 4.4.0
966         * collectd: Internal code cleanups.
967         * collectd: Added support for a `Flush' command in the unixsock and
968           exec plugins. This command can be used to force a plugin (or all) to
969           flush its values to disk.
970         * collectd: Thresholds can now be configured to apply to one data
971           source only, making it possible to configure different thresholds
972           for each data source.
973         * apache, nginx plugins: Added the possibility to disable host and/or
974           peer verification.
975         * ascent plugin: The new ascent plugin reads and parses the statistics
976           page of an Ascent server.
977         * cpu plugin: Support for the statgrab library has been added.
978         * disk plugin: The possibility to ignore certain disks or collect only
979           specific disks has been added.
980         * disk plugin: Support for the statgrab library has been added.
981         * ipmi plugin: The new ipmi plugin uses the OpenIPMI library to read
982           sensor values via IPMI, the intelligent platform management
983           interface.
984         * iptables plugin: The iptc library that is used by the iptables
985           plugin has been added to the distribution, because it is not
986           provided by all distributions and removed from at least one.
987         * powerdns plugin: The new powerdns plugin reads statistics from an
988           authoritative or a recursing PowerDNS name server.
989         * rrdtool plugin: The size of the files generated with the default
990           configuration has been decreased.
991         * tail plugin: The new tail plugin can be used to gather statistics by
992           continuously reading from log files.
993         * teamspeak2 plugin: The new teamspeak2 plugin connects to a
994           TeamSpeak2 server and collects statistics about the number of users
995           and number of channels.
996         * users plugin: Support for the statgrab library has been added.
997         * vmem plugin: The new vmem plugin collects very detailed statistics
998           about the virtual memory subsystem of Linux.
1000 2008-08-30, Version 4.3.4
1001         * Build system: Improved detection of and linking with the statgrab
1002           library.
1003         * collectd: Portability fixes, especially to determine endianess more
1004           reliable.
1005         * Various plugins: Fix format strings.
1006         * disk plugin: A fix for giving disks under Linux 2.4 the right names
1007           again has been applied.
1008         * memcached plugin: Fix a too short timeout and a related file
1009           descriptor leak.
1010         * memory plugin: A typo in the libstatgrab code has been fixed.
1011         * network plugin: A fix in the initialization function solves problems
1012           under Solaris.
1013         * nginx plugin: A thread-unsafe function has been replaced.
1014         * vserver plugin: A thread-unsafe function has been replaced.
1015         * wireless plugin: A work-around for broken wireless drivers has been
1016           added.
1018 2008-04-22, Version 4.3.3
1019         * build system: Improved detection of several libraries, especially if
1020           they are in non-standard paths.
1021         * build system: Portability fixes: Automatically define "_REENTRANT"
1022           if the libc expects it.
1023         * collectd: Error and warning messages have been improved.
1024         * collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
1025           using them.
1026         * apache plugin: Allocate new memory when reading a webpage instead of
1027           using a buffer of static size.
1028         * exec plugin: Close (almost) all filedescriptors before exec(2)ing
1029           the program.
1030         * hddtemp plugin: Error and warning messages have been improved.
1031         * sensors plugin: Fix sensor collection for some chip types.
1033 2008-03-29, Version 4.3.2
1034         * collectd: Fix configuration of the `FailureMax', `WarningMax', and
1035           `Persist' threshold options.
1036         * collectd: Fix handling of missing values in the global value cache.
1037         * collectd: Improved error messages when parsing the configuration.
1038         * sensors plugin: Fix temperature collection with libsensors4.
1039         * unixsock plugin: Fix mixed input and output operation on streams.
1040         * wireless plugin: Fix reading noise value.
1042 2008-03-05, Version 4.3.1
1043         * exec plugin: Set supplementary group IDs.
1044         * network plugin:
1045           + Use `memcpy' when constructing/parsing a package to avoid
1046             alignment problems on weird architectures, such as Sparc.
1047           + Translate doubles to/from the x86 byte representation to ensure
1048             cross-platform compatibility.
1049         * ping plugin: Correct the handling of the `TTL' setting.
1050         * swap plugin: Reapply a patch for Solaris.
1051         * tcpconns plugin: Portability improvements.
1053 2008-02-18, Version 4.3.0
1054         * collectd: Notifications have been added to the daemon. Notifications
1055           are status messages that may be associated with a data instance.
1056         * collectd: Threshold checking has been added to the daemon. This
1057           means that you can configure threshold values for each data
1058           instance. If this threshold is exceeded a notification will be
1059           created.
1060         * collectd: The new `FQDNLookup' option tells the daemon to use the
1061           full qualified domain name as the hostname, not just the host part
1062           es returned by `gethostname(2)'.
1063         * collectd: Support for more than one `TypesDB' file has been added.
1064           This is useful when one such file is included in a package but one
1065           wants to add custom type definitions.
1066         * collectd: The `Include' config option has been expanded to handle
1067           entire directories and shell wildcards.
1068         * collectdmon: The new `collectdmon' binary detects when collectd
1069           terminates and automatically restarts it again.
1070         * csv plugin: The CSV plugin is now able to store counter values as a
1071           rate, using the `StoreRates' configuration option.
1072         * exec plugin: Handling of notifications has been added and the
1073           ability to pass arguments to the executed programs has been added.
1074         * hddtemp plugin: The new `TranslateDevicename' option lets you
1075           disable the translation from device names to major-minor-numbers.
1076         * logfile plugin: Handling of notifications has been added.
1077         * ntpd plugin: The new `ReverseLookups' can be used to disable reverse
1078           domain name lookups in this plugin.
1079         * perl plugin: Many internal changes added support for handling multiple
1080           threads making the plugin reasonably usable inside collectd. The API has
1081           been extended to support notifications and export global variables to
1082           Perl plugins; callbacks now have to be identified by name rather than a
1083           pointer to a subroutine. The plugin is no longer experimental.
1084         * uuid plugin: The new UUID plugin sets the hostname to an unique
1085           identifier for this host. This is meant for setups where each client
1086           may migrate to another physical host, possibly going through one or
1087           more name changes in the process. Thanks to Richard Jones from
1088           Red Hat's Emerging Technology group for this plugin.
1089         * libvirt: The new libvirt plugin uses the `libvirt' library to query
1090           CPU, disk and network statistics about guest systems on the same
1091           physical server. Thanks to Richard Jones from Red Hat's Emerging
1092           Technology group for this plugin.
1094 2008-04-22, Version 4.2.7
1095         * build system: Improved detection of several libraries, especially if
1096           they are in non-standard paths.
1097         * build system: Portability fixes: Automatically define "_REENTRANT"
1098           if the libc expects it.
1099         * collectd: Error and warning messages have been improved.
1100         * collectd: Check for the BYTE_ORDER and BIG_ENDIAN defines before
1101           using them.
1102         * apache plugin: Allocate new memory when reading a webpage instead of
1103           using a buffer of static size.
1104         * exec plugin: Close (almost) all filedescriptors before exec(2)ing
1105           the program.
1106         * hddtemp plugin: Error and warning messages have been improved.
1107         * sensors plugin: Fix sensor collection for some chip types.
1109 2008-03-29, Version 4.2.6
1110         * collectd: Improved error messages when parsing the configuration.
1111         * sensors plugin: Fix temperature collection with libsensors4.
1112         * unixsock plugin: Fix mixed input and output operation on streams.
1113         * wireless plugin: Fix reading noise value.
1115 2008-03-04, Version 4.2.5
1116         * apache plugin: Improved initialization and error messages.
1117         * exec plugin: Set supplementary group IDs.
1118         * network plugin:
1119           + Create separate threads for reading from the socket and parsing
1120             and dispatching incoming packets. Versions prior to this may have
1121             problems in high-load situations, where the socket receive buffers
1122             overflows, resulting in gaps in the data.
1123           + Use `memcpy' when constructing/parsing a package to avoid
1124             alignment problems on weird architectures, such as Sparc.
1125           + Translate doubles to/from the x86 byte representation to ensure
1126             cross-platform compatibility.
1127         * ping plugin: Correct the handling of the `TTL' setting.
1128         * rrdtool plugin: Ensure correct handling of the `RRATimespan' option.
1129         * swap plugin: Reapply a patch for Solaris.
1130         * tcpconns plugin: Portability improvements.
1132 2008-01-21, Version 4.2.4
1133         * unixsock plugin: A bug in the unixsock plugin caused it not to set
1134           the permission on the socket as documented in the manpage. Thanks to
1135           Evgeny Chukreev for fixing this issue.
1136         * collectd: The documentation has been improved.
1138 2007-12-28, Version 4.2.3
1139         * sensors plugin: Updated the plugin to build and work with version 3
1140           of the libsensors library.
1142 2007-12-15, Version 4.2.2
1143         * nginx plugin: Incorrect comparison of strings lead to a segfault
1144           when using the plugin. Thanks to Saulius Grigaliunas for fixing
1145           this.
1146         * logfile plugin: The config option `Timestamp' was handled
1147           incorrectly and basically always active. Thanks to Luke Heberling
1148           for fixing this.
1150 2007-11-08, Version 4.2.1
1151         * tcpconns plugin: Don't complain about a missing file if IPv6 is not
1152           enabled on the host.
1153         * snmp plugin: Fix a memory leak.
1155 2007-10-27, Version 4.2.0
1156         * collectd: The new config option `Include' lets you include other
1157           configfiles and thus split up your config into smaller parts. This
1158           may be especially interesting for the snmp plugin to keep the data
1159           definitions separate from the host definitions.
1160         * ipvs plugin: The new `ipvs' plugin collects IPVS connection statistics
1161           (number of connections, octets and packets for each service and
1162           destination). Thanks to Sebastian Harl for this plugin.
1163         * memcached plugin: The new `memcached' plugin connects to a memcached
1164           daemon process and collects statistics of this distributed caching
1165           system. Thanks to Antony Dovgal for contributing this plugin.
1166         * nginx plugin: The new `nginx' plugin reads the status page of an
1167           nginx daemon and saves the handled connections and requests.
1168         * perl plugin: Many changes, including the added `EnableDebugger'
1169           config option which lets you debug your Perl plugins more easily.
1170         * rrdtool plugin: Use the thread-safe RRD-library if available. Try to
1171           be more thread-safe otherwise by locking calls to the library.
1172         * snmp plugin: Added the options `Scale' and `Shift' to Data-blocks to
1173           correct the values returned by SNMP-agents. If a <data> block is
1174           defined as `table' the instance is now optional. The sequence number
1175           is used as the type-instance in this case. The new `InstancePrefix'
1176           option allows to add arbitrary prefixes to the type-instance.
1177         * tcpconns plugin: The new `tcpconns' plugin collects the number of
1178           certain TCP connections and what state they're in. This can be used
1179           to see how many connections your FTP server has to handle or how
1180           many outgoing connections your mailserver has open.
1182 2008-01-11, Version 4.1.6
1183         * unixsock plugin: A bug in the unixsock plugin caused it not to set
1184           the permission on the socket as documented in the manpage. Thanks to
1185           Evgeny Chukreev for fixing this issue.
1186         * collectd: The documentation has been improved.
1188 2007-12-27, Version 4.1.5
1189         * rrdtool plugin: Fix a memory leak that only occurred in very-low-
1190           memory situations.
1191         * sensors plugin: Updated the plugin to build and work with version 3
1192           of the libsensors library.
1194 2007-11-08, Version 4.1.4
1195         * Build system: Improve detection of the rrd library, especially if
1196           it's in a non-standard location.
1197         * Build system: A bug when parsing the argument for
1198           `--with-libnetsnmp' has been fixed.
1199         * collectd: Implement `strerror_r' if the libc doesn't provide it.
1200         * rrdtool plugin: Fix a bug in the shutdown sequence that might cause
1201           a deadlock or delay when shutting down the daemon.
1202         * snmp plugin: Fix a memory leak.
1204 2007-10-24, Version 4.1.3
1205         * collectd: A build issue under Solaris has been resolved by renaming
1206           data types.
1207         * rrdtool plugin: Use the thread-safe RRD-library if available. Try to
1208           be more thread-safe otherwise by locking calls to the library.
1210 2007-09-28, Version 4.1.2
1211         * apcups plugin: Fix reporting of the `load percent' data.
1212         * wireless plugin: Correct the handling of cards returning signal and
1213           noise quality as percentage.
1214         * perl plugin: Fix a possible buffer overflow in get_module_name().
1215         * build system: Further improve the detection of libraries.
1216         * netlink plugin: Build issues under some older versions of the Linux
1217           includes (i. e. Debian Sarge) have been fixed.
1218         * snmp plugin: Fix a potential segfault when a host times out. Add
1219           support for the `timeticks' type. 
1221 2007-09-12, Version 4.1.1
1222         * Build system: The detection of `libnetlink' has been improved.
1223         * collectd: The documentation has been fixed in numerous places.
1224         * exec plugin: Setting the group under which to run a program has been
1225           fixed.
1226         * collectd: The `sstrerror' function was improved to work correctly
1227           with the broken GNU version of `strerror_r'.
1228         * collectd: Write an error message to STDERR when loading of a plugin
1229           fails.
1230         * apcups plugin: Fix the `types' used to submit the values: They still
1231           has an `apcups_' prefix which doesn't work anymore.
1232         * rrdtool plugin: Create new RRD-files with the `begin' time set to
1233           whatever the client thinks is `now'..
1235 2007-09-01, Version 4.1.0
1236         * Build system: The build system has been changed to automatically
1237           disable all plugins, which are missing dependencies. The dependency
1238           checking has been removed from the plugins themselves to remove
1239           redundancy.
1240         * Flexible interval: The interval of collected data is now sent along
1241           with the data itself over the network, so that the interval-settings
1242           of server and clients no longer needs to match.
1243         * netlink plugin: The new `netlink' plugin connects to the Linux
1244           kernel using a netlink socket and uses it to query information about
1245           interfaces, qdiscs and classes.
1246         * rrdtool plugin: The cache is now dumped to disk in an extra thread
1247           to not block data collection.
1248         * snmp plugin: The new `snmp' plugin can read values from SNMP enabled
1249           network devices, such as switches, routers, thermometers, rack
1250           monitoring servers, etc. The collectd-snmp(5) manpage documents this
1251           plugin.
1252         * unixsock plugin: Added the `LISTVAL' command.
1253         * xmms plugin: The new `xmms' plugin graphs the bitrate and frequency
1254           of music played with xmms.
1256 2007-09-28, Version 4.0.9
1257         * apcups plugin: Fix reporting of the `load percent' data.
1258         * wireless plugin: Correct the handling of cards returning signal and
1259           noise quality as percentage.
1260         * perl plugin: Fix a possible buffer overflow in get_module_name().
1262 2007-09-12, Version 4.0.8
1263         * collectd: The `sstrerror' function was improved to work correctly
1264           with the broken GNU version of `strerror_r'.
1265         * collectd: Write an error message to STDERR when loading of a plugin
1266           fails.
1267         * apcups plugin: Fix the `types' used to submit the values: They still
1268           has an `apcups_' prefix which doesn't work anymore.
1269         * rrdtool plugin: Create new RRD-files with the `begin' time set to
1270           whatever the client thinks is `now'..
1272 2007-08-26, Version 4.0.7
1273         * documentation: Some typos have been fixed and some information has
1274           been improved.
1275         * build system: Many fixes for detecting libraries in unusual places,
1276           such as on RedHat systems. The affected libraries are `libcurl',
1277           `libmysql', and `libupsclient'.
1278         * network plugin: Allow the `Port' option to be specified as a number
1279           (i. e. without quotes).
1280         * nut plugin: A fix allows linking the nut plugin against
1281           libupsclient, version >= 2.2.0.
1282         * processes plugin: Fix a potential segmentation fault.
1284 2007-07-30, Version 4.0.6
1285         * sensors plugin: Fix the ignorelist functionality: Only the `type
1286           instance' was used to match against the list, but the documentation
1287           told otherwise. This release fixes the code, so it complies with the
1288           documentation.
1289         * syslog plugin: Call `openlog' right when the plugin is loaded, so
1290           configuration messages will end up in the logging facility.
1291         * conrtib/fedora: The contributed specfile for Fedora has been
1292           updated.
1294 2007-07-05, Version 4.0.5
1295         * Portability: More fixes for OpenBSD have been included.
1297 2007-06-24, Version 4.0.4
1298         * cpu plugin: Fixed the Solaris code.
1299         * dns plugin: Fixed a build issue for OpenBSD.
1300         * interface plugin: Fixed the Solaris code.
1301         * load plugin: Fixed the alternative `/proc' Linux code.
1302         * memory plugin: Fixed the Solaris code.
1303         * oconfig: Don't require `-lfl' anymore.
1305 2007-06-19, Version 4.0.3
1306         * cpu plugin: Fix the Darwin / Mac OS X code.
1307         * ping plugin: Use the return value of `getpid', not its address.
1308         * csv, rrdtool plugin: Fixed a bug that prevented an buffer to be
1309           initialized correctly.
1310         * configure: Added `--with-nan-emulation' to aid cross compilation.
1312 2007-06-12, Version 4.0.2
1313         * hddtemp and ntpd plugin: Corrected the parsing of port numbers when
1314           they're given in numerically form.
1316 2007-06-07, Version 4.0.1
1317         * iptables plugin: A bug in the configuration routine has been fixed.
1318           Setting a comment in the configfile will no longer cause a
1319           segmentation fault.
1321 2007-06-03, Version 4.0.0
1322         * collectd: The plugin-infrastructure has been changed to allow for
1323           more types of plugins, namely `write' and `log' plugins.
1324         * collectd: The read-function has been changed to read many plugins in
1325           parallel, using threads. Thus, plugins generally need to use
1326           thread-safe functions from now on.
1327         * collectd: The '-t' command line options allows to perform syntax tests
1328           of the configuration file and exit immediately.
1329         * csv plugin: The new `csv' plugin handles output to `comma separated
1330           values'-files.
1331         * rrdtool plugin: The new `rrdtool' plugin handles output to
1332           RRD-files. Data can be cached to combine multiple updates into one
1333           write to increase IO-performance.
1334         * network plugin: The new `network' plugin handles IO via the network.
1335           It implements a different, much more extensible protocol which can
1336           combine many values in one packet, decreasing the number of UDP-
1337           packets being sent. It can read from and send to the network and
1338           with the appropriate configuration even forward packets to other
1339           networks.
1340         * unixsock plugin: The new `unixsock' plugin provides an interface to
1341           communicate with the daemon while it is running. Right now the
1342           commands `GETVAL' and `PUTVAL' are implemented, but more are to
1343           come.
1344         * perl plugin: The new `perl' plugin allows you to write extensions
1345           for collectd in the scripting-language Perl.
1346         * logfile plugin: The new `logfile' plugin writes logmessages to files
1347           or STDOUT or STDERR.
1348         * syslog plugin: The new `syslog' plugin sends logmessages to the
1349           system's syslog daemon.
1350         * entropy plugin: The new `entropy' plugin collects the amount of
1351           entropy currently being available to the system.
1352         * exec plugin: The new `exec' plugin forks child processes and reads
1353           back values provided by the forked processes.
1354         * iptables plugin: The new `iptables' plugin reads counters from
1355           iptables rules. Thanks to Sjoerd van der Berg for contributing this
1356           plugin.
1357         * irq plugin: The new `irq' plugin collects the IRQ-counters. Thanks
1358           to Peter Holik for contributing this plugin.
1359         * nut plugin: The new `nut' plugin connects the upsd of the `network
1360           ups tools' and reads information about the connected UPS.
1361         * apache plugin: Support for lighttpd's `BusyServers' (aka.
1362           connections) field was added by Florent Monbillard.
1363         * collectd-nagios: The new `collectd-nagios' binary queries values
1364           from collectd, parses them and exits according to Nagios-standards.
1365         * manpages: The manpages have been improved a lot.
1367 2007-09-28, Version 3.11.7
1368         * wireless plugin: Correct the handling of cards returning signal and
1369           noise quality as percentage.
1371 2007-08-31, Version 3.11.6
1372         * processes plugin: Fix a potential segmentation fault.
1374 2007-05-29, Version 3.11.5
1375         * configure: Added `AC_SYS_LARGEFILE' for LFS.
1376         * ntpd plugin: Fix a potential buffer overflow.
1377         * processes plugin: Fix a bug when run under Linux 2.4. All processes
1378           were accounted as `zombies'.
1380 2007-04-10, Version 3.11.4
1381         * dns plugin: Change the order of includes to make the plugin compile
1382           under FreeBSD.
1384 2007-03-30, Version 3.11.3
1385         * configure: Have the configure-script define `HAVE_LIBKSTAT' instead
1386           of the unused `COLLECT_KSTAT'.
1388 2007-02-11, Version 3.11.2
1389         * plugin: Catch NULL-pointer and try to fix them. Otherwise the
1390           NULL-pointer may have been passed to `printf' which causes a
1391           segfault with some libcs.
1393 2007-02-10, Version 3.11.1
1394         * df plugin: Some wrong defines have been fixed so the plugin works
1395           under Solaris again.
1396         * dns plugin: The usage of a struct has been fixed to work with
1397           non-GNU libcs.
1398         * processes plugin: Some missing defines have been added so the plugin
1399           compiles cleanly under FreeBSD and presumably other UNIXes.
1401 2006-12-22, Version 3.11.0
1402         * collectd: The new command line option `-P' makes it easier for
1403           distributors to change the location of PID-files.
1404         * collectd: The daemon shuts down faster now which makes it easier to
1405           write init.d-scripts for it.
1406         * apache plugin: Increase the buffersize to 16k, because the 4k buffer
1407           caused problems every now and then.
1408         * df plugin: New config options allow to ignore certain mountpoints,
1409           filesystem types or devices.
1410         * dns plugin: The new dns plugin uses `libpcap' to capture DNS traffic
1411           and interprets it. It collects traffic as well as qtype, opcode and
1412           rcode counts.
1413         * email plugin: Sebastian Harl has contributed this plugin which
1414           counts received mails in categories (e. g. ham, spam, virus), spam
1415           score (as given by SpamAssassin) and check types.
1416         * mbmon plugin: Flavio Stanchina has contributed this plugin which
1417           uses `mbmon' to gather information from sensors on the motherboard.
1418         * processes plugin: Collect detailed statistics for configured
1419           processes, that's process and thread count, CPU usage, resident
1420           segment size and pagefaults.
1421         * multimeter plugin: Peter Holik contributed a new plugin which
1422           queries multimeters.
1423         * sensors plugin: Lubos Stanek has put much effort into improving this
1424           plugin, including `extended naming', collection of voltage values
1425           and the possibility to ignore certain values.
1427 2006-12-21, Version 3.10.4
1428         * Max Kellermann has identified a bug in the server routine: When
1429           opening a socket fails the daemon will (re)try opening the socket in
1430           an endless loop, ultimately leading to a `EMFILE' error.
1432 2006-11-04, Version 3.10.3
1433         * Lubos Stanek has identified a bug in the ntpd-plugin: When the
1434           ntpd's reply was sent in more than one packet, the buffer size was
1435           calculated incorrectly, resulting in the reading of uninitialized or
1436           freed memory.
1438 2006-11-01, Version 3.10.2
1439         * The sample config file has been improved.
1440         * Errors in the manpages have been corrected.
1441         * The ping-plugin now adds hosts during initialization, not during
1442           startup. This speeds up startup when no network connectivity is
1443           available. Also, the hosts are being added later when the network is
1444           available.
1445         * Improved BSD-support for the df-plugin.
1446         * Fixed syntax errors in the swap-plugin for Mac OS X.
1447         * Fix a wrong structure being passed to `getnameinfo' in the ntpd-
1448           plugin.
1449         * Don't disable the mysql-plugin if connecting to the database fails
1450           during initialization. Instead, try again in increasing intervals.
1452 2006-07-19, Version 3.10.1
1453         * A bug in the apcups plugin was fixed: Is the plugin is loaded, but
1454           the apcups cannot be reached, unconnected sockets will pile up and
1455           eventually lead to `Too many open files' errors.
1457 2006-07-09, Version 3.10.0
1458         * The `disk' plugin has been ported to Darwin.
1459         * The `battery' plugin should work on many Apple computers now.
1460         * The `traffic' plugin can now ignore certain interfaces. Also,
1461           statistics for sent/received packets and errors have been added.
1462         * A plugin to monitor APC UPSes using `apcupsd' has been added. Thanks
1463           to Anthony Gialluca for contributing this plugin and providing me
1464           with a test environment :)
1465         * A plugin for monitoring an NTP instance and the local clock drift
1466           has been added.
1468 2006-06-25, Version 3.9.4
1469         * The Solaris code in the `swap' plugin has been changed to reflect
1470           the numbers returned by `swap -s'. Thanks to Christophe Kalt for
1471           working this out.
1472         * The debugging system has been fixed to work with the Sun libc.
1473         * When built without librrd the variable `operating_mode' could be
1474           uninitialized. Thanks to David Elliot for reporting the bug.
1476 2006-06-01, Version 3.9.3
1477         * Fixed the ping-plugin under FreeBSD and Mac OS X. Potentially other
1478           operating systems also profit from the changes, but I wasn't able to
1479           check that.
1480         * Changed the build system to find the netinet-includes under FreeBSD
1481           and therefore successfully build the `liboping' library there.
1483 2006-05-09, Version 3.9.2
1484         * Applied a patch to the `liboping' library. Due to a bug in the
1485           sequence checking the `ping' plugin stopped working after
1486           approximately 7.6 days.
1488 2006-05-09, Version 3.8.5
1489         * Applied a patch to the `liboping' library. Due to a bug in the
1490           sequence checking the `ping' plugin stopped working after
1491           approximately 7.6 days.
1493 2006-04-21, Version 3.9.1
1494         * Build issues with Solaris and possible other architectures have been
1495           resolved.
1496         * Problems when building the `apache'-plugin without `libcurl' have
1497           been resolved.
1498         * A bug in the `ping' plugin has been fixed. Sorry folks.
1500 2006-04-02, Version 3.9.0
1501         * A plugin to monitor the Apache webserver has been added.
1502           <http://httpd.apache.org/>
1503         * A plugin to collect statistics about virtual servers using VServer.
1504           <http://linux-vserver.org/> Thanks to Sebastian Harl for writing
1505           this plugin :)
1506         * A plugin for wireless LAN cards has been added. It monitors signal
1507           strength, link quality and noise ratio..
1508         * A plugin for Apple hardware sensors has been added.
1509         * An option to compile collectd with different `step' and `heartbeat'
1510           settings has been added. The size of RRAs is no longer static but
1511           calculated based on the settings for `step' and `width'.
1512         * The `ping' plugin can now be configured to use a certain TTL.
1513         * A plugin to monitor the hardware sensors of Apple computers has been
1514           added.
1515         * The plugins `cpu', `memory', `processes' and `traffic' have been
1516           ported to Mach/Darwin (Mac OS X).
1517         * The `log mode' has been contributed by Christophe Kalt. It writes
1518           the data into text files rather than RRD files.
1520 2006-04-09, Version 3.8.4
1521         * Applied patch by Vincent Stehlé which improves the disk-name
1522           resolution in the `hddtemp' plugin for Linux systems.
1524 2006-04-02, Version 3.8.3
1525         * Applied a patch by James Byers: The MySQL plugin was not working
1526           with MySQL 5.0.2 or later.
1528 2006-03-14, Version 3.8.2
1529         * `utils_mount.c' has been changed to not use the `MNTTAB' defined by
1530           the GNU libc, because it points to `/etc/fstab' rather than
1531           `/etc/mtab'.
1533 2006-03-13, Version 3.8.1
1534         * Fixes for building collectd under FreeBSD, Mac OS X and Solaris.
1535         * Fixes in the debian `postinst' and `init.d' scripts.
1537 2006-03-09, Version 3.8.0
1538         * The `ping' plugin no longer uses `libping' but a self written
1539           library named `liboping'. With this library it's possible to ping
1540           multiple IPv4 and IPv6 addresses and hostnames - in parallel.
1542 2006-02-18, Version 3.7.2
1543         * A simple bug in the `battery' plugin has been fixed. It should now
1544           work with ACPI based batteries as well. Thanks to Sebastian for
1545           fixing this.
1546         * Fixing a bug that prevented collectd to be built without librrd.
1547           Thanks to Werner Heuser for reporting it.
1549 2006-02-04, Version 3.7.1
1550         * The new network code has been improved to build with older versions
1551           of glibc.
1552         * Fix in `libping' sets the ICMP sequence on outgoing packets. Thanks
1553           to Tommie Gannert for this patch.
1555 2006-01-30, Version 3.7.0
1556         * The `battery' plugin has been added. It collects information about
1557           laptop batteries..
1558         * The MySQL plugin has been improved: It now writes two more RRD
1559           files, `mysql_qcache.rrd' and `mysql_threads.rrd'.
1560         * The `cpufreq' plugin now reads another file since the file it did
1561           read so far causes much overhead in the kernel. Also, you need root
1562           to read the old file, but not to read the new one.
1563         * The `hddtemp' plugin can now be configured to connect to another
1564           address and/or port than localhost.
1565         * The `df' plugin now prefers `statvfs' over `statfs'.
1566         * The network code has been rewritten. collectd now supports unicast
1567           and multicast, and IPv4 and IPv6. Also, the TTL of sent packages can
1568           be set in the configfile.
1570 2006-01-24, Version 3.6.2
1571         * Due to a bug in the configfile handling collectd wouldn't start in
1572           client mode. This released fixes this.
1574 2006-01-20, Version 3.6.1
1575         * Due to a bug in `configure.in' all modules and the binary were
1576           linked against `libmysqlclient'. This issue is solved by this
1577           release.
1579 2006-01-17, Version 3.6.0
1580         * A config file has been added. This allows for loading only specific
1581           plugins.
1582         * A `df' plugin has been added.
1583         * A `mysql' plugin has been added.
1584         * The `ping' plugin doesn't entirely give up hope when a socket error
1585           occurred, but will back of and increase the intervals between tries.
1587 2006-01-21, Version 3.5.2
1588         * Fixed yet another bug in the signal handling.. Stupid typo..
1589         * Improved the ping plugin to not give up on socket errors (backport
1590           from 3.6.0).
1592 2005-12-18, Version 3.5.1
1593         * The PID-file is now deleted correctly when shutting down the daemon.
1594         * SIGINT and SIGTERM are now handled correctly.
1596 2005-12-16, Version 3.5.0 (Revision 326)
1597         * A bug in the `load' module under Solaris has been fixed.
1598         * The `users' module has been contributed by Sebastian Harl. It counts
1599           currently logged in users.
1600         * The CPU module now works under FreeBSD without the use of
1601           `libstatgrab', however SMP support is missing.
1602         * The default directories for the RRD files and the PID file now
1603           depend on the compile time setting of `localstatedir'.
1605 2005-11-15, Version 3.4.0 (Revision 236)
1606         * A PID-file is written to /var/run upon startup. Thanks to `Tommie'
1607           from gentoo's bugzilla for writing the patch.
1608         * The build dependency for librrd has been removed. Binaries built
1609           without librrd are client-only and will multicast their value as
1610           with the `-c' argument.
1611         * A patch by Peter Holik adds a module for monitoring CPU frequencies.
1612         * The newly introduced `-f' switch prevents daemon initialization
1613           (forking, closing standard filehandles, etc.) Thanks to Alvaro
1614           Barcellos for this patch.
1616 2005-11-04, Version 3.3.0 (Revision 216)
1617         * New modules have been added:
1618           - `serial', for monitoring traffic on the serial interfaces
1619           - `nfs', for graphing NFS procedure calls
1620           - `tape', traffic from/to tape devices
1621         * The memory.rrd now accepts more than 4Gig of memory.
1623 2005-10-26, Version 3.2.0 (Revision 200)
1624         * Support for graphing the processes has been added (thanks to Lyonel
1625           Vincent)
1626         * If reading from hddtemp fails collectd will increase the time
1627           between polls up to one day.
1628         * The init.d files have been improved.
1629         * Problems with the spec file have been fixed.
1631 2005-10-16, Version 3.1.0 (Revision 194)
1632         * Added the `setsid' syscall to the startup code.
1633         * Support for hddtemp has been added (thanks to Vincent Stehlé)
1635 2005-09-30, Version 3.0.0 (Revision 184)
1636         * The ability to send/receive data to/from the network (think
1637           multicast) has been added.
1638         * Modules have been split up into shared libraries can be loaded at
1639           runtime. The biggest advantage is that the core program doesn't need
1640           to be linked against an external library.
1641         * A patch by George Kargiotakis has been applied: It fixes the sensors
1642           behaviour then more than one sensor is being queried.
1644 2005-09-16, Version 2.1.0 (Revision 172)
1645         * A module for swap statistics has been added.
1647 2005-09-09, Version 2.0.0 (Revision 135)
1648         * Filenames can no longer be configured at program startup. The only
1649           options as of this version are the directory and ping hosts.
1650         * CPU statistics now include Wait-IO. If provided under Linux IRQ and
1651           Soft-IRQ statistics are added to `System'. 
1652         * Diskstats now collect read and write bytes, not sectors.
1653         * Ping statistics can now be collected for more than one host. There
1654           is no default any more: If no host is given no host will be pinged.
1655         * A self-written patch for libping has been applied so it builds
1656           cleanly.
1658 2005-09-01, Version 1.8.1 (Revision 123)
1659         * Much improved configure-script: libraries and features may now be
1660           disabled.
1661         * More detailed warnings/error messages when RRD update fails.
1663 2005-08-29, Version 1.8.0:
1664         * Support for collecting disk statistics under Solaris.
1666 2005-08-25, Version 1.7.0:
1667         * Support for libstatgrab[1] for load, memory usage and network
1668           traffic. CPU- and disk-usage are not (yet) supported, since
1669           libstatgrab returns insufficient information. I will contact the
1670           authors.
1671         * Improved the CPU-initialization code for Solaris. Apparently CPUs
1672           aren't necessarily counted linear which is now handled correctly.
1673         [1]: http://www.i-scream.org/libstatgrab/
1675 2005-08-21, Version 1.6.0:
1676         * Basic support for Solaris: System load and cpu-usage can be
1677           collected under Solaris, too. Other stats will follow later.
1678         * Many fixes in the autoconf-script
1679         * Collection/Museum scripts have been added under contrib/museum
1680         * collectd may now be started in unprivileged mode, though ping
1681           statistics will not work.
1683 2005-07-17, Version 1.5.1:
1684         * Diskstats-RRDs now use major/minor for naming. Some systems have
1685           weird strings as disk-names..
1687 2005-07-17, Version 1.5:
1688         * A new module, diskstats, has been added. It collects information
1689           about the disks and partitions.
1691 2005-07-11, Version 1.4.2:
1692         * The meminfo module has been changed to work with more platforms
1693           and/or kernel versions.
1695 2005-07-10, Version 1.4.1: Correct traffic stats
1696         * The traffic rrd-file is now created with DS-type `COUNTER' which I
1697           forgot to correct when I changed that module.
1699 2005-07-09, Version 1.4: More traffic stats
1700         * Traffic is now collected for all interfaces that can be found
1701         * Temperature-statistics are read from lm-sensors if available
1703 2005-07-08, Version 1.3: CPU stats
1704         * Collecting CPU statistics now
1706 2005-07-12, Version 1.2: Using syslog
1707         * collectd is now using the syslog facility to report errors, warnings
1708           and the like..
1709         * The default directory is now /var/db/collectd
1711 2005-07-10, Version 1.1: Minor changes
1712         * Nothing really useful to say ;)
1714 2005-07-09, Version 1.0: Initial Version
1715         * The following modules are provided:
1716           * Load average
1717           * Ping time
1718           * Traffic
1719           * Memory info