Code

rules: Output the content of config.log if configure fails.
[pkg-collectd.git] / debian / changelog
1 collectd (4.8.2-1) unstable; urgency=low
3   * New upstream release.
4   * Split the "collectd" binary package into "collectd-core" and "collectd".
5     The former provides the main program file and the plugins while the latter
6     provides the configuration. This allows for much more flexible setups
7     (e.g. providing customizations on top of "collectd-core" without modifying
8     the "collectd" package) and, amongst others, removes the hard dependency
9     on librrd (Closes: #495936, #544311).
10   * debian/collectd-core.collectd.init.d:
11     - Do not (try to) start collectd if the config file does not exist. Else,
12       installation of "collectd-core" (which does not provide configuration)
13       would fail.
14   * debian/collectd.postinst:
15     - Let the "collectd" package restart the daemon, since it provides the
16       config file.
17   * debian/collectd.links:
18     - Symlink /u/s/d/collectd/examples to /u/s/d/collectd-core/examples.
19   * debian/control:
20     - Build-depend on the right combination of libsnmp-dev and perl. Perl's
21       CFLAGS (included in net-snmp's CFLAGS) introduced '-fstack-protector' in
22       version 5.10.1 on some architectures (those supporting that features).
23       net-snmp has been fixed to handle that correctly in 5.4.2.1~dfsg-4;
24       thanks to Lamont Jones and Dann Frazier for reporting this
25       (Closes: #559087).
26     - Build-depend on libsensors4-dev rather than libsensors-dev. libsnmp-dev,
27       starting with version 5.4.2.1~dfsg-5, supports libsensors4, thus making
28       that possible. This restores the full functionality of the "sensors"
29       plugin, which does not work well with libsensors3 and lm-sensors-3;
30       thanks to Anssi Kolehmainen for reporting this (Closes: #538795).
31   * debian/patches:
32     - Removed gmond-fix-compile-error.dpatch -- included upstream.
33   * debian/rules:
34     - Pass --disable-static to configure to tell libtool 2 to not build any
35       static libraries.
36     - Install debian/collectd.conf as an example into "collectd-core".
37     - Output the content of config.log if configure fails -- this might help
38       debugging.
39   * debian/README.Debian:
40     - Added a short explanation of the package split.
42  -- Sebastian Harl <tokkee@debian.org>  Tue, 22 Dec 2009 23:56:46 +0100
44 collectd (4.8.1-2) unstable; urgency=low
46   * debian/rules:
47     - Disabled the "java" plugin on hppa for now to work around a backlog in
48       the buildds that currently prevents a transition to testing.
49   * debian/control:
50     - Do not build-depend on openjdk-6-jdk on hppa.
52  -- Sebastian Harl <tokkee@debian.org>  Thu, 19 Nov 2009 10:55:33 +0100
54 collectd (4.8.1-1) unstable; urgency=medium
56   * New upstream release:
57     - Fixed a build issue with libiptc that caused a segfault in the iptables
58       plugin; thanks to Rodrigo Campos for reporting this (Closes: #535786).
59     - Updated the powerdns plugin to support pdns 2.9.22 (and above) as well;
60       thanks to Thomas Morgan for reporting this and Luke Heberling for
61       providing a patch (Closes: #535787).
62     New plugins:
63     - Parse JSON files: curl_json
64     - Query data from Java processes using JMX: GenericJMX (Java based plugin)
65     - Atheros wireless LAN chipset statistics: madwifi
66     - Optimized Link State Routing daemon statistics: olsrd
67     - Tokyo Tyrant server statistics: tokyotyrant (disabled in Debian,
68       libtokyotyrant is not available)
69     - Send collected values to a web-server: write_http
70     - ZFS Adaptive Replacement Cache statistics: zfs_arc (disabled in Debian,
71       libkstat is not available)
72     New matches:
73     - Match zero COUNTER values: empty_counter
74   * Set urgency to medium because of the fix for #535786.
75   * debian/rules:
76     - Install contrib/GenericJMX.conf to /usr/share/doc/collectd/examples/.
77     - Disabled the tokyotyrant and zfs_arc plugins - their dependencies are
78       not available.
79   * debian/patches:
80     - Removed bts535787-powerdns-fix-localsocket.dpatch - included upstream.
81     - Removed bts541953-curl-followlocation.dpatch - included upstream.
82     - Removed bts542859-df-fix-ignorelist.dpatch - included upstream.
83     - Removed java-fix-jvm-start.dpatch - included upstream.
84     - Removed libvirt-reconnect.dpatch - included upstream.
85     - Removed network-fix-cacheflush.dpatch - included upstream.
86     - Removed plugin-fix-unregister.dpatch - included upstream.
87     - Added gmond-fix-compile-error.dpatch - upstream patch fixing a compile
88       error in the gmond plugin.
89   * debian/control:
90     - Build depend on libyajl-dev, which is required by the curl_json plugin.
91   * Added debian/README.source:
92     - The file includes a pointer to /usr/share/doc/dpatch/README.source.gz.
93   * New debconf template translations:
94     - ja.po, thanks to Hideki Yamane (Closes: #550968).
96  -- Sebastian Harl <tokkee@debian.org>  Thu, 15 Oct 2009 20:54:46 +0200
98 collectd (4.7.2-1) unstable; urgency=low
100   * New upstream release (Closes: #541887).
101     - collectd2html.pl now supports the creation of SVG images; thanks to Ivan
102       Shmakov for providing a patch (Closes: #482185).
103     New plugins:
104     - Connection tracking table size: conntrack
105     - Linux file-system based caching framework statistics: fscache
106     - Receive and interpret Ganglia multicast traffic: gmond
107     - Embedded Java Virtual Machine: java
108     - Query and parse data from a memcache daemon: memcachec
109     - Information about network protocols: protocols
110     - Parse table-like structured files: table
111     - Power consumption measurements from "The Energy Detective" (TED): ted
112     - System uptime: uptime
113   * debian/rules:
114     - Install collectd-unixsock.py to /usr/share/doc/collectd/examples/.
115     - Pass CPPFLAGS and CFLAGS as arguments to configure instead of setting
116       them in the environment - this is the recommended way.
117     - Pass appropriate JAVAC, JAVA_CPPFLAGS and JAVA_LDFLAGS variables to
118       configure, using OpenJDK found in /usr/lib/jvm/java-6-openjdk. The
119       archdir mapping used by the openjdk-6 Debian package is used to find
120       libjvm.so in JAVA_HOME/jre/lib/ARCHDIR/server.
121     - Use -rpath to tell the "java" plugin where to find libjvm.so.
122     - Pass --enable-all-plugins to configure to make sure that the build fails
123       if any prerequisites are missing.
124   * debian/control:
125     - Build-depend on openjdk-6-jdk.
126     - Build-depend on libganglia1-dev (>= 3), required by the gmond plugin.
127     - Build-depend on libgcrypt11-dev, used by the network plugin.
128     - Updated Standards-Version to 3.8.3 (no changes).
129     - Changed build-dependency libmysqlclient15-dev to libmysqlclient-dev -
130       this allows transitions to be handled thru binNMUs if possible.
131   * debian/collectd.install:
132     - Install collectd-java.5.
133   * debian/patches:
134     - Removed libcollectdclient_static_sstrerror.dpatch - included upstream.
135     - Added network-fix-cacheflush.dpatch - upstream patch to fix the handling
136       of the 'CacheFlush' config option of the "network" plugin.
137     - Added libvirt-reconnect.dpatch - upstream patch to let the "libvirt"
138       plugin re-connect to libvirtd if connecting fails.
139     - Added plugin-fix-unregister.dpatch - upstream patch to make
140       'plugin_unregister_read()' functional again, thus fixing a failed
141       assertion in some cases.
142     - Added java-fix-jvm-start.dpatch - upstream patch to fix the JVM startup.
143     - Added bts541953-curl-followlocation.dpatch - upstream patch to let
144       plugins using libcurl follow HTTP redirects; thanks to Joey Hess for
145       reporting this (Closes: #541953).
146     - Added bts535787-powerdns-fix-localsocket.dpatch - upstream patch fixing
147       the handling of the 'LocalSocket' config option of the "powerdns"
148       plugin; thanks to Thomas Morgan for reporting this and Luke Heberling
149       for providing a patch (references: #535787).
150     - Added bts542859-df-fix-ignorelist.dpatch - upstream patch to fix the
151       handling of the ignorelist in the "df" plugin; thanks to Joey Hess for
152       reporting this (Closes: #542859).
153   * debian/README.Debian:
154     - Removed the note about how to get collectd2html.pl working with
155       version 4 of collectd - the script now supports the --recursive option
156       which takes care of that.
157   * debian/collectd.overrides:
158     - Documented the 'binary-or-shlib-defines-rpath' warning - the rpath is
159       required by the "java" plugin.
160   * New debconf template translations:
161     - cs.po, thanks to Martin Sin (Closes: #534206).
162     - ru.po, thanks to Yuri Kozlov (Closes: #539467).
163   * debian/control, debian/rules:
164     - No not limit the "libvirt" plugin to amd64, i386, powerpc - libvirt-dev
165       seems to be available on all architectures now.
166     - Reintroduced a work around for #474087 (broken openipmi .pc files) by
167       providing a fixed version of OpenIPMIpthread.pc in debian/pkgconfig and
168       adding that path to PKG_CONFIG_PATH. Removed the version from the
169       libopenipmi-dev build dependency for now.
170   * debian/collectd.conf:
171     - Set the "apache" plugin's URL according to the default used by Debian's
172       Apache; thanks to Joey Hess for reporting this (Closes: #541888).
173   * debian/libcollectdclient-dev.install, debian/rules:
174     - Do not install libcollectdclient's .la file in favor of the Squeeze
175       release goal to remove those files (for details see
176       <http://lists.debian.org/debian-devel/2009/08/msg00783.html>).
178  -- Sebastian Harl <tokkee@debian.org>  Sat, 29 Aug 2009 12:42:15 +0200
180 collectd (4.6.3-1) unstable; urgency=low
182   * New upstream release.
183   * debian/patches:
184     - Removed battery_acpi_complain.dpatch - included upstream.
185     - Removed include_empty_files.dpatch - included upstream.
186     - Removed ntpd_type_pun_fix.dpatch - included upstream.
187     - Removed rrdtool_uninitialized_fix.dpatch - included upstream.
188     - Added libcollectdclient_static_sstrerror.dpatch to make a private
189       function in libcollectdclient static.
190   * debian/rules:
191     - Install collectd-network.py to /usr/share/doc/collectd/examples/.
193  -- Sebastian Harl <tokkee@debian.org>  Tue, 02 Jun 2009 22:03:10 +0200
195 collectd (4.6.2-3) unstable; urgency=low
197   * debian/patches:
198     - Actually enabled rrdtool_uninitialized_fix.dpatch - d'oh!
200  -- Sebastian Harl <tokkee@debian.org>  Fri, 29 May 2009 15:49:46 +0200
202 collectd (4.6.2-2) unstable; urgency=low
204   * debian/patches:
205     - Added battery_acpi_complain.dpatch - upstream patch to fix excessive
206       error messages in the battery plugin in case /proc/acpi/battery is not
207       available.
208     - Added ntpd_type_pun_fix.dpatch - upstream patch to fix dereferencing of
209       a type-punned pointer identified by GCC 4.4, thanks to Martin Michlmayr
210       for reporting this (Closes: #526667).
211     - Added include_empty_files.dpatch - upstream patch to fix the inclusion
212       of empty configuration files, thanks to Alexander Wirt for reporting
213       this.
214     - Added rrdtool_uninitialized_fix.dpatch - upstream patch to fix an
215       uninitialized value warning in the rrdtool plugin, thanks to Andreas
216       Moog for reporting this.
217   * debian/collectd.conf, debian/filters.conf:
218     - Added a sample filter chain configuration.
219   * debian/rules:
220     - Added contrib/php-collection/ to /usr/share/doc/collectd/.
221     - Disabled "netlink" plugin on mips and mipsel - those architectures do
222       not allow to link non-PIC code into shared objects, thanks to Peter De
223       Schrijver for reporting this (Closes: #524593).
224   * debian/control:
225     - Build-depend on iptables-dev (>= 1.4.3.2-2) to link against the packaged
226       libiptc which is available as shared library since iptables 1.4.3.
227       Depend on versions >= 1.4.3.2-2 because of #524766.
229  -- Sebastian Harl <tokkee@debian.org>  Fri, 29 May 2009 14:12:36 +0200
231 collectd (4.6.2-1) unstable; urgency=low
233   * New upstream release.
234     - Fixed the use of struct in6_addr (Closes: #521748).
235     - Added a filter infrastructure based on "matches" and "targets".
236     - Added support for vmem graphs to collection.cgi (Closes: #521993).
237     New plugins:
238     - bind9 name-server and zone statistics: bind
239     - Parse statistics from websites: curl
240     - Query data from a relational database: dbi
241     - OpenVPN traffic and compression statistics: openvpn
242     - Query data from an Oracle database: oracle (disabled in Debian,
243       libclntsh is not available)
244     - Write data via the RRD accelerator daemon: rrdcached (disabled in
245       Debian, rrdclient support is not yet available)
246     New matches:
247     - Match values by their identifier based on regular expressions: regex
248     - Match values with an invalid timestamp: timediff
249     - Select values by their data sources' values: value
250     New targets:
251     - Create and dispatch a notification: notification
252     - Replace parts of an identifier using regular expressions: replace
253     - Set (overwrite) entire parts of an identifier: set
254   * Uploading to unstable, since Lenny has been released.
255   * New debconf template translations:
256     - vi.po, thanks to Clytie Siddall (Closes: #515872).
257     - es.po, thanks to Francisco Javier Cuadrado and Erika Chacón Vivas
258       (Closes: #520988).
259   * debian/patches:
260     - Removed perl-uninitialized-var.dpatch - included upstream.
261   * debian/control:
262     - Added new binary packages libcollectdclient0 and libcollectdclient-dev
263       for the newly added client library.
264     - Added new binary package collectd-utils for optional utilities that pull
265       in additional dependencies. Currently, this only includes
266       collectd-nagios. The new package replaces collectd (<< 4.6.1-1~),
267       because it overwrites /usr/bin/collectd-nagios.
268     - Added libdbi0-dev to the build dependencies - this is required by the
269       dbi plugin.
270     - Moved collectd-dbg from section "utils" to the newly added "debug".
271     - Updated Standards-Version to 3.8.1.
272   * debian/rules:
273     - Use dh_install and *.install files to specify which package some file
274       belongs to.
275   * debian/libcollectdclient0.symbols:
276     - Added symbols file for libcollectdclient.
277   * debian/collectd.overrides:
278     - Override "spelling-error-in-description" for the apache plugin name -
279       all plugins are spelled lowercase.
280   * debian/collectd.init.d:
281     - Start the daemon using start-stop-daemon's --oknodo option to exit
282       successfully if the daemon is already running as requested by section
283       9.3.2 of the Debian Policy 3.8.1.
284   * debian/copyright:
285     - Reference GPL-2 in addition to GPL (latest version), since GPL2-only is
286       used by some files.
288  -- Sebastian Harl <sh@tokkee.org>  Thu, 02 Apr 2009 16:38:57 +0200
290 collectd (4.5.1-1) experimental; urgency=low
292   * New upstream release.
293     New plugins:
294     - Count the number of files in directories: filecount
295     - Send desktop notifications to a notification daemon: notify_desktop
296     - Send notification E-mails: notify_email
297     - One-wire sensors information: onewire (experimental, disabled in Debian)
298     - PostgreSQL database statistics: postgresql
299     - Linux ACPI thermal zone information: thermal (Closes: #492580)
300   * Uploading to experimental because of the Lenny freeze.
301   * debian/control:
302     - Added build dependency on libglib2.0-dev and libnotify-dev required by
303       the notify_desktop plugin.
304     - Added build dependency on libesmtp-dev required by the notify_email
305       plugin.
306     - Added build dependency on libpq-dev required by the postgresql plugin.
307     - Let collectd-dbg and collectd-dev depend on ${misc:Depends} - this is
308       required when using debhelper.
309   * debian/rules:
310     - Disabled onewire plugin - owfs is not yet available in Debian.
311     - Install contrib/snmp-probe-host.px to /usr/share/doc/collectd/examples/.
312     - Set CONFIGFILE to /etc/collectd/collectd.conf.
313   * debian/patches:
314     - Added perl-uninitialized-var.dpatch - upstream patch to fix an
315       uninitialized variable warning causing a FTBFS because of -Werror.
316     - Removed myplugin_strcpy.dpatch - applied upstream.
317     - Removed perl_deadlock.dpatch - included upstream.
318     - Removed memory_libstatgrab.dpatch - included upstream.
319     - Removed collectd_memleak.dpatch - included upstream.
320     - Removed snmp_memleak.dpatch - included upstream.
321     - Removed memcached_fdleak.dpatch - included upstream.
322     - Removed memcached_timeout.dpatch - included upstream.
323     - Removed pod-errors.dpatch - included upstream.
324   * debian/collectd.overrides:
325     - Override "spelling-error-in-description" for the postgresql plugin name
326       - all plugins are spelled lowercase.
327   * debian/collectd.init.d:
328     - Do not restart collectd if the configuration test fails.
330  -- Sebastian Harl <sh@tokkee.org>  Fri, 12 Dec 2008 10:09:48 +0100
332 collectd (4.4.2-3) unstable; urgency=low
334   * New debconf template translation:
335     - nl.po, thanks to Eric Spreen (Closes: #502204).
336     - sv.po, thanks to Martin Bagge (Closes: #504248).
337   * debian/patches:
338     - Added pod-errors.dpatch to fix some minor POD errors.
339   * debian/rules:
340     - Remove generated manpages in the clean target to avoid cluttering the
341       source diff with the rebuilt manpages.
342   * debian/collectd.conf:
343     - Fixed a wrong type used in the "tail" plugin example.
345  -- Sebastian Harl <sh@tokkee.org>  Sat, 06 Dec 2008 16:53:25 +0100
347 collectd (4.4.2-2) unstable; urgency=low
349   * Removed the work around for #474087 (broken openipmi .pc files) introduced
350     in 4.4.1-1 and instead build depend on libopenipmi-dev (>= 2.0.14-1~)
351     which includes fixed .pc files. This fixes an undefined symbol error when
352     loading the ipmi plugin caused by that work around (Closes: #494665).
353   * debian/collectd.init.d:
354     - The "status" command now exits with 1 if collectd is not running.
355     - Do not suppress output when checking the configuration with the -t
356       command line option. This will also show errors that don't cause
357       collectd to abort, e.g. failure to load plugins (Closes: #499232).
358   * debian/control:
359     - Added librrd-dev as the preferred option to the librrd2-dev build
360       dependency - the latter one is a virtual package since rrdtool 1.3.
361   * Added debian/patches/perl_deadlock.dpatch - upstream patch to fix a
362     possible deadlock in the perl plugin (Closes: #499179).
363   * Added debian/patches/memory_libstatgrab.dpatch - trivial upstream patch to
364     fix a typo in the libstatgrab code of the memory plugin.
365   * Added debian/patches/collectd_memleak.dpatch - trivial upstream patch to
366     fix a possible memory leak.
367   * Added debian/patches/snmp_memleak.dpatch - trivial upstream patch to fix a
368     possible memory leak in the snmp plugin.
369   * Added debian/patches/memcached_fdleak.dpatch - trivial upstream patch to
370     fix a possible file descriptor leak in the memcached plugin.
371   * Added debian/patches/memcached_timeout.dpatch - trivial upstream patch to
372     fix the timeout passed to poll(2).
374  -- Sebastian Harl <sh@tokkee.org>  Thu, 18 Sep 2008 19:12:54 +0200
376 collectd (4.4.2-1) unstable; urgency=low
378   * New upstream release.
379   * Removed librrd0-dev and libmysqlclient14-dev from the build-dependencies -
380     those package are no longer available since Etch.
381   * Removed byacc from the build-dependencies - collectd now requires bison.
382   * Removed libupsclient-config.sh - upstream now supports pkg-config for
383     libupsclient.
384   * Include collection3 in /usr/share/doc/collectd/examples/:
385     - Updated README.Debian to point the collection3's README.
386     - Added libconfig-general-perl to the suggested packages.
387   * README.Debian: Added a note about how to get collectd2html.pl working with
388     version 4 of collectd.
389   * Added debian/patches/myplugin_strcpy.dpatch - use sstrncpy() instead of
390     strcpy() which is poisoned in collectd.h.
391   * collectd.overrides: Removed shlib-with-non-pic-code for nut.so - the
392     plugin now links against the shared libupsclient.
393   * Do not compress any example files, so they may be used directly.
395  -- Sebastian Harl <sh@tokkee.org>  Fri, 25 Jul 2008 19:58:58 +0200
397 collectd (4.4.1-2) unstable; urgency=low
399   * Restrict libcurl4-gnutls-dev build dependency to versions which are not
400     affected by #488701 (Closes: #489091).
401   * Added linux-libc-dev (<< 2.6.25-1) as an option to the linux-libc-dev
402     (>= 2.6.25-4) build dependency - those versions are not affected by
403     #479899.
404   * Added build dependency on pkg-config - this is used by collectd's
405     configure script to check for a couple of libraries.
406   * Added libupsclient-config.sh to imitate libupsclient-config which is no
407     longer available. libupsclient-config.sh is a simple wrapper around
408     pkg-config. This is a workaround until upstream supports pkg-config for
409     libupsclient.
410   * Replaced nut-dev build dependency with libupsclient1-dev:
411     Reenabled the "nut" plugin on all architectures.
413  -- Sebastian Harl <sh@tokkee.org>  Mon, 07 Jul 2008 20:45:53 +0000
415 collectd (4.4.1-1) unstable; urgency=low
417   * New upstream release.
418     - Fixed another issue of the sensors plugin affecting some chip types
419       (Closes: #468143).
420     - Fixed creation of "vserver" graphs in collection.cgi (Closes: #475120).
421     - Fixed a segfault when using libperl 5.10.
422     - collectd now ships libiptc itself.
423     New plugins:
424     - Ascent server statistics: ascent
425     - IPMI sensors information: ipmi
426     - PowerDNS name server statistics: powerdns
427     - incremental parsing of logfiles: tail
428     - TeamSpeak2 server statistics: teamspeak2
429     - detailed virtual memory statistics: vmem
430   * Disable "tcpconns" plugin by default (Closes: #478759).
431   * Reenabled iptables plugin on all architectures (Closes: #473435).
432     - Added the plugin to collectd.conf.
433     - Added /usr/share/doc/collectd/examples/iptables/.
434     - Added build dependency on linux-libc-dev (>= 2.6.25-4) - that version is
435       required because of #479899.
436   * New debconf template translations:
437     - gl.po, thanks to Jacobo Tarrio (Closes: #482667).
438   * Added a work around for #474087 (broken openipmi .pc files) by forcing the
439     inclusion of the ipmi plugin and manually specifying the dependencies.
440   * Updated standards-version to 3.8.0 (no changes).
442  -- Sebastian Harl <sh@tokkee.org>  Tue, 17 Jun 2008 10:35:51 +0200
444 collectd (4.3.2-1) unstable; urgency=low
446   * New upstream release.
447     - Fixed handling of ignored sensors instances (Closes: #468143).
448     - Fixed reading of wireless noise values (Closes: #471788).
449   * Adopted patches and script to extractDS.px being renamed to rrd_filter.px.
450   * Clarified debconf template in respect to packages required for the data
451     migration (Closes: #469336).
452   * collectd.conf: Moved logging plugins to the top of the file.
453   * New debconf template translations:
454     - de.po, thanks to Kai Wasserbäch (Closes: #469334).
455     - fr.po, thanks to Florent Usseil (Closes: #468813).
456     - pt.po, thanks to Américo Monteiro (Closes: #469745, #472183).
457   * collectd.init.d: Consider the DISABLE option only when starting collectd.
458   * Disabled iptables plugin - libiptc is no longer available in Debian.
459     - Removed the plugin from collectd.conf.
460     - Removed /usr/share/doc/collectd/examples/iptables/.
462  -- Sebastian Harl <sh@tokkee.org>  Mon, 31 Mar 2008 12:13:18 +0200
464 collectd (4.3.0-2) unstable; urgency=low
466   * Added "lm-sensors" to the recommended packages and README.Debian.plugins
467     (this is required by the sensors plugin).
468   * Restrict the libvirt-dev build dependency and the libvirt plugin to amd64,
469     i386 and powerpc (libvirt is only available on those architectures).
470   * Restrict the libvirt-dev build dependency to versions >= 0.4.0-6 to make
471     sure Xen is supported and to fix some strange FTBFS complaining about a
472     missing symbol "virDomainBlockStats".
474  -- Sebastian Harl <sh@tokkee.org>  Thu, 06 Mar 2008 23:37:44 +0100
476 collectd (4.3.0-1) unstable; urgency=low
478   * New upstream release.
479     - Added basic support for monitoring by introducing notifications and
480       threshold checking.
481     - Reverse lookups can be disabled using the "ReverseLookups" option of the
482       ntpd plugin (Closes: #455162).
483     New plugins:
484     - Set the hostname to an unique identifier: uuid
485     - CPU, dist, network statistics of guest systems: libvirt
486   * Upload to unstable: With the latest changes to the perl plugin, all parts
487     of collectd are suitable for a release.
488   * Added libvirt-dev, libxml2-dev and libhal-dev to the build dependencies.
489   * Updated package description to mention the monitoring support.
490   * Install liboping/oping.h to collectd-dev as well.
491   * collectd.init.d: Optionally start collectdmon to monitor collectd. This
492     can be configured using the USE_COLLECTDMON variable - enabled by default.
493   * collectd.init.d: Added ENABLE_COREFILES option - if enabled the core file
494     limit will be set to unlimited - disabled by default.
495   * Compile collectd with -DLT_LAZY_OR_NOW='RTLD_LAZY|RTLD_GLOBAL' to force
496     lt_dlopen() to use the RTLD_GLOBAL flag which is required by the perl
497     plugin (which would otherwise be unable to find symbols defined in libperl
498     when loading perl modules that require such symbols).
499   * Disable debugging support.
500   * watch file: Added uversionmangle for "beta" and "-rc".
501   * Override "spelling-error-in-description" for the mysql plugin name - all
502     plugins are spelled lowercase.
504  -- Sebastian Harl <sh@tokkee.org>  Tue, 19 Feb 2008 21:44:42 +0100
506 collectd (4.2.4-1) experimental; urgency=low
508   * New upstream release.
509   * Added versioned build-dependency on dpkg-dev (>= 1.14.10); collectd FTBFS
510     with earlier versions because of #452262.
511   * Added libregexp-common-perl (required by Collectd::Unixsock) to the
512     suggested packages.
513   * Added support for the "status" command to the init script.
514   * Updated standards-version to 3.7.3 (no changes).
515   * Added --without-libstatgrab to the configure options to prevent collectd
516     from being linked against this library if it's available.
517   * Disabled xmms plugin - xmms will be removed from unstable
518     (Closes: #459707).
520  -- Sebastian Harl <sh@tokkee.org>  Sun, 27 Jan 2008 18:34:23 +0100
522 collectd (4.2.1-1) experimental; urgency=low
524   * New upstream release.
525   * Changed XS-Vcs-* to Vcs-*.
526   * Marked advanced rrdtool configuration options as such in collectd.conf.
527   * Added exec-munin.px, exec-munin.conf, exec-smartctl and snmp-data.conf to
528     /usr/share/doc/collectd/examples/.
529   * Moved "Homepage" field from package description to the source stanza.
531  -- Sebastian Harl <sh@tokkee.org>  Wed, 21 Nov 2007 09:50:46 +0000
533 collectd (4.2.0-1) experimental; urgency=low
535   * New upstream release.
536     - Added options to collectd2html.pl to specify host and data directory
537       (Closes: #438499).
538     - Link against a thread-safe version of librrd.
539     New plugins:
540     - IPVS connection statistics: ipvs
541     - Statistic of the memcached distributed caching system: memcached
542     - Detailed Linux network interface and routing statistics: netlink (32bit
543       systems only)
544     - Nginx (a HTTP and E-Mail server/proxy) statistics: nginx
545     - Values from SNMP enabled network devices: snmp
546     - Number of TCP connections to specific ports: tcpconns
547     - Bitrate and frequency of music played with XMMS: xmms
548   * Updated init script to wait for collectd to shut down (Closes: #422208).
549   * Merged all plugin packages into the collectd binary package.
550   * Added README.Debian.plugins and gen_plugin_deps.pl to document the plugin
551     dependencies.
552   * Added collectd.overrides to override shlib-with-non-pic-code errors of
553     plugins liked against static libraries which have not been linked with
554     -fPIC.
555   * Removed debian/examples/myplugin.c and debian/examples/MyPlugin.pm - they
556     are included in the upstream sources now.
557   * Added libcurl4-gnutls-dev as option to the libcurl3-gnutls-dev build
558     dependency.
560  -- Sebastian Harl <sh@tokkee.org>  Sun, 28 Oct 2007 13:38:21 +0100
562 collectd (4.0.7-1) experimental; urgency=low
564   * New upstream release.
565   * Disable iptables and nut plugins on hppa as well to work around a FTBFS
566     caused by #358637 and presumably #419684 (Closes: #430933).
567   * Changed collectd-dbg's section to "utils".
568   * Added httpd-cgi to suggested packages.
569   * Added documentation of the provided examples to README.Debian, thanks to
570     Eduard Bloch for his proposal (Closes: #434182).
572  -- Sebastian Harl <sh@tokkee.org>  Fri, 31 Aug 2007 10:04:41 +0200
574 collectd (4.0.3-1) experimental; urgency=low
576   * New upstream release.
578  -- Sebastian Harl <sh@tokkee.org>  Tue, 19 Jun 2007 21:41:21 +0100
580 collectd (4.0.2-1) experimental; urgency=low
582   * New upstream release (Closes: #428114).
583     - Added large file support (Closes: #422212).
584     - Rewrite of the plugin system to allow more flexibility by using
585       different types of plugins.
586     - Added Nagios plugin to query collectd from Nagios.
587     New plugins:
588     - Output to "comma separated values" (CSV) files: csv
589     - Output to RRD files: rrdtool
590     - IO via the network: network
591     - External runtime interface: unixsock
592     - Embedding a Perl interpreter: perl
593     - Logging to files, STDOUT or STDERR: logfile
594     - Logging to syslog: syslog
595     - Amount of available entropy: entropy
596     - Execution of external programs: exec
597     - Iptables statistics: iptables (32bit systems only)
598     - IRQ counters: irq
599     - UPS information: nut (32bit systems only)
600   * New binary package collectd-perl (linking against libperl).
601     - Added collectd-perl to suggested packages.
602   * examples/myplugin.c: Converted to the new plugin interface.
603   * Enabled debugging.
604   * Added possibility to automatically migrate RRD files to collectd-4 using
605     migrate-3-4.px and extractDS.px provided by upstream.
606     - Added extractDS_path.dpatch to set an absolute path in migrate-3-4.px.
607     - Using po-debconf to make translations of debconf templates possible.
608   * Added NEWS.Debian with notes regarding the upgrade to collectd-4.
609   * Updated init script to only start a single collectd process.
610   * Added examples/MyPlugin.pm.
611   * Added XS-Vcs-{Git,Browser} tags.
612   * Added check_plugins.pl to check the build result of all plugins.
613   * Do not build apple_sensors and tape plugins as they do not provide any
614     functionality any longer.
616  -- Sebastian Harl <sh@tokkee.org>  Wed, 13 Jun 2007 18:58:34 +0100
618 collectd (3.11.2-1) experimental; urgency=low
620   * New upstream release.
621   * Removed sensors-ignorelist.dpatch - has been merged upstream.
622   * Removed email-ignore-size-le-0.dpatch - has been merged upstream.
623   * Added watch file.
624   * examples/myplugin.c: Pass "-" instead of NULL to plugin_submit().
626  -- Sebastian Harl <sh@tokkee.org>  Thu, 15 Feb 2007 09:19:15 +0000
628 collectd (3.11.0-1) experimental; urgency=low
630   * New upstream release.
631     New plugins:
632     - DNS traffic (query types, response codes, opcodes and traffic): dns
633     - E-Mail statistics (count, traffic, spam scores and checks): email
634     - Motherboard monitor: mbmon
635     - Multimeter statistics: multimeter (beta version)
636   * Upload to experimental because of Etch freeze.
637   * New binary package collectd-dns (linking against libpcap).
638     - Added collectd-dns to suggested packages.
639   * Do not split off packages introducing new recommendations or suggestions.
640     - Merge collectd-hddtemp into collectd.
641     - Add hddtemp and mbmon to suggested packages.
642   * Added sensors-ignorelist.dpatch: Avoid assertion in ignorelist_match ()
643     when sensors plugin is not configured.
644   * Added email-ignore-size-le-0.dpatch: Ignore the size of an email if it is
645     less than or equal to zero.
647  -- Sebastian Harl <sh@tokkee.org>  Sun, 24 Dec 2006 14:09:39 +0000
649 collectd (3.10.4-1) unstable; urgency=low
651   * New upstream release.
652     - Fix an infinite loop in server mode if binding to a socket fails and
653       close the socket descriptor (Closes: #404018).
654   * examples/myplugin.c: Include system headers before collectd headers to
655     make it compile without any autoconf defines set (Closes: #401075).
657  -- Sebastian Harl <sh@tokkee.org>  Fri, 22 Dec 2006 00:33:30 +0000
659 collectd (3.10.3-1) unstable; urgency=low
661   * New upstream release.
662   * Made package binNMUable:
663     - Upstream assures API backward compatibility only between patch releases.
664   * LSBized init script.
666  -- Sebastian Harl <sh@tokkee.org>  Mon,  6 Nov 2006 13:09:28 +0000
668 collectd (3.10.2-1) unstable; urgency=low
670   * New upstream release.
671     - Retry connecting to remote host and database in ping and mysql plugins
672       respectively (Closes: #393742).
673   * Replaced libcurl3-dev build dependency with libcurl3-gnutls-dev to prevent
674     linking against libssl.
676  -- Sebastian Harl <sh@tokkee.org>  Fri,  3 Nov 2006 15:18:17 +0000
678 collectd (3.10.1-4) unstable; urgency=low
680   * Changed collectd-dbg's section and priority to "devel" and "extra"
681     respectively.
682   * Set init start sequence code to 95 to be sure to start after any daemons
683     that data is collected from.
685  -- Sebastian Harl <sh@tokkee.org>  Thu,  5 Oct 2006 10:25:07 +0000
687 collectd (3.10.1-3) unstable; urgency=low
689   * Added --oknodo to start-stop-daemon in the init script (Closes: #379703).
691  -- Sebastian Harl <sh@tokkee.org>  Tue, 25 Jul 2006 18:34:55 +0200
693 collectd (3.10.1-2) unstable; urgency=low
695   * Added collectd-dbg package.
697  -- Sebastian Harl <sh@tokkee.org>  Sun, 23 Jul 2006 23:39:42 +0200
699 collectd (3.10.1-1) unstable; urgency=low
701   * New upstream release.
702   * Dynamically link against external liboping.
703     - New binary package collectd-ping.
704     - Added collectd-ping to suggested packages.
705   * Moved config file from /usr/share/doc/collectd/examples/ to
706     /etc/collectd/.
708  -- Sebastian Harl <sh@tokkee.org>  Sat, 22 Jul 2006 21:43:37 +0200
710 collectd (3.10.0-1) unstable; urgency=low
712   * New upstream release.
713     New plugins:
714     - APC UPS's charge, load, input/output/battery voltage, etc.: apcups
715     - NTP daemon's local clock drift, offset to peers, etc.: ntpd
716   * Upstream no longer provides a debian/ directory. Thus no repackaging is
717     required any longer.
718   * Not using getifaddrs() is now the default in upstream. getifaddrs.dpatch
719     no longer needed.
720   * Added collectd-hddtemp as a suggestion to the collectd package.
722  -- Sebastian Harl <sh@tokkee.org>  Sun,  9 Jul 2006 21:52:13 +0200
724 collectd (3.9.4+debian-1) unstable; urgency=low
726   * Initial release (Closes: #373008).
727   * Removed upstream's debian/ directory from .orig.tar.gz.
728   * getifaddrs.dpatch: Patching src/traffic.c to read data from /proc instead
729     of using getifaddrs(). getifaddrs() does not seem to work correctly on 
730     AMD64.
732  -- Sebastian Harl <sh@tokkee.org>  Fri,  7 Jul 2006 15:49:42 +0200