Code

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