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