Code

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