Code

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