Code

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