Code

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